Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2016-10-05 10:10:22 +0000
committerEike Stepper2016-10-05 10:10:22 +0000
commitde192b0abbde6c721f376da4c747cd74f2a053c9 (patch)
tree9ffe68af07b3581889a1915ecaccbcd0eead12fd /plugins/org.eclipse.emf.cdo
parent1f78f3ad6653cf1065861198ada3c81aaf9d41b2 (diff)
downloadcdo-de192b0abbde6c721f376da4c747cd74f2a053c9.tar.gz
cdo-de192b0abbde6c721f376da4c747cd74f2a053c9.tar.xz
cdo-de192b0abbde6c721f376da4c747cd74f2a053c9.zip
[503564] Creation of CDOSetFeatureDeltaImpl in CDOStoreImp mixes EMF-Type and CDO-Type values
https://bugs.eclipse.org/bugs/show_bug.cgi?id=503564
Diffstat (limited to 'plugins/org.eclipse.emf.cdo')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/object/CDONotificationBuilder.java8
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java8
2 files changed, 11 insertions, 5 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/object/CDONotificationBuilder.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/object/CDONotificationBuilder.java
index c670261eb9..2dddf8cd89 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/object/CDONotificationBuilder.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/object/CDONotificationBuilder.java
@@ -155,7 +155,13 @@ public class CDONotificationBuilder extends CDOFeatureDeltaVisitorImpl
public void visit(CDOSetFeatureDelta delta)
{
EStructuralFeature feature = delta.getFeature();
- Object oldValue = getOldValue(feature);
+
+ Object oldValue = delta.getOldValue();
+ if (oldValue == null)
+ {
+ oldValue = getOldValue(feature);
+ }
+
if (oldValue instanceof CDOID)
{
CDOID oldID = (CDOID)oldValue;
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java
index b5e8fb5787..93541dd8da 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/view/CDOStoreImpl.java
@@ -247,6 +247,7 @@ public final class CDOStoreImpl implements CDOStore
value = convertToEMF(eObject, revision, feature, NO_INDEX, value);
Object defaultValue = feature.getDefaultValue();
+
return !ObjectUtil.equals(value, defaultValue);
}
finally
@@ -564,12 +565,12 @@ public final class CDOStoreImpl implements CDOStore
// TODO: Use writeRevision() result!!
InternalCDORevision oldRevision = readRevision(cdoObject);
Object oldValue = oldRevision.get(feature, index);
- oldValue = convertToEMF(eObject, oldRevision, feature, index, oldValue);
+ Object resultValue = convertToEMF(eObject, oldRevision, feature, index, oldValue);
CDOFeatureDelta delta = new CDOSetFeatureDeltaImpl(feature, index, value, oldValue);
writeRevision(cdoObject, delta);
- return oldValue;
+ return resultValue;
}
finally
{
@@ -950,8 +951,7 @@ public final class CDOStoreImpl implements CDOStore
}
Object oldValue = revision.get(feature, index);
- oldValue = convertToEMF(eObject, revision, feature, index, oldValue);
- return oldValue;
+ return convertToEMF(eObject, revision, feature, index, oldValue);
}
private static InternalCDORevision readRevision(InternalCDOObject cdoObject)

Back to the top

/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.support.firefox/.classpath7
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/.project28
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.core.resources.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.core.runtime.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.jdt.core.prefs80
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.jdt.ui.prefs4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.ltk.core.refactoring.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.pde.prefs16
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/DOM_Generator_FireFox.html405
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/DOM_Generator_FireFox_V1_NoJSDoc.html344
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/FireFox2.0.0.3.js_NOJSDOC10552
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/META-INF/MANIFEST.MF15
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/about.html28
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/build.properties19
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/libraries/FireFox2.0.0.3.js8838
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties14
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml29
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.java94
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxSmall.gifbin760 -> 0 bytes-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxUiInitializer.java44
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/FireFoxLibraryWizardPage.java78
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.classpath7
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.project28
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.core.resources.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.core.runtime.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.jdt.core.prefs96
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.jdt.ui.prefs51
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.ltk.core.refactoring.prefs3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.pde.prefs16
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/META-INF/MANIFEST.MF13
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/about.html28
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/build.properties19
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_@page.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_a.js159
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abbr.js96
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abstract.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_acronym.js96
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_address.js131
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_all.js2
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altkey.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altleft.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_anchors.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applet.js137
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applets.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_area.js131
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_areas.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attribute.js21
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attributes.js8
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_b.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_banner.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_base.js55
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_basefont.js57
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bdo.js125
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_behaviorurns.js2
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bgsound.js47
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_big.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockformats.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockquote.js132
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_body.js152
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bookmarks.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_boundelements.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_br.js53
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_button.js141
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cancelbubble.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_caption.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cells.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_center.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_childnodes.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_children.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cite.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientinformation.js18
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientx.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clienty.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clipboarddata.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_code.js114
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_col.js78
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_colgroup.js74
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_comment.js58
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_contentoverflow.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_controlrange.js9
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlkey.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlleft.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_custom.js122
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datafld.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datatransfer.js6
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dd.js135
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_defaults.js12
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_del.js84
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dfn.js129
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dialog.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dir.js131
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_div.js145
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dl.js129
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_document.js128
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dt.js134
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_elements.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_em.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embed.js122
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embeds.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_event.js47
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_external.js12
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fieldset.js137
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_filters.js2
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_font.js123
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fonts.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_form.js145
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_forms.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frame.js97
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frames.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frameset.js83
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fromelement.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_head.js58
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_history.js2
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hn.js132
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hr.js117
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_html.js72
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_i.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_iframe.js105
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_images.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_img.js159
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_implementation.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_import.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_imports.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_input.js13
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ins.js84
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_isindex.js62
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_kbd.js128
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_keycode.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_label.js139
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_legend.js129
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_li.js136
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_link.js60
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_links.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_listing.js131
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_location.js10
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_map.js103
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_marquee.js154
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_menu.js131
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_meta.js28
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_moreinfo.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespace.js7
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespaces.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_navigator.js18
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextid.js80
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextpage.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nobr.js91
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noframes.js20
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noscript.js20
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_object.js134
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsetx.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsety.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ol.js137
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onabort.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onactivate.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterprint.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterupdate.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeactivate.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecopy.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecut.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforedeactivate.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeeditfocus.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforepaste.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeprint.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeunload.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeupdate.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onblur.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbounce.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncellchange.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onchange.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onclick.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontentsave.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontextmenu.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontrolselect.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncopy.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncut.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondataavailable.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetchanged.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetcomplete.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondblclick.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondeactivate.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrag.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragend.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragenter.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragleave.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragover.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragstart.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrop.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerror.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerrorupdate.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfilterchange.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfinish.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocus.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusin.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusout.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onhelp.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeydown.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeypress.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeyup.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlayoutcomplete.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onload.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlosecapture.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousedown.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseenter.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseleave.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousemove.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseout.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseover.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseup.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousewheel.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmove.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmoveend.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmovestart.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpaste.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpropertychange.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreadystatechange.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreset.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresize.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizeend.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizestart.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowenter.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowexit.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsdelete.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsinserted.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onscroll.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselect.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectionchange.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectstart.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstart.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstop.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onsubmit.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ontimeerror.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onunload.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_optgroup.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_option.js84
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_options.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_p.js135
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_page.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pages.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_param.js6
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plaintext.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plugins.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_popup.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pre.js133
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_propertyname.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_q.js94
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_qualifier.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_reason.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_recordset.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_repeat.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_returnvalue.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rows.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rt.js85
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ruby.js85
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rule.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rules.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_s.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_samp.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_savetype.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screen.js14
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screenx.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screeny.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_script.js72
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_scripts.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_select.js146
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_selection.js9
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftkey.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftleft.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_small.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_span.js140
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcelement.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcfilter.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcurn.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strike.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strong.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_style.js9
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheet.js23
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheets.js4
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sub.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sup.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_table.js164
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbodies.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbody.js137
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_td.js152
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textarea.js152
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textnode.js9
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrange.js24
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrectangle.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tfoot.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_th.js144
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_thead.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timeall.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timechildren.js5
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_title.js54
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_toelement.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tr.js148
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tt.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_type.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_u.js130
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ul.js136
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_userprofile.js3
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_var.js128
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wbr.js22
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wheeldelta.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_window.js63
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_x.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xml.js31
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmlhttprequest.js10
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmp.js128
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_y.js1
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/libraries/JScriptObjects.js1825
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties14
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml26
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.java111
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerUILibInitializer.java47
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/Thumbs.dbbin13824 -> 0 bytes-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.JPGbin1533 -> 0 bytes-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.gifbin961 -> 0 bytes-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_small.gifbin1015 -> 0 bytes-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/InternetExplorerLibraryWizardPage.java80
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/ElementInfo.java243
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/GenerateJsDoc.java121
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/IJsDocSource.java25
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/MappingException.java24
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/Util.java173
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XSLTMap.java112
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XmlBasedSource.java70
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/IeFromMsdn.java102
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/MsdnElement.java703
-rw-r--r--bundles/org.eclipse.wst.jsdt.support.ie/webCache/.cvsignore1
-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/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
1702 files changed, 0 insertions, 519924 deletions
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 8831bcb6..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.1.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.support.firefox/.classpath b/bundles/org.eclipse.wst.jsdt.support.firefox/.classpath
deleted file mode 100644
index ce739334..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.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.support.firefox/.project b/bundles/org.eclipse.wst.jsdt.support.firefox/.project
deleted file mode 100644
index f277370e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.project
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.wst.jsdt.support.firefox</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.support.firefox/.settings/org.eclipse.core.resources.prefs b/bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index afa5c913..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.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.support.firefox/.settings/org.eclipse.core.runtime.prefs b/bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.core.runtime.prefs
deleted file mode 100644
index 7ec57502..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.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.support.firefox/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 91537393..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.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.support.firefox/.settings/org.eclipse.jdt.ui.prefs b/bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.jdt.ui.prefs
deleted file mode 100644
index 301c7add..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.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.support.firefox/.settings/org.eclipse.ltk.core.refactoring.prefs b/bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.ltk.core.refactoring.prefs
deleted file mode 100644
index c59368c5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.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.support.firefox/.settings/org.eclipse.pde.prefs b/bundles/org.eclipse.wst.jsdt.support.firefox/.settings/org.eclipse.pde.prefs
deleted file mode 100644
index fc522bba..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/.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.support.firefox/DOM_Generator_FireFox.html b/bundles/org.eclipse.wst.jsdt.support.firefox/DOM_Generator_FireFox.html
deleted file mode 100644
index f3aff8ef..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/DOM_Generator_FireFox.html
+++ /dev/null
@@ -1,405 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<!--************************************************************************-->
-<!--* FireFox JavaScript Browser Object Dump *-->
-<!--* *-->
-<!--* Copyright 2007 IBM *-->
-<!--* Bradley Childs (childsb@us.ibm.com) *-->
-<!--************************************************************************-->
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title>FireFox JavaScript Object Browser Dump</title>
-<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-<script type="text/javascript">
- // Netscape 6 (or Mozilla)?
-
- var objectInstance = new Array();
-
- var objectName = new Array();
-
- function displayString( value) {
- document.writeln(value + "<br>");
- }
-
- function shouldExclude( nameOfElement) {
- /* allows filtered values and exclude elements that are coming from this script */
- var excluded = [ "shouldExclude", "addRootDisplayElement",
- "buildClasses", "getObjectName", "objectList", "objTypeArrays",
- "rootElements", "nameArray", "isNS6", "getObjectSuperType",
- "isKnownObject", "generateHTMLObjectTable",
- "addElementToObject", "addToObjects", "getAllProperties",
- "isArray", "isObject", "findProperties", "DOMViewerObj",
- "DOMViewerName", "objectName", "objectInstance","aptana" ];
- var k;
- for (k = 0; k < excluded.length; k++) {
- if (nameOfElement == excluded[k])
- return true;
- }
- return false;
- }
-
- function getSince() {
- return "FireFox 2.0.0.3";
- }
-
-
- function buildClasses() {
-
- var k;
- for (k = 0; k < objectInstance.length; k++) {
- var classObject;
- try {
- classObject = objectInstance[k];
-
- } catch ( exception) {}
-
-
- var superName = getObjectSuperTypeName(classObject);
- var objectClassName = getObjectTypeName(classObject);
-
- //ea[ea.length] = classObjectName + ".prototype= " + superName;
- //ea[ea.length] = "function " + classObjectName + "(){};";
-
- displayString("/**");
- displayString(" * Object " + objectClassName);
- displayString(" * @super " + superName);
- displayString(" * @type constructor");
- displayString(" * @class " + objectClassName);
- displayString(" * @since " + getSince());
- displayString("*/");
-
- displayString(objectClassName + ".prototype=new " + superName + "();");
- displayString("function " + objectClassName + "(){};");
-
- if((typeof classObject =="array") || classObject instanceof Array || objectClassName=="Array") continue;
-
-
- /* get each objects properties */
-
- var allprops = getAllProperties(classObject);
- for(i = 0;i<allprops.length;i++) {
- var propObjectName = allprops[i];
- var propObject;
- try{
- propObject = classObject[propObjectName];
- if(propObject==null) propObject=null;
- }catch(e){
- propObject=null;
- }
- if(isFinite(propObjectName)) continue;
-
- if(shouldExclude(propObjectName)) continue;
- if(propObject!=null && (typeof propObject)=="function" && propObjectName!="constructor"){
- var functionType = getFunctionType(propObject);
-
- var argString = "";
- var t=0;
- for(t=0;t<propObject.length;t++){
- var paramType = getObjectTypeName(propObject[t]);
-
- if(paramType==null || paramType=="null") paramType="";
- var paramName = paramType + "arg" + (t+1);
-
- argString += paramName + ((t+1)<propObject.length?",":"");
- }
- displayString("/**");
- displayString(" * function " + propObjectName + "(" + argString + ")");
- displayString(" * @type " + functionType);
- for(t=0;t<propObject.length;t++){
- var paramType = getObjectTypeName(propObject[t]);
-
- var paramName;
-
- if(paramType==null || paramType=="null")
- paramName= "arg" + (t+1);
- else
- paramName = paramType;
-
- if(paramType==null || paramType=="null") paramType="Object";
-
- displayString(" * @param " + paramName + " " + paramType );
-
- }
-
- displayString(" * @class " + objectClassName);
- displayString(" * @since " + getSince());
- displayString("*/");
- }else if (false){
-
-
- }else{
- var primType = getObjectTypeName(propObject);
- if(primType==null || primType=="null") primType="Object";
- var init = getInit(propObject);
- displayString("/**");
- displayString(" * property " + propObjectName);
- displayString(" * @type " + primType);
- displayString(" * @class " + objectClassName);
- displayString(" * @since " + getSince());
- displayString("*/");
- displayString(objectClassName + ".prototype." + propObjectName + "=" + init + ";");
- }
-
-
- }
-
- }
- }
-
- function getFunctionType(thefunction){
- return "---------Unknown Function Return-----------";
- }
-
-
- function getInit(object){
- if(object instanceof String) return "\"\"";
- if(object instanceof Boolean) return "false";
- if(object instanceof Number) return "0";
-
- var typename = getObjectTypeName(object);
- if(typename=="string") return "\"\"";
- if(typename=="boolean") return "false";
- if(typename=="number") return "0";
-
- if(typename==null || typename=="null") typename="Object";
- return "new " + typename + "()";
- }
-
- function getObjectTypeName( sibObject) {
-
- var typeofo = typeof sibObject;
-
- if(typeofo=="string") return "String";
- if(typeofo=="array") return "Array";
- if(typeofo=="boolean") return "Boolean";
- if(typeofo=="number") return "Number";
-
-
- if(isArray(sibObject)){
- return "Array";
- }
- if(sibObject==null) return null;
- var start, end, parentString;
- // var objString = String(sibObject);
- var tconstructor=null;
- try{
- tconstructor = sibObject.constructor;
- }catch(e){}
-
- var objString = String(tconstructor);
- start = objString.indexOf("function Object()");
- if(start!=-1){
- objString = String(sibObject);
- }
-
-
- if (objString != null) {
- start = (objString.indexOf("object") + 7);
- end = objString.indexOf("]");
- if (start < end && start>7) {
- parentString = objString.substring(start, end);
- } else {
- start = objString.indexOf("[");
- end = objString.indexOf(" ", start);
- var end2 = objString.indexOf("]", start);
- if (start < end) {
- parentString = objString.substring(start+1, end);
- } else if (start < end2){
- parentString = objString.substring(start+1, end2);
- }else{
- parentString = objString;
- }
- }
- }
-
- return parentString;
- //var constr;
- //try{
- // constr = sibObject.constructor;
- // return String(constr).replace("[","").replace("]","");
- //}catch(e){}
-
- }
-
- function getPropertyName( sibObject) {
- var start, end, parentString;
- var objString = String(sibObject);
-
- if (objString != null) {
- start = (objString.indexOf("object") + 6);
- end = objString.indexOf("]");
- if (start < end) {
- parentString = objString.substring(start, end);
- } else {
- start = objString.indexOf("[");
- end = objString.indexOf("]");
- if (start < end) {
- parentString = objString.subString(start, end);
- } else {
- parentString = objString;
- }
- }
- }
-
- return parentString;
-
- }
-
- function getObjectSuperTypeName( sibObject) {
-
- if(isArray(sibObject)){
- return "Array";
- }else{
- return "Object";
- }
- //var subName = getObjectTypeName(sibObject);
- //for(k=0;k<objectInstance.length;k++){
- // var props1 = getAllProperties(sibObject);
- // var props2 = getAllProperties(objectInstance[k]);
- // var superName = getObjectTypeName(objectInstance[k]);
- // if(superName==subName) continue;
- // if(compareArrays(props1,props2)){
- // var typeName = getObjectTypeName(props2);
- // return typeName;
- // }
-
-
- }
-
- function compareArrays(subtype, supertype){
- if(supertype.length>subtype.length) return false;
-
- for(i=0;i<supertype.length;i++){
- var contains = false;
- for(j=0;!contains && j<subtype.length;j++){
- if(subtype[j]==supertype[i]) contains=true;
- }
- if(!contains) return false;
- }
- }
-
- function generateHTMLObjectTable( DOMViewerObj, DOMViewerName) {
-
- findProperties(DOMViewerObj);
- //var s = '<table>';
- //var i;
-
- //for (i = 0; i < rootElements.length; i++) {
- // s += "<tr><td>" + new String(rootElements[i]) + "</td></tr>";
- //}
- //s += "<tr><td><br><br></tr></td>"
-
- //newElms =
-
- buildClasses();
-
- //for (i = 0; i < newElms.length; i++) {
- // s += "<tr><td>" + new String(newElms[i]) + "</td></tr>";
- //}
- //return s + "</table>"
- }
-
- function addToObjects( newObject) {
- var value, k;
- if (newObject == null)
- return false;
-
- if(newObject instanceof Array){
- return true;
- }
-
-
- value = getObjectTypeName(newObject);
-
- if(value.indexOf("ns")==0 && value!="nsXPCComponents") return false;
-
-
-
- if (shouldExclude(value))
- return false;
-
- for (k = 0; k < objectName.length; k++) {
- if (objectName[k] == value) {
- return false;
- }
- }
-
- objectName[objectName.length] = value;
- objectInstance[objectInstance.length] = newObject;
- return true;
- }
-
- function getAllProperties( object) {
- var propertyList = new Array();
- try {
- for (property in object)
- propertyList[propertyList.length] = property;
- } catch ( exception) {
- }
- return propertyList;
- }
-
- function isArray( valueObject) {
- return valueObject instanceof Array;
- var isArray = false;
- try {
- isArray = (valueObject != null && valueObject.length >= 0 && !(valueObject instanceof Function));
- } catch ( exception) {
- isArray = false;
- }
- return isArray;
- }
-
- function isObject( elem) {
- return ((elem != null) && (elem instanceof Object) && !(elem instanceof Function));
- }
-
-
-
- function findProperties( obj) {
-
- var allProperties, i;
-
-
- allProperties = getAllProperties(obj);
-
-
- for (i = 0; i < allProperties.length; i++) {
- var theObject;
-
- try{
- theObject = obj[allProperties[i]];
- }catch(e){
-
- }
- if (isObject(theObject) && addToObjects(theObject) ) {
- findProperties(theObject);
- } else {
- continue;
- }
-
- }
- }
-</script>
-</head>
-<body>
-
-<h3>Browsers JavaScript Elements:</h3>
-
-<script type="text/javascript">
- // Show properties for the specified object in the opening window. Default to
- // the document if no object is specified.
-
- var DOMViewerObj = this;
-
- var DOMViewerName = "";
-
- if (!DOMViewerObj) {
- DOMViewerObj = window.opener.document;
- DOMViewerName = "document";
- }
-
- generateHTMLObjectTable(DOMViewerObj, DOMViewerName);
-</script>
-
-</body>
-</html> \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/DOM_Generator_FireFox_V1_NoJSDoc.html b/bundles/org.eclipse.wst.jsdt.support.firefox/DOM_Generator_FireFox_V1_NoJSDoc.html
deleted file mode 100644
index 34d0b3de..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/DOM_Generator_FireFox_V1_NoJSDoc.html
+++ /dev/null
@@ -1,344 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<!--************************************************************************-->
-<!--* FireFox JavaScript Browser Object Dump *-->
-<!--* *-->
-<!--* Copyright 2007 IBM *-->
-<!--* Bradley Childs (childsb@us.ibm.com) *-->
-<!--************************************************************************-->
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title>FireFox JavaScript Object Browser Dump</title>
-<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-<script type="text/javascript">
-// Netscape 6 (or Mozilla)?
-
-var isNS6 = (navigator.userAgent.indexOf("Gecko") > 0) ? 1 : 0;
-
-// Arrays for tracking objects/methods.
-
-var objectList = new Array();
-var objTypeArrays = new Array();
-var rootElements = new Array();
-var nameArray = new Array();
-
-function addRootDisplayElement(theObject,objName){
- var valueString;
- if(objName=="") objName="this";
-
- valueString = objName + ".prototype = new " + getObjectName(theObject) + "();";
- rootElements[rootElements.length] = valueString;
-}
-
-function shouldExclude(nameOfElement){
- /* allows filtered values and exclude elements that are coming from this script */
- var excluded = ["shouldExclude",
- "addRootDisplayElement",
- "buildClasses",
- "getObjectName",
- "objectList",
- "objTypeArrays",
- "rootElements",
- "nameArray",
- "isNS6",
- "getObjectSuperType",
- "isKnownObject",
- "generateHTMLObjectTable",
- "addElementToObject",
- "addToObjects",
- "getAllProperties",
- "isArray",
- "isObject",
- "findProperties",
- "DOMViewerObj",
- "DOMViewerName"];
- var k;
- for(k=0;k<excluded.length;k++){
- if(nameOfElement==excluded[k]) return true;
- }
- return false;
-}
-
-function buildClasses(){
- var ea = new Array();
- var k,j,t;
- for(k=0;k<objectList.length;k++){
- var elementArray;
- var classObjectName;
- try{
- classObjectName = objectList[k];
- }catch(exception){}
-
- if(shouldExclude(classObjectName)) continue;
- var superName = (isArray(classObjectName))?"new Array();":"new Object();";
- ea[ea.length] = classObjectName + ".prototype= " + superName;
- ea[ea.length] = "function " + classObjectName + "(){};"
-
- elementArray = objTypeArrays[k];
-
- if(!isArray(elementArray)) continue;
- for(j=0;j<elementArray.length;j++){
- try{
- value = elementArray[j];
- }catch(exception){
- value = name;
- }
- name = nameArray[k][j];
- if(shouldExclude(name)) continue;
-
- if(value==null) continue;
-
- if(isObject(value)){
-
- try{
- var superType = getObjectSuperType(value);
- ea[ea.length] = classObjectName + ".prototype." + name + "= new " + superType + "();";
- }catch(exception){
- continue;
- //ea[ea.length] = classObjectName + "." + name + ".prototype=new " + name + "();";
- }
- }else if(value instanceof Function){
- var argString = "";
- for(t=0;t<value.length;t++){
- argString += "arg" + (t+1) + ((t+1)<value.length?",":"");
- }
-
- ea[ea.length] = classObjectName + ".prototype." + name + "=function("+argString+"){};";
- }else if(typeof value=="string"){
- ea[ea.length] = classObjectName + ".prototype." + name + "=\"\";";
- }else if(typeof value =="boolean"){
- ea[ea.length] = classObjectName + ".prototype." + name + "=false;";
- }else if(typeof value =="number"){
- ea[ea.length] = classObjectName + ".prototype." + name + "=0;";
- }
-
- }
-
- }
- return ea;
-}
-
-function getObjectName(sibObject){
-
- var start,end,parentString;
-
- var objString = String(sibObject);
-
- if(objString!=null){
- start = (objString.indexOf("object") + 6);
- end = objString.indexOf("]");
- if(start<end){
- parentString = objString.substring(start,end);
- }else{
- start = objString.indexOf("[");
- end = objString.indexOf("]");
- if(start<end){
- parentString = objString.subString(start,end);
- }else{
- parentString = objString;
- }
- }
- }
-
- return parentString;
-}
-
-function getObjectSuperType(sibObject){
-
- var parentString;
- parentString = getObjectName(sibObject);
- if(isArray(sibObject)){
- var array=true;
- }
- var constr;
-
- if(!(parentString=="Object") && isKnownObject(parentString)){
- return parentString;
- } else if(isArray(sibObject)){
- return "Array";
- }
-
- return parentString;
-}
-
-function isKnownObject(objValue){
- if(objValue==null) return false;
- var k;
- for(k=0;k<objectList.length;k++){
- try{
- if(String(objectList[k])==objValue){
- return true;
- }
- }catch(Exception){}
- }
- return false;
-}
-
-function generateHTMLObjectTable(DOMViewerObj, DOMViewerName){
-
- findProperties(DOMViewerObj, null, DOMViewerName);
- var s = '<table>';
- var i;
-
-
- for(i = 0; i < rootElements.length; i++){
- s+= "<tr><td>" + new String(rootElements[i]) + "</td></tr>";
- }
- s+="<tr><td><br><br></tr></td>"
-
- newElms = buildClasses();
-
- for(i = 0; i < newElms.length; i++){
- s+= "<tr><td>" + new String(newElms[i]) + "</td></tr>";
- }
- return s + "</table>"
-}
-
-function addElementToObject(classObject,functionObject,name){
- var value,k;
- var index=-1;
- if(isObject(classObject)){
- value = getObjectName(classObject);
- }else{
- value=classObject;
- }
- for(k=0;k<objectList.length;k++){
- if(objectList[k]==value){
- index=k;
- break;
- }
- }
-
- if(index==-1) return false;
-
- if(objTypeArrays[index]==null){
- objTypeArrays[index] = new Array();
- }
-
- if(nameArray[index]==null) nameArray[index] = new Array();
-
- for(k=0;k<nameArray[index].length;k++){
- try{
- if(nameArray[index][k]==name) return; // nothing to do
- }catch(exception){
- // not found
- }
- }
-
-
- objTypeArrays[index][objTypeArrays[index].length] = (functionObject==null?(new String()):functionObject);
-
-
-
- nameArray[index][objTypeArrays[index].length-1] = name;
-}
-
-function addToObjects(newObject){
- var value,k;
- if(newObject==null) return false;
- value = getObjectName(newObject);
- for(k=0;k<objectList.length;k++){
- if(objectList[k]==value){
- return false;
- }
- }
-
- objectList[objectList.length] = value;
- return true;
-}
-
-
-function getAllProperties(object){
- var propertyList = new Array();
- try{
- for (property in object)
- propertyList[propertyList.length] = property;
- }catch(exception){}
- return propertyList;
-}
-
-function isArray(valueObject){
- var isArray = false;
- try{
- isArray = (valueObject!=null && valueObject.length>0);
- }catch(exception){ isArray = false; }
- return isArray;
-}
-
-function isObject(elem){
- return ((elem!=null) && (elem instanceof Object) && !(elem instanceof Function));
-}
-
-function findProperties(obj, parent, name) {
-
- var allProperties,i;
-
- if ( isObject(obj) && ! isArray(obj) ){
- if(parent==null){
- addToObjects(obj);
- addRootDisplayElement(obj,name);
-
- }
- allProperties = getAllProperties(obj);
- }else{
- return;
- }
-
- for (i = 0; i < allProperties.length ; i++) {
- if(allProperties[i]=="constructor") continue;
- if(i==72){
- // do something
- var k = 10;
- }
- var objValue;
-
- try{
- objValue = obj[allProperties[i]];
- }catch(exception){
- objValue = null;
- addElementToObject(obj,allProperties[i],String(allProperties[i]));
- continue;
- }
- try{
- if( isObject(objValue) && (! isArray(objValue)) && addToObjects(objValue)){
- addElementToObject(obj,obj[allProperties[i]],String(allProperties[i]));
- findProperties(obj[allProperties[i]], (parent==null?"":parent+ ".") + name, String(allProperties[i]));
- }else if( objValue instanceof Object ){
- addElementToObject(obj,objValue,String(allProperties[i]));
- }else{
- var isUndefPrim = (objValue==null || objValue=="" );
- addElementToObject(obj,(isUndefPrim?allProperties[i]:objValue),String(allProperties[i]));
-
- }
- }catch(exception){
-
-
- var k =10;
- }
- }
-
-}
-</script>
-</head>
-<body>
-
-<h3>Browsers JavaScript Elements:</h3>
-
-<script type="text/javascript">
-
-// Show properties for the specified object in the opening window. Default to
-// the document if no object is specified.
-
-var DOMViewerObj = this;
-var DOMViewerName = "";
-
-if (!DOMViewerObj) {
- DOMViewerObj = window.opener.document;
- DOMViewerName = "document";
-}
-
-document.writeln(generateHTMLObjectTable(DOMViewerObj, DOMViewerName));
-
-</script>
-
-</body>
-</html> \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/FireFox2.0.0.3.js_NOJSDOC b/bundles/org.eclipse.wst.jsdt.support.firefox/FireFox2.0.0.3.js_NOJSDOC
deleted file mode 100644
index a98d9fb1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/FireFox2.0.0.3.js_NOJSDOC
+++ /dev/null
@@ -1,10552 +0,0 @@
-
-this.prototype = new Window();
-
-
-Window.prototype= new Global();
-function Window(){};
-Window.prototype.navigator= new Navigator();
-Window.prototype.document= new HTMLDocument();
-Window.prototype.Packages= new Package();
-Window.prototype.sun= new Package();
-Window.prototype.java= new Package();
-Window.prototype.netscape= new Object();
-Window.prototype.XPCNativeWrapper=function(){};
-Window.prototype.GeckoActiveXObject=function(arg1){};
-Window.prototype.Components= new nsXPCComponents();
-Window.prototype.length="";
-Window.prototype.parent= new Window();
-Window.prototype.top= new Window();
-Window.prototype.scrollbars= new BarProp();
-Window.prototype.name="";
-Window.prototype.scrollX="";
-Window.prototype.scrollY="";
-Window.prototype.scrollTo=function(arg1,arg2){};
-Window.prototype.scrollBy=function(arg1,arg2){};
-Window.prototype.getSelection=function(){};
-Window.prototype.scrollByLines=function(arg1){};
-Window.prototype.scrollByPages=function(arg1){};
-Window.prototype.sizeToContent=function(){};
-Window.prototype.dump=function(arg1){};
-Window.prototype.setTimeout=function(){};
-Window.prototype.setInterval=function(){};
-Window.prototype.clearTimeout=function(){};
-Window.prototype.clearInterval=function(){};
-Window.prototype.setResizable=function(arg1){};
-Window.prototype.captureEvents=function(arg1){};
-Window.prototype.releaseEvents=function(arg1){};
-Window.prototype.routeEvent=function(arg1){};
-Window.prototype.enableExternalCapture=function(){};
-Window.prototype.disableExternalCapture=function(){};
-Window.prototype.prompt=function(){};
-Window.prototype.open=function(){};
-Window.prototype.openDialog=function(){};
-Window.prototype.frames= new Window();
-Window.prototype.find=function(){};
-Window.prototype.self= new Window();
-Window.prototype.screen= new Screen();
-Window.prototype.history= new Array();
-Window.prototype.content= new Window();
-Window.prototype.menubar= new BarProp();
-Window.prototype.toolbar= new BarProp();
-Window.prototype.locationbar= new BarProp();
-Window.prototype.personalbar= new BarProp();
-Window.prototype.statusbar= new BarProp();
-Window.prototype.directories= new BarProp();
-Window.prototype.closed="";
-Window.prototype.crypto= new Crypto();
-Window.prototype.pkcs11= new Pkcs11();
-Window.prototype.controllers= new XULControllers();
-Window.prototype.opener="";
-Window.prototype.status="";
-Window.prototype.defaultStatus="";
-Window.prototype.innerWidth=0;
-Window.prototype.innerHeight=0;
-Window.prototype.outerWidth=0;
-Window.prototype.outerHeight=0;
-Window.prototype.screenX=0;
-Window.prototype.screenY=0;
-Window.prototype.pageXOffset="";
-Window.prototype.pageYOffset="";
-Window.prototype.scrollMaxX="";
-Window.prototype.scrollMaxY="";
-Window.prototype.fullScreen="";
-Window.prototype.alert=function(arg1){};
-Window.prototype.confirm=function(arg1){};
-Window.prototype.focus=function(){};
-Window.prototype.blur=function(){};
-Window.prototype.back=function(){};
-Window.prototype.forward=function(){};
-Window.prototype.home=function(){};
-Window.prototype.stop=function(){};
-Window.prototype.print=function(){};
-Window.prototype.moveTo=function(arg1,arg2){};
-Window.prototype.moveBy=function(arg1,arg2){};
-Window.prototype.resizeTo=function(arg1,arg2){};
-Window.prototype.resizeBy=function(arg1,arg2){};
-Window.prototype.scroll=function(arg1,arg2){};
-Window.prototype.close=function(){};
-Window.prototype.updateCommands=function(arg1){};
-Window.prototype.atob=function(arg1){};
-Window.prototype.btoa=function(arg1){};
-Window.prototype.frameElement="";
-Window.prototype.removeEventListener=function(arg1,arg2,arg3){};
-Window.prototype.dispatchEvent=function(arg1){};
-Window.prototype.getComputedStyle=function(arg1,arg2){};
-Window.prototype.sessionStorage="";
-Window.prototype.globalStorage= new StorageList();
-Navigator.prototype= new Array();
-function Navigator(){};
-Navigator.prototype.userAgent="";
-Navigator.prototype.platform="";
-Navigator.prototype.appCodeName="";
-Navigator.prototype.appName="";
-Navigator.prototype.appVersion="";
-Navigator.prototype.language="";
-Navigator.prototype.mimeTypes= new Array();
-Navigator.prototype.oscpu="";
-Navigator.prototype.vendor="";
-Navigator.prototype.vendorSub="";
-Navigator.prototype.product="";
-Navigator.prototype.productSub="";
-Navigator.prototype.plugins= new Array();
-Navigator.prototype.securityPolicy="";
-Navigator.prototype.cookieEnabled=false;
-Navigator.prototype.onLine=false;
-Navigator.prototype.javaEnabled=function(){};
-Navigator.prototype.taintEnabled=function(){};
-Navigator.prototype.buildID="";
-Navigator.prototype.preference=function(){};
-Navigator.prototype.registerContentHandler=function(arg1,arg2,arg3){};
-Navigator.prototype.registerProtocolHandler=function(arg1,arg2,arg3){};
-HTMLDocument.prototype= new Array();
-function HTMLDocument(){};
-HTMLDocument.prototype.writeln=function(){};
-HTMLDocument.prototype.title="";
-HTMLDocument.prototype.referrer="";
-HTMLDocument.prototype.styleSheets= new StyleSheetList();
-HTMLDocument.prototype.baseURI="";
-HTMLDocument.prototype.compareDocumentPosition=function(arg1){};
-HTMLDocument.prototype.textContent="";
-HTMLDocument.prototype.isSameNode=function(arg1){};
-HTMLDocument.prototype.lookupPrefix=function(arg1){};
-HTMLDocument.prototype.isDefaultNamespace=function(arg1){};
-HTMLDocument.prototype.lookupNamespaceURI=function(arg1){};
-HTMLDocument.prototype.isEqualNode=function(arg1){};
-HTMLDocument.prototype.getFeature=function(arg1,arg2){};
-HTMLDocument.prototype.setUserData=function(arg1,arg2,arg3){};
-HTMLDocument.prototype.getUserData=function(arg1){};
-HTMLDocument.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-HTMLDocument.prototype.DOCUMENT_POSITION_PRECEDING=0;
-HTMLDocument.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-HTMLDocument.prototype.DOCUMENT_POSITION_CONTAINS=0;
-HTMLDocument.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-HTMLDocument.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-HTMLDocument.prototype.nodeName="";
-HTMLDocument.prototype.nodeValue="";
-HTMLDocument.prototype.nodeType=0;
-HTMLDocument.prototype.parentNode="";
-HTMLDocument.prototype.childNodes= new NodeList();
-HTMLDocument.prototype.firstChild= new DocumentType();
-HTMLDocument.prototype.lastChild= new HTMLHtmlElement();
-HTMLDocument.prototype.previousSibling="";
-HTMLDocument.prototype.nextSibling="";
-HTMLDocument.prototype.attributes="";
-HTMLDocument.prototype.ownerDocument="";
-HTMLDocument.prototype.insertBefore=function(arg1,arg2){};
-HTMLDocument.prototype.replaceChild=function(arg1,arg2){};
-HTMLDocument.prototype.removeChild=function(arg1){};
-HTMLDocument.prototype.appendChild=function(arg1){};
-HTMLDocument.prototype.hasChildNodes=function(){};
-HTMLDocument.prototype.cloneNode=function(arg1){};
-HTMLDocument.prototype.normalize=function(){};
-HTMLDocument.prototype.isSupported=function(arg1,arg2){};
-HTMLDocument.prototype.namespaceURI="";
-HTMLDocument.prototype.prefix="";
-HTMLDocument.prototype.localName="";
-HTMLDocument.prototype.hasAttributes=function(){};
-HTMLDocument.prototype.doctype= new DocumentType();
-HTMLDocument.prototype.implementation= new DOMImplementation();
-HTMLDocument.prototype.documentElement= new HTMLHtmlElement();
-HTMLDocument.prototype.createElement=function(arg1){};
-HTMLDocument.prototype.createDocumentFragment=function(){};
-HTMLDocument.prototype.createTextNode=function(arg1){};
-HTMLDocument.prototype.createComment=function(arg1){};
-HTMLDocument.prototype.createCDATASection=function(arg1){};
-HTMLDocument.prototype.createProcessingInstruction=function(arg1,arg2){};
-HTMLDocument.prototype.createAttribute=function(arg1){};
-HTMLDocument.prototype.createEntityReference=function(arg1){};
-HTMLDocument.prototype.getElementsByTagName=function(arg1){};
-HTMLDocument.prototype.importNode=function(arg1,arg2){};
-HTMLDocument.prototype.createElementNS=function(arg1,arg2){};
-HTMLDocument.prototype.createAttributeNS=function(arg1,arg2){};
-HTMLDocument.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-HTMLDocument.prototype.getElementById=function(arg1){};
-HTMLDocument.prototype.ELEMENT_NODE=0;
-HTMLDocument.prototype.ATTRIBUTE_NODE=0;
-HTMLDocument.prototype.TEXT_NODE=0;
-HTMLDocument.prototype.CDATA_SECTION_NODE=0;
-HTMLDocument.prototype.ENTITY_REFERENCE_NODE=0;
-HTMLDocument.prototype.ENTITY_NODE=0;
-HTMLDocument.prototype.PROCESSING_INSTRUCTION_NODE=0;
-HTMLDocument.prototype.COMMENT_NODE=0;
-HTMLDocument.prototype.DOCUMENT_NODE=0;
-HTMLDocument.prototype.DOCUMENT_TYPE_NODE=0;
-HTMLDocument.prototype.DOCUMENT_FRAGMENT_NODE=0;
-HTMLDocument.prototype.NOTATION_NODE=0;
-HTMLDocument.prototype.URL="";
-HTMLDocument.prototype.body= new HTMLBodyElement();
-HTMLDocument.prototype.images= new HTMLCollection();
-HTMLDocument.prototype.applets= new HTMLCollection();
-HTMLDocument.prototype.links= new HTMLCollection();
-HTMLDocument.prototype.forms= new HTMLCollection();
-HTMLDocument.prototype.anchors= new HTMLCollection();
-HTMLDocument.prototype.cookie="";
-HTMLDocument.prototype.close=function(){};
-HTMLDocument.prototype.getElementsByName=function(arg1){};
-HTMLDocument.prototype.width=0;
-HTMLDocument.prototype.height=0;
-HTMLDocument.prototype.alinkColor="";
-HTMLDocument.prototype.linkColor="";
-HTMLDocument.prototype.vlinkColor="";
-HTMLDocument.prototype.bgColor="";
-HTMLDocument.prototype.fgColor="";
-HTMLDocument.prototype.domain="";
-HTMLDocument.prototype.embeds= new HTMLCollection();
-HTMLDocument.prototype.getSelection=function(){};
-HTMLDocument.prototype.write=function(){};
-HTMLDocument.prototype.clear=function(){};
-HTMLDocument.prototype.captureEvents=function(arg1){};
-HTMLDocument.prototype.releaseEvents=function(arg1){};
-HTMLDocument.prototype.routeEvent=function(arg1){};
-HTMLDocument.prototype.compatMode="";
-HTMLDocument.prototype.plugins= new HTMLCollection();
-HTMLDocument.prototype.designMode="";
-HTMLDocument.prototype.execCommand=function(arg1,arg2,arg3){};
-HTMLDocument.prototype.execCommandShowHelp=function(arg1){};
-HTMLDocument.prototype.queryCommandEnabled=function(arg1){};
-HTMLDocument.prototype.queryCommandIndeterm=function(arg1){};
-HTMLDocument.prototype.queryCommandState=function(arg1){};
-HTMLDocument.prototype.queryCommandSupported=function(arg1){};
-HTMLDocument.prototype.queryCommandText=function(arg1){};
-HTMLDocument.prototype.queryCommandValue=function(arg1){};
-HTMLDocument.prototype.characterSet="";
-HTMLDocument.prototype.dir="";
-HTMLDocument.prototype.contentType="";
-HTMLDocument.prototype.lastModified="";
-HTMLDocument.prototype.getBoxObjectFor=function(arg1){};
-HTMLDocument.prototype.setBoxObjectFor=function(arg1,arg2){};
-HTMLDocument.prototype.createEvent=function(arg1){};
-HTMLDocument.prototype.preferredStylesheetSet="";
-HTMLDocument.prototype.defaultView= new Window();
-HTMLDocument.prototype.createRange=function(){};
-HTMLDocument.prototype.createNodeIterator=function(arg1,arg2,arg3,arg4){};
-HTMLDocument.prototype.createTreeWalker=function(arg1,arg2,arg3,arg4){};
-HTMLDocument.prototype.getAnonymousNodes=function(arg1){};
-HTMLDocument.prototype.getAnonymousElementByAttribute=function(arg1,arg2,arg3){};
-HTMLDocument.prototype.addBinding=function(arg1,arg2){};
-HTMLDocument.prototype.removeBinding=function(arg1,arg2){};
-HTMLDocument.prototype.getBindingParent=function(arg1){};
-HTMLDocument.prototype.loadBindingDocument=function(arg1){};
-HTMLDocument.prototype.removeEventListener=function(arg1,arg2,arg3){};
-HTMLDocument.prototype.dispatchEvent=function(arg1){};
-HTMLDocument.prototype.inputEncoding="";
-HTMLDocument.prototype.xmlEncoding="";
-HTMLDocument.prototype.xmlStandalone="";
-HTMLDocument.prototype.xmlVersion="";
-HTMLDocument.prototype.strictErrorChecking=false;
-HTMLDocument.prototype.documentURI="";
-HTMLDocument.prototype.adoptNode=function(arg1){};
-HTMLDocument.prototype.domConfig="";
-HTMLDocument.prototype.normalizeDocument=function(){};
-HTMLDocument.prototype.renameNode=function(arg1,arg2,arg3){};
-HTMLDocument.prototype.createExpression=function(arg1,arg2){};
-HTMLDocument.prototype.createNSResolver=function(arg1){};
-HTMLDocument.prototype.evaluate=function(arg1,arg2,arg3,arg4,arg5){};
-StyleSheetList.prototype= new Array();
-function StyleSheetList(){};
-StyleSheetList.prototype.length="";
-StyleSheetList.prototype.item=function(arg1){};
-DocumentType.prototype= new Array();
-function DocumentType(){};
-DocumentType.prototype.nodeName="";
-DocumentType.prototype.nodeValue="";
-DocumentType.prototype.nodeType=0;
-DocumentType.prototype.parentNode= new HTMLDocument();
-DocumentType.prototype.childNodes= new NodeList();
-DocumentType.prototype.firstChild="";
-DocumentType.prototype.lastChild="";
-DocumentType.prototype.previousSibling="";
-DocumentType.prototype.nextSibling= new HTMLHtmlElement();
-DocumentType.prototype.attributes="";
-DocumentType.prototype.ownerDocument= new HTMLDocument();
-DocumentType.prototype.insertBefore=function(arg1,arg2){};
-DocumentType.prototype.replaceChild=function(arg1,arg2){};
-DocumentType.prototype.removeChild=function(arg1){};
-DocumentType.prototype.appendChild=function(arg1){};
-DocumentType.prototype.hasChildNodes=function(){};
-DocumentType.prototype.cloneNode=function(arg1){};
-DocumentType.prototype.normalize=function(){};
-DocumentType.prototype.isSupported=function(arg1,arg2){};
-DocumentType.prototype.namespaceURI="";
-DocumentType.prototype.prefix="";
-DocumentType.prototype.localName="";
-DocumentType.prototype.hasAttributes=function(){};
-DocumentType.prototype.ELEMENT_NODE=0;
-DocumentType.prototype.ATTRIBUTE_NODE=0;
-DocumentType.prototype.TEXT_NODE=0;
-DocumentType.prototype.CDATA_SECTION_NODE=0;
-DocumentType.prototype.ENTITY_REFERENCE_NODE=0;
-DocumentType.prototype.ENTITY_NODE=0;
-DocumentType.prototype.PROCESSING_INSTRUCTION_NODE=0;
-DocumentType.prototype.COMMENT_NODE=0;
-DocumentType.prototype.DOCUMENT_NODE=0;
-DocumentType.prototype.DOCUMENT_TYPE_NODE=0;
-DocumentType.prototype.DOCUMENT_FRAGMENT_NODE=0;
-DocumentType.prototype.NOTATION_NODE=0;
-DocumentType.prototype.name="";
-DocumentType.prototype.entities="";
-DocumentType.prototype.notations="";
-DocumentType.prototype.publicId="";
-DocumentType.prototype.systemId="";
-DocumentType.prototype.internalSubset="";
-DocumentType.prototype.baseURI="";
-DocumentType.prototype.compareDocumentPosition=function(arg1){};
-DocumentType.prototype.textContent="";
-DocumentType.prototype.isSameNode=function(arg1){};
-DocumentType.prototype.lookupPrefix=function(arg1){};
-DocumentType.prototype.isDefaultNamespace=function(arg1){};
-DocumentType.prototype.lookupNamespaceURI=function(arg1){};
-DocumentType.prototype.isEqualNode=function(arg1){};
-DocumentType.prototype.getFeature=function(arg1,arg2){};
-DocumentType.prototype.setUserData=function(arg1,arg2,arg3){};
-DocumentType.prototype.getUserData=function(arg1){};
-DocumentType.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-DocumentType.prototype.DOCUMENT_POSITION_PRECEDING=0;
-DocumentType.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-DocumentType.prototype.DOCUMENT_POSITION_CONTAINS=0;
-DocumentType.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-DocumentType.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-NodeList.prototype= new Array();
-function NodeList(){};
-NodeList.prototype.length="";
-NodeList.prototype.item=function(arg1){};
-HTMLHtmlElement.prototype= new Array();
-function HTMLHtmlElement(){};
-HTMLHtmlElement.prototype.nodeName="";
-HTMLHtmlElement.prototype.nodeValue="";
-HTMLHtmlElement.prototype.nodeType=0;
-HTMLHtmlElement.prototype.parentNode= new HTMLDocument();
-HTMLHtmlElement.prototype.childNodes= new NodeList();
-HTMLHtmlElement.prototype.firstChild= new HTMLHeadElement();
-HTMLHtmlElement.prototype.lastChild= new HTMLBodyElement();
-HTMLHtmlElement.prototype.previousSibling= new DocumentType();
-HTMLHtmlElement.prototype.nextSibling="";
-HTMLHtmlElement.prototype.attributes= new NamedNodeMap();
-HTMLHtmlElement.prototype.ownerDocument= new HTMLDocument();
-HTMLHtmlElement.prototype.insertBefore=function(arg1,arg2){};
-HTMLHtmlElement.prototype.replaceChild=function(arg1,arg2){};
-HTMLHtmlElement.prototype.removeChild=function(arg1){};
-HTMLHtmlElement.prototype.appendChild=function(arg1){};
-HTMLHtmlElement.prototype.hasChildNodes=function(){};
-HTMLHtmlElement.prototype.cloneNode=function(arg1){};
-HTMLHtmlElement.prototype.normalize=function(){};
-HTMLHtmlElement.prototype.isSupported=function(arg1,arg2){};
-HTMLHtmlElement.prototype.namespaceURI="";
-HTMLHtmlElement.prototype.prefix="";
-HTMLHtmlElement.prototype.localName="";
-HTMLHtmlElement.prototype.hasAttributes=function(){};
-HTMLHtmlElement.prototype.ELEMENT_NODE=0;
-HTMLHtmlElement.prototype.ATTRIBUTE_NODE=0;
-HTMLHtmlElement.prototype.TEXT_NODE=0;
-HTMLHtmlElement.prototype.CDATA_SECTION_NODE=0;
-HTMLHtmlElement.prototype.ENTITY_REFERENCE_NODE=0;
-HTMLHtmlElement.prototype.ENTITY_NODE=0;
-HTMLHtmlElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-HTMLHtmlElement.prototype.COMMENT_NODE=0;
-HTMLHtmlElement.prototype.DOCUMENT_NODE=0;
-HTMLHtmlElement.prototype.DOCUMENT_TYPE_NODE=0;
-HTMLHtmlElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-HTMLHtmlElement.prototype.NOTATION_NODE=0;
-HTMLHtmlElement.prototype.tagName="";
-HTMLHtmlElement.prototype.getAttribute=function(arg1){};
-HTMLHtmlElement.prototype.setAttribute=function(arg1,arg2){};
-HTMLHtmlElement.prototype.removeAttribute=function(arg1){};
-HTMLHtmlElement.prototype.getAttributeNode=function(arg1){};
-HTMLHtmlElement.prototype.setAttributeNode=function(arg1){};
-HTMLHtmlElement.prototype.removeAttributeNode=function(arg1){};
-HTMLHtmlElement.prototype.getElementsByTagName=function(arg1){};
-HTMLHtmlElement.prototype.getAttributeNS=function(arg1,arg2){};
-HTMLHtmlElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-HTMLHtmlElement.prototype.removeAttributeNS=function(arg1,arg2){};
-HTMLHtmlElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-HTMLHtmlElement.prototype.setAttributeNodeNS=function(arg1){};
-HTMLHtmlElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-HTMLHtmlElement.prototype.hasAttribute=function(arg1){};
-HTMLHtmlElement.prototype.hasAttributeNS=function(arg1,arg2){};
-HTMLHtmlElement.prototype.id="";
-HTMLHtmlElement.prototype.title="";
-HTMLHtmlElement.prototype.lang="";
-HTMLHtmlElement.prototype.dir="";
-HTMLHtmlElement.prototype.className="";
-HTMLHtmlElement.prototype.version="";
-HTMLHtmlElement.prototype.offsetTop="";
-HTMLHtmlElement.prototype.offsetLeft="";
-HTMLHtmlElement.prototype.offsetWidth=0;
-HTMLHtmlElement.prototype.offsetHeight=0;
-HTMLHtmlElement.prototype.offsetParent="";
-HTMLHtmlElement.prototype.innerHTML="";
-HTMLHtmlElement.prototype.scrollTop="";
-HTMLHtmlElement.prototype.scrollLeft="";
-HTMLHtmlElement.prototype.scrollHeight=0;
-HTMLHtmlElement.prototype.scrollWidth=0;
-HTMLHtmlElement.prototype.clientHeight=0;
-HTMLHtmlElement.prototype.clientWidth=0;
-HTMLHtmlElement.prototype.tabIndex=0;
-HTMLHtmlElement.prototype.blur=function(){};
-HTMLHtmlElement.prototype.focus=function(){};
-HTMLHtmlElement.prototype.spellcheck="";
-HTMLHtmlElement.prototype.style= new CSSStyleDeclaration();
-HTMLHtmlElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-HTMLHtmlElement.prototype.dispatchEvent=function(arg1){};
-HTMLHtmlElement.prototype.baseURI="";
-HTMLHtmlElement.prototype.compareDocumentPosition=function(arg1){};
-HTMLHtmlElement.prototype.textContent="";
-HTMLHtmlElement.prototype.isSameNode=function(arg1){};
-HTMLHtmlElement.prototype.lookupPrefix=function(arg1){};
-HTMLHtmlElement.prototype.isDefaultNamespace=function(arg1){};
-HTMLHtmlElement.prototype.lookupNamespaceURI=function(arg1){};
-HTMLHtmlElement.prototype.isEqualNode=function(arg1){};
-HTMLHtmlElement.prototype.getFeature=function(arg1,arg2){};
-HTMLHtmlElement.prototype.setUserData=function(arg1,arg2,arg3){};
-HTMLHtmlElement.prototype.getUserData=function(arg1){};
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-HTMLHeadElement.prototype= new Array();
-function HTMLHeadElement(){};
-HTMLHeadElement.prototype.nodeName="";
-HTMLHeadElement.prototype.nodeValue="";
-HTMLHeadElement.prototype.nodeType=0;
-HTMLHeadElement.prototype.parentNode= new HTMLHtmlElement();
-HTMLHeadElement.prototype.childNodes= new NodeList();
-HTMLHeadElement.prototype.firstChild= new Array();
-HTMLHeadElement.prototype.lastChild= new HTMLScriptElement();
-HTMLHeadElement.prototype.previousSibling="";
-HTMLHeadElement.prototype.nextSibling= new HTMLBodyElement();
-HTMLHeadElement.prototype.attributes= new NamedNodeMap();
-HTMLHeadElement.prototype.ownerDocument= new HTMLDocument();
-HTMLHeadElement.prototype.insertBefore=function(arg1,arg2){};
-HTMLHeadElement.prototype.replaceChild=function(arg1,arg2){};
-HTMLHeadElement.prototype.removeChild=function(arg1){};
-HTMLHeadElement.prototype.appendChild=function(arg1){};
-HTMLHeadElement.prototype.hasChildNodes=function(){};
-HTMLHeadElement.prototype.cloneNode=function(arg1){};
-HTMLHeadElement.prototype.normalize=function(){};
-HTMLHeadElement.prototype.isSupported=function(arg1,arg2){};
-HTMLHeadElement.prototype.namespaceURI="";
-HTMLHeadElement.prototype.prefix="";
-HTMLHeadElement.prototype.localName="";
-HTMLHeadElement.prototype.hasAttributes=function(){};
-HTMLHeadElement.prototype.ELEMENT_NODE=0;
-HTMLHeadElement.prototype.ATTRIBUTE_NODE=0;
-HTMLHeadElement.prototype.TEXT_NODE=0;
-HTMLHeadElement.prototype.CDATA_SECTION_NODE=0;
-HTMLHeadElement.prototype.ENTITY_REFERENCE_NODE=0;
-HTMLHeadElement.prototype.ENTITY_NODE=0;
-HTMLHeadElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-HTMLHeadElement.prototype.COMMENT_NODE=0;
-HTMLHeadElement.prototype.DOCUMENT_NODE=0;
-HTMLHeadElement.prototype.DOCUMENT_TYPE_NODE=0;
-HTMLHeadElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-HTMLHeadElement.prototype.NOTATION_NODE=0;
-HTMLHeadElement.prototype.tagName="";
-HTMLHeadElement.prototype.getAttribute=function(arg1){};
-HTMLHeadElement.prototype.setAttribute=function(arg1,arg2){};
-HTMLHeadElement.prototype.removeAttribute=function(arg1){};
-HTMLHeadElement.prototype.getAttributeNode=function(arg1){};
-HTMLHeadElement.prototype.setAttributeNode=function(arg1){};
-HTMLHeadElement.prototype.removeAttributeNode=function(arg1){};
-HTMLHeadElement.prototype.getElementsByTagName=function(arg1){};
-HTMLHeadElement.prototype.getAttributeNS=function(arg1,arg2){};
-HTMLHeadElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-HTMLHeadElement.prototype.removeAttributeNS=function(arg1,arg2){};
-HTMLHeadElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-HTMLHeadElement.prototype.setAttributeNodeNS=function(arg1){};
-HTMLHeadElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-HTMLHeadElement.prototype.hasAttribute=function(arg1){};
-HTMLHeadElement.prototype.hasAttributeNS=function(arg1,arg2){};
-HTMLHeadElement.prototype.id="";
-HTMLHeadElement.prototype.title="";
-HTMLHeadElement.prototype.lang="";
-HTMLHeadElement.prototype.dir="";
-HTMLHeadElement.prototype.className="";
-HTMLHeadElement.prototype.profile="";
-HTMLHeadElement.prototype.offsetTop="";
-HTMLHeadElement.prototype.offsetLeft="";
-HTMLHeadElement.prototype.offsetWidth="";
-HTMLHeadElement.prototype.offsetHeight="";
-HTMLHeadElement.prototype.offsetParent="";
-HTMLHeadElement.prototype.innerHTML="";
-HTMLHeadElement.prototype.scrollTop="";
-HTMLHeadElement.prototype.scrollLeft="";
-HTMLHeadElement.prototype.scrollHeight="";
-HTMLHeadElement.prototype.scrollWidth="";
-HTMLHeadElement.prototype.clientHeight="";
-HTMLHeadElement.prototype.clientWidth="";
-HTMLHeadElement.prototype.tabIndex=0;
-HTMLHeadElement.prototype.blur=function(){};
-HTMLHeadElement.prototype.focus=function(){};
-HTMLHeadElement.prototype.spellcheck="";
-HTMLHeadElement.prototype.style= new CSSStyleDeclaration();
-HTMLHeadElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-HTMLHeadElement.prototype.dispatchEvent=function(arg1){};
-HTMLHeadElement.prototype.baseURI="";
-HTMLHeadElement.prototype.compareDocumentPosition=function(arg1){};
-HTMLHeadElement.prototype.textContent="";
-HTMLHeadElement.prototype.isSameNode=function(arg1){};
-HTMLHeadElement.prototype.lookupPrefix=function(arg1){};
-HTMLHeadElement.prototype.isDefaultNamespace=function(arg1){};
-HTMLHeadElement.prototype.lookupNamespaceURI=function(arg1){};
-HTMLHeadElement.prototype.isEqualNode=function(arg1){};
-HTMLHeadElement.prototype.getFeature=function(arg1,arg2){};
-HTMLHeadElement.prototype.setUserData=function(arg1,arg2,arg3){};
-HTMLHeadElement.prototype.getUserData=function(arg1){};
-HTMLHeadElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-HTMLHeadElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-HTMLHeadElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-HTMLHeadElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-HTMLHeadElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-HTMLHeadElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-HTMLScriptElement.prototype= new Array();
-function HTMLScriptElement(){};
-HTMLScriptElement.prototype.nodeName="";
-HTMLScriptElement.prototype.nodeValue="";
-HTMLScriptElement.prototype.nodeType=0;
-HTMLScriptElement.prototype.parentNode= new HTMLHeadElement();
-HTMLScriptElement.prototype.childNodes= new NodeList();
-HTMLScriptElement.prototype.firstChild= new Array();
-HTMLScriptElement.prototype.lastChild= new Array();
-HTMLScriptElement.prototype.previousSibling= new Array();
-HTMLScriptElement.prototype.nextSibling="";
-HTMLScriptElement.prototype.attributes= new NamedNodeMap();
-HTMLScriptElement.prototype.ownerDocument= new HTMLDocument();
-HTMLScriptElement.prototype.insertBefore=function(arg1,arg2){};
-HTMLScriptElement.prototype.replaceChild=function(arg1,arg2){};
-HTMLScriptElement.prototype.removeChild=function(arg1){};
-HTMLScriptElement.prototype.appendChild=function(arg1){};
-HTMLScriptElement.prototype.hasChildNodes=function(){};
-HTMLScriptElement.prototype.cloneNode=function(arg1){};
-HTMLScriptElement.prototype.normalize=function(){};
-HTMLScriptElement.prototype.isSupported=function(arg1,arg2){};
-HTMLScriptElement.prototype.namespaceURI="";
-HTMLScriptElement.prototype.prefix="";
-HTMLScriptElement.prototype.localName="";
-HTMLScriptElement.prototype.hasAttributes=function(){};
-HTMLScriptElement.prototype.ELEMENT_NODE=0;
-HTMLScriptElement.prototype.ATTRIBUTE_NODE=0;
-HTMLScriptElement.prototype.TEXT_NODE=0;
-HTMLScriptElement.prototype.CDATA_SECTION_NODE=0;
-HTMLScriptElement.prototype.ENTITY_REFERENCE_NODE=0;
-HTMLScriptElement.prototype.ENTITY_NODE=0;
-HTMLScriptElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-HTMLScriptElement.prototype.COMMENT_NODE=0;
-HTMLScriptElement.prototype.DOCUMENT_NODE=0;
-HTMLScriptElement.prototype.DOCUMENT_TYPE_NODE=0;
-HTMLScriptElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-HTMLScriptElement.prototype.NOTATION_NODE=0;
-HTMLScriptElement.prototype.tagName="";
-HTMLScriptElement.prototype.getAttribute=function(arg1){};
-HTMLScriptElement.prototype.setAttribute=function(arg1,arg2){};
-HTMLScriptElement.prototype.removeAttribute=function(arg1){};
-HTMLScriptElement.prototype.getAttributeNode=function(arg1){};
-HTMLScriptElement.prototype.setAttributeNode=function(arg1){};
-HTMLScriptElement.prototype.removeAttributeNode=function(arg1){};
-HTMLScriptElement.prototype.getElementsByTagName=function(arg1){};
-HTMLScriptElement.prototype.getAttributeNS=function(arg1,arg2){};
-HTMLScriptElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-HTMLScriptElement.prototype.removeAttributeNS=function(arg1,arg2){};
-HTMLScriptElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-HTMLScriptElement.prototype.setAttributeNodeNS=function(arg1){};
-HTMLScriptElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-HTMLScriptElement.prototype.hasAttribute=function(arg1){};
-HTMLScriptElement.prototype.hasAttributeNS=function(arg1,arg2){};
-HTMLScriptElement.prototype.id="";
-HTMLScriptElement.prototype.title="";
-HTMLScriptElement.prototype.lang="";
-HTMLScriptElement.prototype.dir="";
-HTMLScriptElement.prototype.className="";
-HTMLScriptElement.prototype.text="";
-HTMLScriptElement.prototype.htmlFor="";
-HTMLScriptElement.prototype.event="";
-HTMLScriptElement.prototype.charset="";
-HTMLScriptElement.prototype.defer="";
-HTMLScriptElement.prototype.src="";
-HTMLScriptElement.prototype.type="";
-HTMLScriptElement.prototype.offsetTop="";
-HTMLScriptElement.prototype.offsetLeft="";
-HTMLScriptElement.prototype.offsetWidth="";
-HTMLScriptElement.prototype.offsetHeight="";
-HTMLScriptElement.prototype.offsetParent="";
-HTMLScriptElement.prototype.innerHTML="";
-HTMLScriptElement.prototype.scrollTop="";
-HTMLScriptElement.prototype.scrollLeft="";
-HTMLScriptElement.prototype.scrollHeight="";
-HTMLScriptElement.prototype.scrollWidth="";
-HTMLScriptElement.prototype.clientHeight="";
-HTMLScriptElement.prototype.clientWidth="";
-HTMLScriptElement.prototype.tabIndex=0;
-HTMLScriptElement.prototype.blur=function(){};
-HTMLScriptElement.prototype.focus=function(){};
-HTMLScriptElement.prototype.spellcheck="";
-HTMLScriptElement.prototype.style= new CSSStyleDeclaration();
-HTMLScriptElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-HTMLScriptElement.prototype.dispatchEvent=function(arg1){};
-HTMLScriptElement.prototype.baseURI="";
-HTMLScriptElement.prototype.compareDocumentPosition=function(arg1){};
-HTMLScriptElement.prototype.textContent="";
-HTMLScriptElement.prototype.isSameNode=function(arg1){};
-HTMLScriptElement.prototype.lookupPrefix=function(arg1){};
-HTMLScriptElement.prototype.isDefaultNamespace=function(arg1){};
-HTMLScriptElement.prototype.lookupNamespaceURI=function(arg1){};
-HTMLScriptElement.prototype.isEqualNode=function(arg1){};
-HTMLScriptElement.prototype.getFeature=function(arg1,arg2){};
-HTMLScriptElement.prototype.setUserData=function(arg1,arg2,arg3){};
-HTMLScriptElement.prototype.getUserData=function(arg1){};
-HTMLScriptElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-HTMLScriptElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-HTMLScriptElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-HTMLScriptElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-HTMLScriptElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-HTMLScriptElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-CSSStyleDeclaration.prototype= new Array();
-function CSSStyleDeclaration(){};
-CSSStyleDeclaration.prototype.length="";
-CSSStyleDeclaration.prototype.cssText="";
-CSSStyleDeclaration.prototype.getPropertyValue=function(arg1){};
-CSSStyleDeclaration.prototype.getPropertyCSSValue=function(arg1){};
-CSSStyleDeclaration.prototype.removeProperty=function(arg1){};
-CSSStyleDeclaration.prototype.getPropertyPriority=function(arg1){};
-CSSStyleDeclaration.prototype.setProperty=function(arg1,arg2,arg3){};
-CSSStyleDeclaration.prototype.item=function(arg1){};
-CSSStyleDeclaration.prototype.parentRule="";
-CSSStyleDeclaration.prototype.azimuth="";
-CSSStyleDeclaration.prototype.background="";
-CSSStyleDeclaration.prototype.backgroundAttachment="";
-CSSStyleDeclaration.prototype.backgroundColor="";
-CSSStyleDeclaration.prototype.backgroundImage="";
-CSSStyleDeclaration.prototype.backgroundPosition="";
-CSSStyleDeclaration.prototype.backgroundRepeat="";
-CSSStyleDeclaration.prototype.border="";
-CSSStyleDeclaration.prototype.borderCollapse="";
-CSSStyleDeclaration.prototype.borderColor="";
-CSSStyleDeclaration.prototype.borderSpacing="";
-CSSStyleDeclaration.prototype.borderStyle="";
-CSSStyleDeclaration.prototype.borderTop="";
-CSSStyleDeclaration.prototype.borderRight="";
-CSSStyleDeclaration.prototype.borderBottom="";
-CSSStyleDeclaration.prototype.borderLeft="";
-CSSStyleDeclaration.prototype.borderTopColor="";
-CSSStyleDeclaration.prototype.borderRightColor="";
-CSSStyleDeclaration.prototype.borderBottomColor="";
-CSSStyleDeclaration.prototype.borderLeftColor="";
-CSSStyleDeclaration.prototype.borderTopStyle="";
-CSSStyleDeclaration.prototype.borderRightStyle="";
-CSSStyleDeclaration.prototype.borderBottomStyle="";
-CSSStyleDeclaration.prototype.borderLeftStyle="";
-CSSStyleDeclaration.prototype.borderTopWidth="";
-CSSStyleDeclaration.prototype.borderRightWidth="";
-CSSStyleDeclaration.prototype.borderBottomWidth="";
-CSSStyleDeclaration.prototype.borderLeftWidth="";
-CSSStyleDeclaration.prototype.borderWidth="";
-CSSStyleDeclaration.prototype.bottom="";
-CSSStyleDeclaration.prototype.captionSide="";
-CSSStyleDeclaration.prototype.clear="";
-CSSStyleDeclaration.prototype.clip="";
-CSSStyleDeclaration.prototype.color="";
-CSSStyleDeclaration.prototype.content="";
-CSSStyleDeclaration.prototype.counterIncrement="";
-CSSStyleDeclaration.prototype.counterReset="";
-CSSStyleDeclaration.prototype.cue="";
-CSSStyleDeclaration.prototype.cueAfter="";
-CSSStyleDeclaration.prototype.cueBefore="";
-CSSStyleDeclaration.prototype.cursor="";
-CSSStyleDeclaration.prototype.direction="";
-CSSStyleDeclaration.prototype.display="";
-CSSStyleDeclaration.prototype.elevation="";
-CSSStyleDeclaration.prototype.emptyCells="";
-CSSStyleDeclaration.prototype.cssFloat="";
-CSSStyleDeclaration.prototype.font="";
-CSSStyleDeclaration.prototype.fontFamily="";
-CSSStyleDeclaration.prototype.fontSize="";
-CSSStyleDeclaration.prototype.fontSizeAdjust="";
-CSSStyleDeclaration.prototype.fontStretch="";
-CSSStyleDeclaration.prototype.fontStyle="";
-CSSStyleDeclaration.prototype.fontVariant="";
-CSSStyleDeclaration.prototype.fontWeight="";
-CSSStyleDeclaration.prototype.height="";
-CSSStyleDeclaration.prototype.left="";
-CSSStyleDeclaration.prototype.letterSpacing="";
-CSSStyleDeclaration.prototype.lineHeight="";
-CSSStyleDeclaration.prototype.listStyle="";
-CSSStyleDeclaration.prototype.listStyleImage="";
-CSSStyleDeclaration.prototype.listStylePosition="";
-CSSStyleDeclaration.prototype.listStyleType="";
-CSSStyleDeclaration.prototype.margin="";
-CSSStyleDeclaration.prototype.marginTop="";
-CSSStyleDeclaration.prototype.marginRight="";
-CSSStyleDeclaration.prototype.marginBottom="";
-CSSStyleDeclaration.prototype.marginLeft="";
-CSSStyleDeclaration.prototype.markerOffset="";
-CSSStyleDeclaration.prototype.marks="";
-CSSStyleDeclaration.prototype.maxHeight="";
-CSSStyleDeclaration.prototype.maxWidth="";
-CSSStyleDeclaration.prototype.minHeight="";
-CSSStyleDeclaration.prototype.minWidth="";
-CSSStyleDeclaration.prototype.orphans="";
-CSSStyleDeclaration.prototype.outline="";
-CSSStyleDeclaration.prototype.outlineColor="";
-CSSStyleDeclaration.prototype.outlineStyle="";
-CSSStyleDeclaration.prototype.outlineWidth="";
-CSSStyleDeclaration.prototype.overflow="";
-CSSStyleDeclaration.prototype.padding="";
-CSSStyleDeclaration.prototype.paddingTop="";
-CSSStyleDeclaration.prototype.paddingRight="";
-CSSStyleDeclaration.prototype.paddingBottom="";
-CSSStyleDeclaration.prototype.paddingLeft="";
-CSSStyleDeclaration.prototype.page="";
-CSSStyleDeclaration.prototype.pageBreakAfter="";
-CSSStyleDeclaration.prototype.pageBreakBefore="";
-CSSStyleDeclaration.prototype.pageBreakInside="";
-CSSStyleDeclaration.prototype.pause="";
-CSSStyleDeclaration.prototype.pauseAfter="";
-CSSStyleDeclaration.prototype.pauseBefore="";
-CSSStyleDeclaration.prototype.pitch="";
-CSSStyleDeclaration.prototype.pitchRange="";
-CSSStyleDeclaration.prototype.position="";
-CSSStyleDeclaration.prototype.quotes="";
-CSSStyleDeclaration.prototype.richness="";
-CSSStyleDeclaration.prototype.right="";
-CSSStyleDeclaration.prototype.size="";
-CSSStyleDeclaration.prototype.speak="";
-CSSStyleDeclaration.prototype.speakHeader="";
-CSSStyleDeclaration.prototype.speakNumeral="";
-CSSStyleDeclaration.prototype.speakPunctuation="";
-CSSStyleDeclaration.prototype.speechRate="";
-CSSStyleDeclaration.prototype.stress="";
-CSSStyleDeclaration.prototype.tableLayout="";
-CSSStyleDeclaration.prototype.textAlign="";
-CSSStyleDeclaration.prototype.textDecoration="";
-CSSStyleDeclaration.prototype.textIndent="";
-CSSStyleDeclaration.prototype.textShadow="";
-CSSStyleDeclaration.prototype.textTransform="";
-CSSStyleDeclaration.prototype.top="";
-CSSStyleDeclaration.prototype.unicodeBidi="";
-CSSStyleDeclaration.prototype.verticalAlign="";
-CSSStyleDeclaration.prototype.visibility="";
-CSSStyleDeclaration.prototype.voiceFamily="";
-CSSStyleDeclaration.prototype.volume="";
-CSSStyleDeclaration.prototype.whiteSpace="";
-CSSStyleDeclaration.prototype.widows="";
-CSSStyleDeclaration.prototype.width="";
-CSSStyleDeclaration.prototype.wordSpacing="";
-CSSStyleDeclaration.prototype.zIndex="";
-CSSStyleDeclaration.prototype.MozAppearance="";
-CSSStyleDeclaration.prototype.MozBackgroundClip="";
-CSSStyleDeclaration.prototype.MozBackgroundInlinePolicy="";
-CSSStyleDeclaration.prototype.MozBackgroundOrigin="";
-CSSStyleDeclaration.prototype.MozBinding="";
-CSSStyleDeclaration.prototype.MozBorderBottomColors="";
-CSSStyleDeclaration.prototype.MozBorderLeftColors="";
-CSSStyleDeclaration.prototype.MozBorderRightColors="";
-CSSStyleDeclaration.prototype.MozBorderTopColors="";
-CSSStyleDeclaration.prototype.MozBorderRadius="";
-CSSStyleDeclaration.prototype.MozBorderRadiusTopleft="";
-CSSStyleDeclaration.prototype.MozBorderRadiusTopright="";
-CSSStyleDeclaration.prototype.MozBorderRadiusBottomleft="";
-CSSStyleDeclaration.prototype.MozBorderRadiusBottomright="";
-CSSStyleDeclaration.prototype.MozBoxAlign="";
-CSSStyleDeclaration.prototype.MozBoxDirection="";
-CSSStyleDeclaration.prototype.MozBoxFlex="";
-CSSStyleDeclaration.prototype.MozBoxOrient="";
-CSSStyleDeclaration.prototype.MozBoxOrdinalGroup="";
-CSSStyleDeclaration.prototype.MozBoxPack="";
-CSSStyleDeclaration.prototype.MozBoxSizing="";
-CSSStyleDeclaration.prototype.MozColumnCount="";
-CSSStyleDeclaration.prototype.MozColumnWidth="";
-CSSStyleDeclaration.prototype.MozColumnGap="";
-CSSStyleDeclaration.prototype.MozFloatEdge="";
-CSSStyleDeclaration.prototype.MozForceBrokenImageIcon="";
-CSSStyleDeclaration.prototype.MozImageRegion="";
-CSSStyleDeclaration.prototype.MozMarginEnd="";
-CSSStyleDeclaration.prototype.MozMarginStart="";
-CSSStyleDeclaration.prototype.MozOpacity="";
-CSSStyleDeclaration.prototype.MozOutline="";
-CSSStyleDeclaration.prototype.MozOutlineColor="";
-CSSStyleDeclaration.prototype.MozOutlineRadius="";
-CSSStyleDeclaration.prototype.MozOutlineRadiusTopleft="";
-CSSStyleDeclaration.prototype.MozOutlineRadiusTopright="";
-CSSStyleDeclaration.prototype.MozOutlineRadiusBottomleft="";
-CSSStyleDeclaration.prototype.MozOutlineRadiusBottomright="";
-CSSStyleDeclaration.prototype.MozOutlineStyle="";
-CSSStyleDeclaration.prototype.MozOutlineWidth="";
-CSSStyleDeclaration.prototype.MozOutlineOffset="";
-CSSStyleDeclaration.prototype.MozPaddingEnd="";
-CSSStyleDeclaration.prototype.MozPaddingStart="";
-CSSStyleDeclaration.prototype.MozUserFocus="";
-CSSStyleDeclaration.prototype.MozUserInput="";
-CSSStyleDeclaration.prototype.MozUserModify="";
-CSSStyleDeclaration.prototype.MozUserSelect="";
-CSSStyleDeclaration.prototype.opacity="";
-CSSStyleDeclaration.prototype.outlineOffset="";
-CSSStyleDeclaration.prototype.overflowX="";
-CSSStyleDeclaration.prototype.overflowY="";
-HTMLBodyElement.prototype= new Array();
-function HTMLBodyElement(){};
-HTMLBodyElement.prototype.nodeName="";
-HTMLBodyElement.prototype.nodeValue="";
-HTMLBodyElement.prototype.nodeType=0;
-HTMLBodyElement.prototype.parentNode= new HTMLHtmlElement();
-HTMLBodyElement.prototype.childNodes= new NodeList();
-HTMLBodyElement.prototype.firstChild= new Array();
-HTMLBodyElement.prototype.lastChild= new HTMLScriptElement();
-HTMLBodyElement.prototype.previousSibling= new HTMLHeadElement();
-HTMLBodyElement.prototype.nextSibling="";
-HTMLBodyElement.prototype.attributes= new NamedNodeMap();
-HTMLBodyElement.prototype.ownerDocument= new HTMLDocument();
-HTMLBodyElement.prototype.insertBefore=function(arg1,arg2){};
-HTMLBodyElement.prototype.replaceChild=function(arg1,arg2){};
-HTMLBodyElement.prototype.removeChild=function(arg1){};
-HTMLBodyElement.prototype.appendChild=function(arg1){};
-HTMLBodyElement.prototype.hasChildNodes=function(){};
-HTMLBodyElement.prototype.cloneNode=function(arg1){};
-HTMLBodyElement.prototype.normalize=function(){};
-HTMLBodyElement.prototype.isSupported=function(arg1,arg2){};
-HTMLBodyElement.prototype.namespaceURI="";
-HTMLBodyElement.prototype.prefix="";
-HTMLBodyElement.prototype.localName="";
-HTMLBodyElement.prototype.hasAttributes=function(){};
-HTMLBodyElement.prototype.ELEMENT_NODE=0;
-HTMLBodyElement.prototype.ATTRIBUTE_NODE=0;
-HTMLBodyElement.prototype.TEXT_NODE=0;
-HTMLBodyElement.prototype.CDATA_SECTION_NODE=0;
-HTMLBodyElement.prototype.ENTITY_REFERENCE_NODE=0;
-HTMLBodyElement.prototype.ENTITY_NODE=0;
-HTMLBodyElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-HTMLBodyElement.prototype.COMMENT_NODE=0;
-HTMLBodyElement.prototype.DOCUMENT_NODE=0;
-HTMLBodyElement.prototype.DOCUMENT_TYPE_NODE=0;
-HTMLBodyElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-HTMLBodyElement.prototype.NOTATION_NODE=0;
-HTMLBodyElement.prototype.tagName="";
-HTMLBodyElement.prototype.getAttribute=function(arg1){};
-HTMLBodyElement.prototype.setAttribute=function(arg1,arg2){};
-HTMLBodyElement.prototype.removeAttribute=function(arg1){};
-HTMLBodyElement.prototype.getAttributeNode=function(arg1){};
-HTMLBodyElement.prototype.setAttributeNode=function(arg1){};
-HTMLBodyElement.prototype.removeAttributeNode=function(arg1){};
-HTMLBodyElement.prototype.getElementsByTagName=function(arg1){};
-HTMLBodyElement.prototype.getAttributeNS=function(arg1,arg2){};
-HTMLBodyElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-HTMLBodyElement.prototype.removeAttributeNS=function(arg1,arg2){};
-HTMLBodyElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-HTMLBodyElement.prototype.setAttributeNodeNS=function(arg1){};
-HTMLBodyElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-HTMLBodyElement.prototype.hasAttribute=function(arg1){};
-HTMLBodyElement.prototype.hasAttributeNS=function(arg1,arg2){};
-HTMLBodyElement.prototype.id="";
-HTMLBodyElement.prototype.title="";
-HTMLBodyElement.prototype.lang="";
-HTMLBodyElement.prototype.dir="";
-HTMLBodyElement.prototype.className="";
-HTMLBodyElement.prototype.aLink="";
-HTMLBodyElement.prototype.background="";
-HTMLBodyElement.prototype.bgColor="";
-HTMLBodyElement.prototype.link="";
-HTMLBodyElement.prototype.text="";
-HTMLBodyElement.prototype.vLink="";
-HTMLBodyElement.prototype.offsetTop="";
-HTMLBodyElement.prototype.offsetLeft="";
-HTMLBodyElement.prototype.offsetWidth=0;
-HTMLBodyElement.prototype.offsetHeight=0;
-HTMLBodyElement.prototype.offsetParent="";
-HTMLBodyElement.prototype.innerHTML="";
-HTMLBodyElement.prototype.scrollTop="";
-HTMLBodyElement.prototype.scrollLeft="";
-HTMLBodyElement.prototype.scrollHeight=0;
-HTMLBodyElement.prototype.scrollWidth=0;
-HTMLBodyElement.prototype.clientHeight=0;
-HTMLBodyElement.prototype.clientWidth=0;
-HTMLBodyElement.prototype.tabIndex=0;
-HTMLBodyElement.prototype.blur=function(){};
-HTMLBodyElement.prototype.focus=function(){};
-HTMLBodyElement.prototype.spellcheck="";
-HTMLBodyElement.prototype.style= new CSSStyleDeclaration();
-HTMLBodyElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-HTMLBodyElement.prototype.dispatchEvent=function(arg1){};
-HTMLBodyElement.prototype.baseURI="";
-HTMLBodyElement.prototype.compareDocumentPosition=function(arg1){};
-HTMLBodyElement.prototype.textContent="";
-HTMLBodyElement.prototype.isSameNode=function(arg1){};
-HTMLBodyElement.prototype.lookupPrefix=function(arg1){};
-HTMLBodyElement.prototype.isDefaultNamespace=function(arg1){};
-HTMLBodyElement.prototype.lookupNamespaceURI=function(arg1){};
-HTMLBodyElement.prototype.isEqualNode=function(arg1){};
-HTMLBodyElement.prototype.getFeature=function(arg1,arg2){};
-HTMLBodyElement.prototype.setUserData=function(arg1,arg2,arg3){};
-HTMLBodyElement.prototype.getUserData=function(arg1){};
-HTMLBodyElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-HTMLBodyElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-HTMLBodyElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-HTMLBodyElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-HTMLBodyElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-HTMLBodyElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-NamedNodeMap.prototype= new Array();
-function NamedNodeMap(){};
-NamedNodeMap.prototype.length="";
-NamedNodeMap.prototype.getNamedItem=function(arg1){};
-NamedNodeMap.prototype.setNamedItem=function(arg1){};
-NamedNodeMap.prototype.removeNamedItem=function(arg1){};
-NamedNodeMap.prototype.item=function(arg1){};
-NamedNodeMap.prototype.getNamedItemNS=function(arg1,arg2){};
-NamedNodeMap.prototype.setNamedItemNS=function(arg1){};
-NamedNodeMap.prototype.removeNamedItemNS=function(arg1,arg2){};
-DOMImplementation.prototype= new Array();
-function DOMImplementation(){};
-DOMImplementation.prototype.hasFeature=function(arg1,arg2){};
-DOMImplementation.prototype.createDocumentType=function(arg1,arg2,arg3){};
-DOMImplementation.prototype.createDocument=function(arg1,arg2,arg3){};
-HTMLCollection.prototype= new Array();
-function HTMLCollection(){};
-HTMLCollection.prototype.length="";
-HTMLCollection.prototype.item=function(arg1){};
-HTMLCollection.prototype.namedItem=function(arg1){};
-Package .prototype= new Array();
-function Package (){};
-/*
-Package sun.prototype= new Array();
-function Package sun(){};
-Package java.prototype= new Array();
-function Package java(){};
-Object.prototype= new Array();
-function Object(){};
-*/
-nsXPCComponents.prototype= new Array();
-function nsXPCComponents(){};
-nsXPCComponents.prototype.QueryInterface=function(arg1){};
-nsXPCComponents.prototype.interfaces= new nsXPCComponents_Interfaces();
-nsXPCComponents.prototype.interfacesByID= new nsXPCComponents_InterfacesByID();
-nsXPCComponents.prototype.classes="";
-nsXPCComponents.prototype.classesByID="";
-nsXPCComponents.prototype.stack="";
-nsXPCComponents.prototype.results="";
-nsXPCComponents.prototype.manager="";
-nsXPCComponents.prototype.utils="";
-nsXPCComponents.prototype.ID="";
-nsXPCComponents.prototype.Exception="";
-nsXPCComponents.prototype.Constructor="";
-nsXPCComponents.prototype.isSuccessCode=function(arg1){};
-nsXPCComponents.prototype.lookupMethod=function(){};
-nsXPCComponents.prototype.reportError=function(){};
-nsXPCComponents_Interfaces.prototype= new Array();
-function nsXPCComponents_Interfaces(){};
-nsXPCComponents_Interfaces.prototype.nsIDOMStyleSheet= new nsIDOMStyleSheet();
-nsXPCComponents_Interfaces.prototype.nsIWSDLPart= new nsIWSDLPart();
-nsXPCComponents_Interfaces.prototype.nsIUnicharStreamListener= new nsIUnicharStreamListener();
-nsXPCComponents_Interfaces.prototype.nsIContentSniffer= new nsIContentSniffer();
-nsXPCComponents_Interfaces.prototype.nsIXmlRpcClient= new nsIXmlRpcClient();
-nsXPCComponents_Interfaces.prototype.nsIInterfaceInfoToIDL= new nsIInterfaceInfoToIDL();
-nsXPCComponents_Interfaces.prototype.nsITimer= new nsITimer();
-nsXPCComponents_Interfaces.prototype.nsIWebServiceProxyFactory= new nsIWebServiceProxyFactory();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSXBLFormControl= new nsIDOMNSXBLFormControl();
-nsXPCComponents_Interfaces.prototype.nsIScrollBoxObject= new nsIScrollBoxObject();
-nsXPCComponents_Interfaces.prototype.nsICachingChannel= new nsICachingChannel();
-nsXPCComponents_Interfaces.prototype.nsIDOMXMLDocument= new nsIDOMXMLDocument();
-nsXPCComponents_Interfaces.prototype.nsICertSelect= new nsICertSelect();
-nsXPCComponents_Interfaces.prototype.nsIJARURI= new nsIJARURI();
-nsXPCComponents_Interfaces.prototype.nsIEditorSpellCheck_MOZILLA_1_8_BRANCH= new nsIEditorSpellCheck_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIZipReader= new nsIZipReader();
-nsXPCComponents_Interfaces.prototype.nsISOAPService= new nsISOAPService();
-nsXPCComponents_Interfaces.prototype.nsIPropertyBag2= new nsIPropertyBag2();
-nsXPCComponents_Interfaces.prototype.nsILocalFile= new nsILocalFile();
-nsXPCComponents_Interfaces.prototype.nsIDOMStorageItem= new nsIDOMStorageItem();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRInt16= new nsISupportsPRInt16();
-nsXPCComponents_Interfaces.prototype.nsIStorageStream= new nsIStorageStream();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSInput= new nsIDOMLSInput();
-nsXPCComponents_Interfaces.prototype.nsIDOMMutationEvent= new nsIDOMMutationEvent();
-nsXPCComponents_Interfaces.prototype.nsIDownloadObserver= new nsIDownloadObserver();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegLinetoRel= new nsIDOMSVGPathSegLinetoRel();
-nsXPCComponents_Interfaces.prototype.nsIDocumentLoader= new nsIDocumentLoader();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTableCellElement= new nsIDOMHTMLTableCellElement();
-nsXPCComponents_Interfaces.prototype.nsIException= new nsIException();
-nsXPCComponents_Interfaces.prototype.nsIUrlClassifierDBService= new nsIUrlClassifierDBService();
-nsXPCComponents_Interfaces.prototype.nsIRDFDataSource= new nsIRDFDataSource();
-nsXPCComponents_Interfaces.prototype.nsIPrefLocalizedString= new nsIPrefLocalizedString();
-nsXPCComponents_Interfaces.prototype.nsIJSIID= new nsIJSIID();
-nsXPCComponents_Interfaces.prototype.nsIHTMLObjectResizeListener= new nsIHTMLObjectResizeListener();
-nsXPCComponents_Interfaces.prototype.nsPIProtocolProxyService= new nsPIProtocolProxyService();
-nsXPCComponents_Interfaces.prototype.mozIStorageConnection= new mozIStorageConnection();
-nsXPCComponents_Interfaces.prototype.nsITextServicesFilter= new nsITextServicesFilter();
-nsXPCComponents_Interfaces.prototype.nsIWSPInterfaceInfoService= new nsIWSPInterfaceInfoService();
-nsXPCComponents_Interfaces.prototype.nsIWSDLSOAPBinding= new nsIWSDLSOAPBinding();
-nsXPCComponents_Interfaces.prototype.nsISimpleStreamListener= new nsISimpleStreamListener();
-nsXPCComponents_Interfaces.prototype.nsISearchContext= new nsISearchContext();
-nsXPCComponents_Interfaces.prototype.nsIX509Cert= new nsIX509Cert();
-nsXPCComponents_Interfaces.prototype.nsIRDFNode= new nsIRDFNode();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGDescElement= new nsIDOMSVGDescElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSRule= new nsIDOMCSSRule();
-nsXPCComponents_Interfaces.prototype.nsIProxyInfo= new nsIProxyInfo();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRUint32= new nsISupportsPRUint32();
-nsXPCComponents_Interfaces.prototype.nsICurrentCharsetListener= new nsICurrentCharsetListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGImageElement= new nsIDOMSVGImageElement();
-nsXPCComponents_Interfaces.prototype.nsIUrlClassifierDBServiceWorker= new nsIUrlClassifierDBServiceWorker();
-nsXPCComponents_Interfaces.prototype.nsISecureBrowserUI= new nsISecureBrowserUI();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLParagraphElement= new nsIDOMHTMLParagraphElement();
-nsXPCComponents_Interfaces.prototype.jsdIScriptHook= new jsdIScriptHook();
-nsXPCComponents_Interfaces.prototype.nsIRunnable= new nsIRunnable();
-nsXPCComponents_Interfaces.prototype.nsIDirectoryService= new nsIDirectoryService();
-nsXPCComponents_Interfaces.prototype.nsIDNSListener= new nsIDNSListener();
-nsXPCComponents_Interfaces.prototype.nsIPK11TokenDB= new nsIPK11TokenDB();
-nsXPCComponents_Interfaces.prototype.nsISchemaParticle= new nsISchemaParticle();
-nsXPCComponents_Interfaces.prototype.nsPIDNSService= new nsPIDNSService();
-nsXPCComponents_Interfaces.prototype.nsIXTFXMLVisual= new nsIXTFXMLVisual();
-nsXPCComponents_Interfaces.prototype.nsIMIMEHeaderParam= new nsIMIMEHeaderParam();
-nsXPCComponents_Interfaces.prototype.nsIScriptableInterfacesByID= new nsIScriptableInterfacesByID();
-nsXPCComponents_Interfaces.prototype.nsIInstallLocation= new nsIInstallLocation();
-nsXPCComponents_Interfaces.prototype.nsIGlobalHistory= new nsIGlobalHistory();
-nsXPCComponents_Interfaces.prototype.imgIContainerObserver= new imgIContainerObserver();
-nsXPCComponents_Interfaces.prototype.nsIStringEnumerator= new nsIStringEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIHttpAuthManager= new nsIHttpAuthManager();
-nsXPCComponents_Interfaces.prototype.nsIDOMSerializer= new nsIDOMSerializer();
-nsXPCComponents_Interfaces.prototype.nsICacheMetaDataVisitor= new nsICacheMetaDataVisitor();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLDocument= new nsIDOMNSHTMLDocument();
-nsXPCComponents_Interfaces.prototype.nsIGeneratingKeypairInfoDialogs= new nsIGeneratingKeypairInfoDialogs();
-nsXPCComponents_Interfaces.prototype.jsdIEphemeral= new jsdIEphemeral();
-nsXPCComponents_Interfaces.prototype.mozIStorageService= new mozIStorageService();
-nsXPCComponents_Interfaces.prototype.nsIPrompt= new nsIPrompt();
-nsXPCComponents_Interfaces.prototype.nsIDocShellTreeOwner_MOZILLA_1_8_BRANCH= new nsIDocShellTreeOwner_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIScriptableParamInfo= new nsIScriptableParamInfo();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLLegendElement= new nsIDOMHTMLLegendElement();
-nsXPCComponents_Interfaces.prototype.nsICache= new nsICache();
-nsXPCComponents_Interfaces.prototype.nsIWyciwygChannel= new nsIWyciwygChannel();
-nsXPCComponents_Interfaces.prototype.nsISecretDecoderRing= new nsISecretDecoderRing();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLFontElement= new nsIDOMHTMLFontElement();
-nsXPCComponents_Interfaces.prototype.nsIXULBuilderListener= new nsIXULBuilderListener();
-nsXPCComponents_Interfaces.prototype.nsIDownloader= new nsIDownloader();
-nsXPCComponents_Interfaces.prototype.nsIOutputStream= new nsIOutputStream();
-nsXPCComponents_Interfaces.prototype.nsIDOMCounter= new nsIDOMCounter();
-nsXPCComponents_Interfaces.prototype.nsIHTTPHeaderListener= new nsIHTTPHeaderListener();
-nsXPCComponents_Interfaces.prototype.jsdIObject= new jsdIObject();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSLocation= new nsIDOMNSLocation();
-nsXPCComponents_Interfaces.prototype.nsIRandomAccessIterator= new nsIRandomAccessIterator();
-nsXPCComponents_Interfaces.prototype.nsICertPickDialogs= new nsICertPickDialogs();
-nsXPCComponents_Interfaces.prototype.nsISupportsFloat= new nsISupportsFloat();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLSelectElement= new nsIDOMHTMLSelectElement();
-nsXPCComponents_Interfaces.prototype.nsIBufferedOutputStream= new nsIBufferedOutputStream();
-nsXPCComponents_Interfaces.prototype.nsISOAPCallCompletion= new nsISOAPCallCompletion();
-nsXPCComponents_Interfaces.prototype.nsIUnicharLineInputStream= new nsIUnicharLineInputStream();
-nsXPCComponents_Interfaces.prototype.nsITokenDialogs= new nsITokenDialogs();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentCSS= new nsIDOMDocumentCSS();
-nsXPCComponents_Interfaces.prototype.nsICRLInfo= new nsICRLInfo();
-nsXPCComponents_Interfaces.prototype.nsITransportSecurityInfo= new nsITransportSecurityInfo();
-nsXPCComponents_Interfaces.prototype.nsIBoxPaintManager= new nsIBoxPaintManager();
-nsXPCComponents_Interfaces.prototype.nsITextToSubURI= new nsITextToSubURI();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLFrameElement= new nsIDOMHTMLFrameElement();
-nsXPCComponents_Interfaces.prototype.nsITokenPasswordDialogs= new nsITokenPasswordDialogs();
-nsXPCComponents_Interfaces.prototype.nsIExternalProtocolService= new nsIExternalProtocolService();
-nsXPCComponents_Interfaces.prototype.nsIEnvironment= new nsIEnvironment();
-nsXPCComponents_Interfaces.prototype.nsIXMLHttpRequest= new nsIXMLHttpRequest();
-nsXPCComponents_Interfaces.prototype.nsIURIContentListener= new nsIURIContentListener();
-nsXPCComponents_Interfaces.prototype.nsIXPIProgressDialog= new nsIXPIProgressDialog();
-nsXPCComponents_Interfaces.prototype.nsISelectionPrivate= new nsISelectionPrivate();
-nsXPCComponents_Interfaces.prototype.nsISchemaType= new nsISchemaType();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGZoomEvent= new nsIDOMSVGZoomEvent();
-nsXPCComponents_Interfaces.prototype.nsICancelable= new nsICancelable();
-nsXPCComponents_Interfaces.prototype.nsIDOMAbstractView= new nsIDOMAbstractView();
-nsXPCComponents_Interfaces.prototype.nsIJARChannel= new nsIJARChannel();
-nsXPCComponents_Interfaces.prototype.nsIMemory= new nsIMemory();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSSerializerFilter= new nsIDOMLSSerializerFilter();
-nsXPCComponents_Interfaces.prototype.nsIBinaryOutputStream= new nsIBinaryOutputStream();
-nsXPCComponents_Interfaces.prototype.nsIDOMDOMStringList= new nsIDOMDOMStringList();
-nsXPCComponents_Interfaces.prototype.nsIImageLoadingContent= new nsIImageLoadingContent();
-nsXPCComponents_Interfaces.prototype.nsIExceptionService= new nsIExceptionService();
-nsXPCComponents_Interfaces.prototype.nsIFileOutputStream= new nsIFileOutputStream();
-nsXPCComponents_Interfaces.prototype.nsISchemaAnyAttribute= new nsISchemaAnyAttribute();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSMediaRule= new nsIDOMCSSMediaRule();
-nsXPCComponents_Interfaces.prototype.nsIErrorService= new nsIErrorService();
-nsXPCComponents_Interfaces.prototype.nsIRDFInMemoryDataSource= new nsIRDFInMemoryDataSource();
-nsXPCComponents_Interfaces.prototype.nsIFeed= new nsIFeed();
-nsXPCComponents_Interfaces.prototype.nsIContentViewer_MOZILLA_1_8_BRANCH= new nsIContentViewer_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIEditorMailSupport= new nsIEditorMailSupport();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLPreElement= new nsIDOMHTMLPreElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMNavigator_MOZILLA_1_8_BRANCH= new nsIDOMNavigator_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.gfxIImageFrame= new gfxIImageFrame();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleSelectable= new nsIAccessibleSelectable();
-nsXPCComponents_Interfaces.prototype.nsPICommandUpdater= new nsPICommandUpdater();
-nsXPCComponents_Interfaces.prototype.nsIDownload= new nsIDownload();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULControlElement= new nsIDOMXULControlElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedNumberList= new nsIDOMSVGAnimatedNumberList();
-nsXPCComponents_Interfaces.prototype.nsIDocumentCharsetInfo= new nsIDocumentCharsetInfo();
-nsXPCComponents_Interfaces.prototype.nsIContentViewerContainer= new nsIContentViewerContainer();
-nsXPCComponents_Interfaces.prototype.nsIAppStartup= new nsIAppStartup();
-nsXPCComponents_Interfaces.prototype.nsICookie2= new nsICookie2();
-nsXPCComponents_Interfaces.prototype.nsIBrowserInstance= new nsIBrowserInstance();
-nsXPCComponents_Interfaces.prototype.nsIProtocolProxyService= new nsIProtocolProxyService();
-nsXPCComponents_Interfaces.prototype.nsIDOMCDATASection= new nsIDOMCDATASection();
-nsXPCComponents_Interfaces.prototype.nsIJVMConfigManager= new nsIJVMConfigManager();
-nsXPCComponents_Interfaces.prototype.nsISOAPPortBinding= new nsISOAPPortBinding();
-nsXPCComponents_Interfaces.prototype.nsIContentHandler= new nsIContentHandler();
-nsXPCComponents_Interfaces.prototype.nsISchemaComponent= new nsISchemaComponent();
-nsXPCComponents_Interfaces.prototype.nsIPrintSettingsWin= new nsIPrintSettingsWin();
-nsXPCComponents_Interfaces.prototype.nsIDownloadProgressListener= new nsIDownloadProgressListener();
-nsXPCComponents_Interfaces.prototype.nsIMozIconURI= new nsIMozIconURI();
-nsXPCComponents_Interfaces.prototype.nsISHistoryInternal= new nsISHistoryInternal();
-nsXPCComponents_Interfaces.prototype.nsIURIFixup= new nsIURIFixup();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegLinetoHorizontalRel= new nsIDOMSVGPathSegLinetoHorizontalRel();
-nsXPCComponents_Interfaces.prototype.nsIXPIDialogService= new nsIXPIDialogService();
-nsXPCComponents_Interfaces.prototype.nsIEditActionListener= new nsIEditActionListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLAppletElement= new nsIDOMHTMLAppletElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMAttr= new nsIDOMAttr();
-nsXPCComponents_Interfaces.prototype.nsIDOMNotation= new nsIDOMNotation();
-nsXPCComponents_Interfaces.prototype.nsIProxyObjectManager= new nsIProxyObjectManager();
-nsXPCComponents_Interfaces.prototype.nsIPassword= new nsIPassword();
-nsXPCComponents_Interfaces.prototype.nsIProfileLock= new nsIProfileLock();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLCanvasElement= new nsIDOMHTMLCanvasElement();
-nsXPCComponents_Interfaces.prototype.nsISelectElement= new nsISelectElement();
-nsXPCComponents_Interfaces.prototype.nsIPopupBoxObject= new nsIPopupBoxObject();
-nsXPCComponents_Interfaces.prototype.nsIFind= new nsIFind();
-nsXPCComponents_Interfaces.prototype.nsIXTFPrivate= new nsIXTFPrivate();
-nsXPCComponents_Interfaces.prototype.nsIPlaintextEditor= new nsIPlaintextEditor();
-nsXPCComponents_Interfaces.prototype.nsIForwardIterator= new nsIForwardIterator();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLSelectElement= new nsIDOMNSHTMLSelectElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLModElement= new nsIDOMHTMLModElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSMozDocumentRule= new nsIDOMCSSMozDocumentRule();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGEllipseElement= new nsIDOMSVGEllipseElement();
-nsXPCComponents_Interfaces.prototype.jsdIContext= new jsdIContext();
-nsXPCComponents_Interfaces.prototype.nsIDOMPopupBlockedEvent_MOZILLA_1_8_BRANCH= new nsIDOMPopupBlockedEvent_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentTraversal= new nsIDOMDocumentTraversal();
-nsXPCComponents_Interfaces.prototype.nsIXTFAttributeHandler= new nsIXTFAttributeHandler();
-nsXPCComponents_Interfaces.prototype.inIFlasher= new inIFlasher();
-nsXPCComponents_Interfaces.prototype.nsISupportsWeakReference= new nsISupportsWeakReference();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGElement= new nsIDOMSVGElement();
-nsXPCComponents_Interfaces.prototype.nsIDOM3DocumentEvent= new nsIDOM3DocumentEvent();
-nsXPCComponents_Interfaces.prototype.nsIRDFRemoteDataSource= new nsIRDFRemoteDataSource();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegArcAbs= new nsIDOMSVGPathSegArcAbs();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULButtonElement= new nsIDOMXULButtonElement();
-nsXPCComponents_Interfaces.prototype.nsIClipboardDragDropHooks= new nsIClipboardDragDropHooks();
-nsXPCComponents_Interfaces.prototype.nsIDOMRect= new nsIDOMRect();
-nsXPCComponents_Interfaces.prototype.nsICRLManager= new nsICRLManager();
-nsXPCComponents_Interfaces.prototype.imgIEncoder= new imgIEncoder();
-nsXPCComponents_Interfaces.prototype.nsIX509Cert3= new nsIX509Cert3();
-nsXPCComponents_Interfaces.prototype.nsISearchEngine= new nsISearchEngine();
-nsXPCComponents_Interfaces.prototype.nsIUrlListManagerCallback= new nsIUrlListManagerCallback();
-nsXPCComponents_Interfaces.prototype.nsIDOMEntity= new nsIDOMEntity();
-nsXPCComponents_Interfaces.prototype.nsIDOMXPathNamespace= new nsIDOMXPathNamespace();
-nsXPCComponents_Interfaces.prototype.nsIBookmarksService= new nsIBookmarksService();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLHRElement= new nsIDOMHTMLHRElement();
-nsXPCComponents_Interfaces.prototype.nsIRDFContainerUtils= new nsIRDFContainerUtils();
-nsXPCComponents_Interfaces.prototype.nsISHistoryListener= new nsISHistoryListener();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserFocus= new nsIWebBrowserFocus();
-nsXPCComponents_Interfaces.prototype.nsISAXErrorHandler= new nsISAXErrorHandler();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoCubicAbs= new nsIDOMSVGPathSegCurvetoCubicAbs();
-nsXPCComponents_Interfaces.prototype.nsIHTMLObjectResizer= new nsIHTMLObjectResizer();
-nsXPCComponents_Interfaces.prototype.nsIXTFXULVisual= new nsIXTFXULVisual();
-nsXPCComponents_Interfaces.prototype.nsIInputStreamCallback= new nsIInputStreamCallback();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRUint64= new nsISupportsPRUint64();
-nsXPCComponents_Interfaces.prototype.nsIClipboard= new nsIClipboard();
-nsXPCComponents_Interfaces.prototype.inIDOMUtils= new inIDOMUtils();
-nsXPCComponents_Interfaces.prototype.nsIXmlRpcFault= new nsIXmlRpcFault();
-nsXPCComponents_Interfaces.prototype.nsIDirIndexListener= new nsIDirIndexListener();
-nsXPCComponents_Interfaces.prototype.nsITransactionListener= new nsITransactionListener();
-nsXPCComponents_Interfaces.prototype.nsICookiePermission= new nsICookiePermission();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSResourceResolver= new nsIDOMLSResourceResolver();
-nsXPCComponents_Interfaces.prototype.nsIContentPolicy= new nsIContentPolicy();
-nsXPCComponents_Interfaces.prototype.nsIHelperAppLauncher= new nsIHelperAppLauncher();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSEventTarget= new nsIDOMNSEventTarget();
-nsXPCComponents_Interfaces.prototype.nsIRelativeFilePref= new nsIRelativeFilePref();
-nsXPCComponents_Interfaces.prototype.nsISidebar_MOZILLA_1_8_BRANCH= new nsISidebar_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIRDFObserver= new nsIRDFObserver();
-nsXPCComponents_Interfaces.prototype.nsIDOMPageTransitionEvent= new nsIDOMPageTransitionEvent();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowser= new nsIWebBrowser();
-nsXPCComponents_Interfaces.prototype.nsIRDFXMLSource= new nsIRDFXMLSource();
-nsXPCComponents_Interfaces.prototype.nsIDOMElement= new nsIDOMElement();
-nsXPCComponents_Interfaces.prototype.nsIRegistryEnumerator= new nsIRegistryEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTextElement= new nsIDOMSVGTextElement();
-nsXPCComponents_Interfaces.prototype.jsdIFilter= new jsdIFilter();
-nsXPCComponents_Interfaces.prototype.nsIHTMLEditor= new nsIHTMLEditor();
-nsXPCComponents_Interfaces.prototype.nsISchemaUnionType= new nsISchemaUnionType();
-nsXPCComponents_Interfaces.prototype.nsIRDFPropagatableDataSource= new nsIRDFPropagatableDataSource();
-nsXPCComponents_Interfaces.prototype.nsIContentViewer= new nsIContentViewer();
-nsXPCComponents_Interfaces.prototype.nsIDOMJSWindow= new nsIDOMJSWindow();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedLengthList= new nsIDOMSVGAnimatedLengthList();
-nsXPCComponents_Interfaces.prototype.nsIStreamConverterService= new nsIStreamConverterService();
-nsXPCComponents_Interfaces.prototype.nsIFastLoadReadControl= new nsIFastLoadReadControl();
-nsXPCComponents_Interfaces.prototype.nsICommandController= new nsICommandController();
-nsXPCComponents_Interfaces.prototype.nsIFileProtocolHandler= new nsIFileProtocolHandler();
-nsXPCComponents_Interfaces.prototype.nsILocalSearchService= new nsILocalSearchService();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteController= new nsIAutoCompleteController();
-nsXPCComponents_Interfaces.prototype.nsIWSDLLoader= new nsIWSDLLoader();
-nsXPCComponents_Interfaces.prototype.nsIPrefBranch= new nsIPrefBranch();
-nsXPCComponents_Interfaces.prototype.nsIDOMPlugin= new nsIDOMPlugin();
-nsXPCComponents_Interfaces.prototype.nsISelectionListener= new nsISelectionListener();
-nsXPCComponents_Interfaces.prototype.nsIMIMEInputStream= new nsIMIMEInputStream();
-nsXPCComponents_Interfaces.prototype.nsIWindowDataSource= new nsIWindowDataSource();
-nsXPCComponents_Interfaces.prototype.nsIXMLContentBuilder= new nsIXMLContentBuilder();
-nsXPCComponents_Interfaces.prototype.nsIStreamLoaderObserver= new nsIStreamLoaderObserver();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLElement= new nsIDOMHTMLElement();
-nsXPCComponents_Interfaces.prototype.nsIXTFElementFactory= new nsIXTFElementFactory();
-nsXPCComponents_Interfaces.prototype.nsIPasswordManagerInternal= new nsIPasswordManagerInternal();
-nsXPCComponents_Interfaces.prototype.nsIStyleSheetService= new nsIStyleSheetService();
-nsXPCComponents_Interfaces.prototype.nsISOAPCall= new nsISOAPCall();
-nsXPCComponents_Interfaces.prototype.nsICharsetConverterManager= new nsICharsetConverterManager();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTextPositioningElement= new nsIDOMSVGTextPositioningElement();
-nsXPCComponents_Interfaces.prototype.nsIBrowserHandler= new nsIBrowserHandler();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSDocument= new nsIDOMNSDocument();
-nsXPCComponents_Interfaces.prototype.nsIInputStreamTee= new nsIInputStreamTee();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTitleElement= new nsIDOMSVGTitleElement();
-nsXPCComponents_Interfaces.prototype.nsIXmlRpcClientListener= new nsIXmlRpcClientListener();
-nsXPCComponents_Interfaces.prototype.nsIFontEnumerator= new nsIFontEnumerator();
-nsXPCComponents_Interfaces.prototype.nsISound= new nsISound();
-nsXPCComponents_Interfaces.prototype.nsIAppShellService= new nsIAppShellService();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoCubicSmoothAbs= new nsIDOMSVGPathSegCurvetoCubicSmoothAbs();
-nsXPCComponents_Interfaces.prototype.nsIDOMDOMConfiguration= new nsIDOMDOMConfiguration();
-nsXPCComponents_Interfaces.prototype.nsIPasswordManager= new nsIPasswordManager();
-nsXPCComponents_Interfaces.prototype.nsIPKCS11Module= new nsIPKCS11Module();
-nsXPCComponents_Interfaces.prototype.nsIFormatConverter= new nsIFormatConverter();
-nsXPCComponents_Interfaces.prototype.nsIChannel= new nsIChannel();
-nsXPCComponents_Interfaces.prototype.nsIDOMParser= new nsIDOMParser();
-nsXPCComponents_Interfaces.prototype.imgILoader= new imgILoader();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedTransformList= new nsIDOMSVGAnimatedTransformList();
-nsXPCComponents_Interfaces.prototype.nsIBrowserGlue= new nsIBrowserGlue();
-nsXPCComponents_Interfaces.prototype.nsIExternalProtocolHandler= new nsIExternalProtocolHandler();
-nsXPCComponents_Interfaces.prototype.nsIXTFElement= new nsIXTFElement();
-nsXPCComponents_Interfaces.prototype.nsIFilePicker= new nsIFilePicker();
-nsXPCComponents_Interfaces.prototype.nsIPropertyElement= new nsIPropertyElement();
-nsXPCComponents_Interfaces.prototype.nsIStandardURL= new nsIStandardURL();
-nsXPCComponents_Interfaces.prototype.nsIRDFPurgeableDataSource= new nsIRDFPurgeableDataSource();
-nsXPCComponents_Interfaces.prototype.nsIExtendedExpatSink= new nsIExtendedExpatSink();
-nsXPCComponents_Interfaces.prototype.nsISeekableStream= new nsISeekableStream();
-nsXPCComponents_Interfaces.prototype.nsISessionStartup= new nsISessionStartup();
-nsXPCComponents_Interfaces.prototype.nsIWindowMediator= new nsIWindowMediator();
-nsXPCComponents_Interfaces.prototype.nsIDocumentLoaderFactory= new nsIDocumentLoaderFactory();
-nsXPCComponents_Interfaces.prototype.nsIStreamListenerTee= new nsIStreamListenerTee();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSCSS2Properties= new nsIDOMNSCSS2Properties();
-nsXPCComponents_Interfaces.prototype.nsINSSCertCache= new nsINSSCertCache();
-nsXPCComponents_Interfaces.prototype.nsISyncStreamListener= new nsISyncStreamListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSParserFilter= new nsIDOMLSParserFilter();
-nsXPCComponents_Interfaces.prototype.nsIPKIParamBlock= new nsIPKIParamBlock();
-nsXPCComponents_Interfaces.prototype.nsIScriptError= new nsIScriptError();
-nsXPCComponents_Interfaces.prototype.nsIXULWindow= new nsIXULWindow();
-nsXPCComponents_Interfaces.prototype.nsIEventTarget= new nsIEventTarget();
-nsXPCComponents_Interfaces.prototype.nsIURLParser= new nsIURLParser();
-nsXPCComponents_Interfaces.prototype.mozISpellI18NManager= new mozISpellI18NManager();
-nsXPCComponents_Interfaces.prototype.nsIX509CertValidity= new nsIX509CertValidity();
-nsXPCComponents_Interfaces.prototype.nsISchemaFacet= new nsISchemaFacet();
-nsXPCComponents_Interfaces.prototype.nsIModule= new nsIModule();
-nsXPCComponents_Interfaces.prototype.nsINativeAppSupport= new nsINativeAppSupport();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGMetadataElement= new nsIDOMSVGMetadataElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMMimeTypeArray= new nsIDOMMimeTypeArray();
-nsXPCComponents_Interfaces.prototype.nsIComponentManagerObsolete= new nsIComponentManagerObsolete();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLLIElement= new nsIDOMHTMLLIElement();
-nsXPCComponents_Interfaces.prototype.nsIWindowWatcher= new nsIWindowWatcher();
-nsXPCComponents_Interfaces.prototype.nsIASN1Object= new nsIASN1Object();
-nsXPCComponents_Interfaces.prototype.nsIPrintProgress= new nsIPrintProgress();
-nsXPCComponents_Interfaces.prototype.nsIXPTLoaderSink= new nsIXPTLoaderSink();
-nsXPCComponents_Interfaces.prototype.nsIWindowsShellService= new nsIWindowsShellService();
-nsXPCComponents_Interfaces.prototype.nsIDOMMouseEvent= new nsIDOMMouseEvent();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRInt32= new nsISupportsPRInt32();
-nsXPCComponents_Interfaces.prototype.nsIApplicationUpdateService= new nsIApplicationUpdateService();
-nsXPCComponents_Interfaces.prototype.nsIInterfaceRequestor= new nsIInterfaceRequestor();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSProgressEvent= new nsIDOMLSProgressEvent();
-nsXPCComponents_Interfaces.prototype.nsITransactionManager= new nsITransactionManager();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLOptGroupElement= new nsIDOMHTMLOptGroupElement();
-nsXPCComponents_Interfaces.prototype.nsICommandManager= new nsICommandManager();
-nsXPCComponents_Interfaces.prototype.nsIIDNService= new nsIIDNService();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTitleElement= new nsIDOMHTMLTitleElement();
-nsXPCComponents_Interfaces.prototype.nsITimelineService= new nsITimelineService();
-nsXPCComponents_Interfaces.prototype.nsIUnicharOutputStream= new nsIUnicharOutputStream();
-nsXPCComponents_Interfaces.prototype.nsIStackFrame= new nsIStackFrame();
-nsXPCComponents_Interfaces.prototype.nsIDataType= new nsIDataType();
-nsXPCComponents_Interfaces.prototype.nsIHttpActivityObserver= new nsIHttpActivityObserver();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSStyleSheet= new nsIDOMCSSStyleSheet();
-nsXPCComponents_Interfaces.prototype.nsIDOMCryptoDialogs= new nsIDOMCryptoDialogs();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGGradientElement= new nsIDOMSVGGradientElement();
-nsXPCComponents_Interfaces.prototype.nsICookieManager= new nsICookieManager();
-nsXPCComponents_Interfaces.prototype.nsIConverterOutputStream= new nsIConverterOutputStream();
-nsXPCComponents_Interfaces.prototype.nsIInputStreamPump= new nsIInputStreamPump();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSParser= new nsIDOMLSParser();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSStyleDeclaration= new nsIDOMCSSStyleDeclaration();
-nsXPCComponents_Interfaces.prototype.nsIFlavorDataProvider= new nsIFlavorDataProvider();
-nsXPCComponents_Interfaces.prototype.nsISOAPHeaderBlock= new nsISOAPHeaderBlock();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTableSectionElement= new nsIDOMHTMLTableSectionElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMNode= new nsIDOMNode();
-nsXPCComponents_Interfaces.prototype.imgICache= new imgICache();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGZoomAndPan= new nsIDOMSVGZoomAndPan();
-nsXPCComponents_Interfaces.prototype.nsIDOMStorageWindow= new nsIDOMStorageWindow();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRUint8= new nsISupportsPRUint8();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGStyleElement= new nsIDOMSVGStyleElement();
-nsXPCComponents_Interfaces.prototype.nsIURILoader= new nsIURILoader();
-nsXPCComponents_Interfaces.prototype.nsICommandLineHandler= new nsICommandLineHandler();
-nsXPCComponents_Interfaces.prototype.nsIDocNavStartProgressListener= new nsIDocNavStartProgressListener();
-nsXPCComponents_Interfaces.prototype.nsIRegistryNode= new nsIRegistryNode();
-nsXPCComponents_Interfaces.prototype.nsITransferable= new nsITransferable();
-nsXPCComponents_Interfaces.prototype.nsIEditingSession= new nsIEditingSession();
-nsXPCComponents_Interfaces.prototype.nsIAccessibilityService= new nsIAccessibilityService();
-nsXPCComponents_Interfaces.prototype.nsIUpdatePatch= new nsIUpdatePatch();
-nsXPCComponents_Interfaces.prototype.nsITransportEventSink= new nsITransportEventSink();
-nsXPCComponents_Interfaces.prototype.nsIDOMCustomEvent= new nsIDOMCustomEvent();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRUint16= new nsISupportsPRUint16();
-nsXPCComponents_Interfaces.prototype.nsIUrlListManager= new nsIUrlListManager();
-nsXPCComponents_Interfaces.prototype.nsIWSDLOperation= new nsIWSDLOperation();
-nsXPCComponents_Interfaces.prototype.nsIWebProgressListener2= new nsIWebProgressListener2();
-nsXPCComponents_Interfaces.prototype.nsISOAPDecoder= new nsISOAPDecoder();
-nsXPCComponents_Interfaces.prototype.nsISAXXMLReader= new nsISAXXMLReader();
-nsXPCComponents_Interfaces.prototype.nsIRecyclingAllocator= new nsIRecyclingAllocator();
-nsXPCComponents_Interfaces.prototype.nsIWebServiceProxy= new nsIWebServiceProxy();
-nsXPCComponents_Interfaces.prototype.nsIRDFXMLSink= new nsIRDFXMLSink();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLIFrameElement= new nsIDOMHTMLIFrameElement();
-nsXPCComponents_Interfaces.prototype.nsIXULBrowserWindow= new nsIXULBrowserWindow();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPointList= new nsIDOMSVGPointList();
-nsXPCComponents_Interfaces.prototype.nsIUserInfo= new nsIUserInfo();
-nsXPCComponents_Interfaces.prototype.nsICacheEntryDescriptor= new nsICacheEntryDescriptor();
-nsXPCComponents_Interfaces.prototype.nsIHTMLAbsPosEditor= new nsIHTMLAbsPosEditor();
-nsXPCComponents_Interfaces.prototype.nsIXTFVisual= new nsIXTFVisual();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteObserver= new nsIAutoCompleteObserver();
-nsXPCComponents_Interfaces.prototype.nsIFormHistory2= new nsIFormHistory2();
-nsXPCComponents_Interfaces.prototype.nsIFileSpec= new nsIFileSpec();
-nsXPCComponents_Interfaces.prototype.nsIPasswordInternal= new nsIPasswordInternal();
-nsXPCComponents_Interfaces.prototype.nsISecurityWarningDialogs= new nsISecurityWarningDialogs();
-nsXPCComponents_Interfaces.prototype.nsISOAPBlock= new nsISOAPBlock();
-nsXPCComponents_Interfaces.prototype.nsIImageDocument= new nsIImageDocument();
-nsXPCComponents_Interfaces.prototype.nsITransport= new nsITransport();
-nsXPCComponents_Interfaces.prototype.nsISOAPFault= new nsISOAPFault();
-nsXPCComponents_Interfaces.prototype.nsIScriptContextOwner= new nsIScriptContextOwner();
-nsXPCComponents_Interfaces.prototype.jsdICallHook= new jsdICallHook();
-nsXPCComponents_Interfaces.prototype.nsISOAPEncodingRegistry= new nsISOAPEncodingRegistry();
-nsXPCComponents_Interfaces.prototype.nsICategoryManager= new nsICategoryManager();
-nsXPCComponents_Interfaces.prototype.nsIBidirectionalIterator= new nsIBidirectionalIterator();
-nsXPCComponents_Interfaces.prototype.nsIWindowMediatorListener= new nsIWindowMediatorListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMXPathResult= new nsIDOMXPathResult();
-nsXPCComponents_Interfaces.prototype.nsIXTFSVGVisualWrapper= new nsIXTFSVGVisualWrapper();
-nsXPCComponents_Interfaces.prototype.nsIFeedGenerator= new nsIFeedGenerator();
-nsXPCComponents_Interfaces.prototype.nsIEditor= new nsIEditor();
-nsXPCComponents_Interfaces.prototype.nsIDOMHistory= new nsIDOMHistory();
-nsXPCComponents_Interfaces.prototype.nsIZipEntry= new nsIZipEntry();
-nsXPCComponents_Interfaces.prototype.nsIWebContentHandlerRegistrar= new nsIWebContentHandlerRegistrar();
-nsXPCComponents_Interfaces.prototype.mozIStorageStatementWrapper= new mozIStorageStatementWrapper();
-nsXPCComponents_Interfaces.prototype.nsIFontPackageProxy= new nsIFontPackageProxy();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSOutput= new nsIDOMLSOutput();
-nsXPCComponents_Interfaces.prototype.nsIUnicharInputStream= new nsIUnicharInputStream();
-nsXPCComponents_Interfaces.prototype.nsIFontList= new nsIFontList();
-nsXPCComponents_Interfaces.prototype.nsIScriptLoader= new nsIScriptLoader();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULSelectControlElement= new nsIDOMXULSelectControlElement();
-nsXPCComponents_Interfaces.prototype.nsIVariant= new nsIVariant();
-nsXPCComponents_Interfaces.prototype.nsIDOMCanvasPattern= new nsIDOMCanvasPattern();
-nsXPCComponents_Interfaces.prototype.nsISupportsVoid= new nsISupportsVoid();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSImportRule= new nsIDOMCSSImportRule();
-nsXPCComponents_Interfaces.prototype.nsISchemaModelGroup= new nsISchemaModelGroup();
-nsXPCComponents_Interfaces.prototype.nsIConsoleMessage= new nsIConsoleMessage();
-nsXPCComponents_Interfaces.prototype.nsISAXLocator= new nsISAXLocator();
-nsXPCComponents_Interfaces.prototype.inIDOMView= new inIDOMView();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLCollection= new nsIDOMHTMLCollection();
-nsXPCComponents_Interfaces.prototype.nsICacheDeviceInfo= new nsICacheDeviceInfo();
-nsXPCComponents_Interfaces.prototype.nsIFeedPerson= new nsIFeedPerson();
-nsXPCComponents_Interfaces.prototype.nsIDOMEvent= new nsIDOMEvent();
-nsXPCComponents_Interfaces.prototype.nsICacheVisitor= new nsICacheVisitor();
-nsXPCComponents_Interfaces.prototype.nsISerializable= new nsISerializable();
-nsXPCComponents_Interfaces.prototype.nsINonBlockingAlertService= new nsINonBlockingAlertService();
-nsXPCComponents_Interfaces.prototype.nsICertificateDialogs= new nsICertificateDialogs();
-nsXPCComponents_Interfaces.prototype.nsIInputIterator= new nsIInputIterator();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoQuadraticSmoothRel= new nsIDOMSVGPathSegCurvetoQuadraticSmoothRel();
-nsXPCComponents_Interfaces.prototype.nsIInternetSearchService= new nsIInternetSearchService();
-nsXPCComponents_Interfaces.prototype.nsIHttpAuthenticator= new nsIHttpAuthenticator();
-nsXPCComponents_Interfaces.prototype.nsIAddonUpdateListener= new nsIAddonUpdateListener();
-nsXPCComponents_Interfaces.prototype.nsIEditorLogging= new nsIEditorLogging();
-nsXPCComponents_Interfaces.prototype.nsIZipReaderCache= new nsIZipReaderCache();
-nsXPCComponents_Interfaces.prototype.nsIAsyncStreamCopier= new nsIAsyncStreamCopier();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULLabeledControlElement= new nsIDOMXULLabeledControlElement();
-nsXPCComponents_Interfaces.prototype.nsICookieAcceptDialog= new nsICookieAcceptDialog();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedEnumeration= new nsIDOMSVGAnimatedEnumeration();
-nsXPCComponents_Interfaces.prototype.nsIPKCS11ModuleDB= new nsIPKCS11ModuleDB();
-nsXPCComponents_Interfaces.prototype.nsISecretDecoderRingConfig= new nsISecretDecoderRingConfig();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSUnknownRule= new nsIDOMCSSUnknownRule();
-nsXPCComponents_Interfaces.prototype.nsIXPTLoader= new nsIXPTLoader();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedString= new nsIDOMSVGAnimatedString();
-nsXPCComponents_Interfaces.prototype.nsIContentFilter= new nsIContentFilter();
-nsXPCComponents_Interfaces.prototype.nsIWSDLLoadListener= new nsIWSDLLoadListener();
-nsXPCComponents_Interfaces.prototype.mozIStorageStatementRow= new mozIStorageStatementRow();
-nsXPCComponents_Interfaces.prototype.imgIDecoderObserver_MOZILLA_1_8_BRANCH= new imgIDecoderObserver_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.mozISpellCheckingEngine= new mozISpellCheckingEngine();
-nsXPCComponents_Interfaces.prototype.nsISOAPMessageBinding= new nsISOAPMessageBinding();
-nsXPCComponents_Interfaces.prototype.nsICommandHandlerInit= new nsICommandHandlerInit();
-nsXPCComponents_Interfaces.prototype.mozIStorageDataSet= new mozIStorageDataSet();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLFrameElement= new nsIDOMNSHTMLFrameElement();
-nsXPCComponents_Interfaces.prototype.nsIProfile= new nsIProfile();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGRect= new nsIDOMSVGRect();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegMovetoRel= new nsIDOMSVGPathSegMovetoRel();
-nsXPCComponents_Interfaces.prototype.nsIPromptService= new nsIPromptService();
-nsXPCComponents_Interfaces.prototype.nsIJARProtocolHandler= new nsIJARProtocolHandler();
-nsXPCComponents_Interfaces.prototype.nsIRefreshURI= new nsIRefreshURI();
-nsXPCComponents_Interfaces.prototype.nsIDOMXPathExpression= new nsIDOMXPathExpression();
-nsXPCComponents_Interfaces.prototype.nsISchema= new nsISchema();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGLineElement= new nsIDOMSVGLineElement();
-nsXPCComponents_Interfaces.prototype.nsITreeColumn= new nsITreeColumn();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompletePopup= new nsIAutoCompletePopup();
-nsXPCComponents_Interfaces.prototype.nsIFullScreen= new nsIFullScreen();
-nsXPCComponents_Interfaces.prototype.nsIDOMPkcs11= new nsIDOMPkcs11();
-nsXPCComponents_Interfaces.prototype.nsIRequest= new nsIRequest();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSPageRule= new nsIDOMCSSPageRule();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserPrint= new nsIWebBrowserPrint();
-nsXPCComponents_Interfaces.prototype.nsIDOMNameList= new nsIDOMNameList();
-nsXPCComponents_Interfaces.prototype.nsIGlobalHistory2= new nsIGlobalHistory2();
-nsXPCComponents_Interfaces.prototype.nsISOAPResponseListener= new nsISOAPResponseListener();
-nsXPCComponents_Interfaces.prototype.nsIUrlClassifierTable= new nsIUrlClassifierTable();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedNumber= new nsIDOMSVGAnimatedNumber();
-nsXPCComponents_Interfaces.prototype.nsIBrowserHistory= new nsIBrowserHistory();
-nsXPCComponents_Interfaces.prototype.nsIRDFDelegateFactory= new nsIRDFDelegateFactory();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSPrimitiveValue= new nsIDOMCSSPrimitiveValue();
-nsXPCComponents_Interfaces.prototype.nsIFeedResult= new nsIFeedResult();
-nsXPCComponents_Interfaces.prototype.nsISelectionController= new nsISelectionController();
-nsXPCComponents_Interfaces.prototype.nsISocketProvider= new nsISocketProvider();
-nsXPCComponents_Interfaces.prototype.nsIFontPackageService= new nsIFontPackageService();
-nsXPCComponents_Interfaces.prototype.nsIStringInputStream= new nsIStringInputStream();
-nsXPCComponents_Interfaces.prototype.nsIPhonetic= new nsIPhonetic();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGDefsElement= new nsIDOMSVGDefsElement();
-nsXPCComponents_Interfaces.prototype.imgIDecoder= new imgIDecoder();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSValue= new nsIDOMCSSValue();
-nsXPCComponents_Interfaces.prototype.nsISHContainer= new nsISHContainer();
-nsXPCComponents_Interfaces.prototype.nsICryptoFIPSInfo= new nsICryptoFIPSInfo();
-nsXPCComponents_Interfaces.prototype.nsIMenuBoxObject= new nsIMenuBoxObject();
-nsXPCComponents_Interfaces.prototype.nsIWSDLPort= new nsIWSDLPort();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegClosePath= new nsIDOMSVGPathSegClosePath();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSException= new nsIDOMLSException();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLFieldSetElement= new nsIDOMHTMLFieldSetElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGLinearGradientElement= new nsIDOMSVGLinearGradientElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMStorage= new nsIDOMStorage();
-nsXPCComponents_Interfaces.prototype.nsIStreamLoader= new nsIStreamLoader();
-nsXPCComponents_Interfaces.prototype.nsIDOMWindowCollection= new nsIDOMWindowCollection();
-nsXPCComponents_Interfaces.prototype.nsIBinaryInputStream= new nsIBinaryInputStream();
-nsXPCComponents_Interfaces.prototype.nsIFeedProcessor= new nsIFeedProcessor();
-nsXPCComponents_Interfaces.prototype.nsITextScroll= new nsITextScroll();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGRadialGradientElement= new nsIDOMSVGRadialGradientElement();
-nsXPCComponents_Interfaces.prototype.nsIVersionComparator= new nsIVersionComparator();
-nsXPCComponents_Interfaces.prototype.nsIAsyncStreamListener= new nsIAsyncStreamListener();
-nsXPCComponents_Interfaces.prototype.nsIBrowserDOMWindow= new nsIBrowserDOMWindow();
-nsXPCComponents_Interfaces.prototype.nsIDOMXPathException= new nsIDOMXPathException();
-nsXPCComponents_Interfaces.prototype.nsISHistory= new nsISHistory();
-nsXPCComponents_Interfaces.prototype.nsIDOMCrypto= new nsIDOMCrypto();
-nsXPCComponents_Interfaces.prototype.nsIAccessible= new nsIAccessible();
-nsXPCComponents_Interfaces.prototype.nsITransaction= new nsITransaction();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLOptionsCollection= new nsIDOMHTMLOptionsCollection();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSEvent= new nsIDOMNSEvent();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteInput= new nsIAutoCompleteInput();
-nsXPCComponents_Interfaces.prototype.nsICertTree= new nsICertTree();
-nsXPCComponents_Interfaces.prototype.nsIComponentRegistrar= new nsIComponentRegistrar();
-nsXPCComponents_Interfaces.prototype.nsIFileChannel= new nsIFileChannel();
-nsXPCComponents_Interfaces.prototype.jsdIExecutionHook= new jsdIExecutionHook();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteInput_MOZILLA_1_8_BRANCH= new nsIAutoCompleteInput_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIBoxLayoutManager= new nsIBoxLayoutManager();
-nsXPCComponents_Interfaces.prototype.nsIMicrosummary= new nsIMicrosummary();
-nsXPCComponents_Interfaces.prototype.nsICacheListener= new nsICacheListener();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRBool= new nsISupportsPRBool();
-nsXPCComponents_Interfaces.prototype.mozIStorageValueArray= new mozIStorageValueArray();
-nsXPCComponents_Interfaces.prototype.nsIXPInstallManagerUI= new nsIXPInstallManagerUI();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentEvent= new nsIDOMDocumentEvent();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULCommandEvent= new nsIDOMXULCommandEvent();
-nsXPCComponents_Interfaces.prototype.nsIContentSniffer_MOZILLA_1_8_BRANCH= new nsIContentSniffer_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIXULAppInfo= new nsIXULAppInfo();
-nsXPCComponents_Interfaces.prototype.nsIProxiedProtocolHandler= new nsIProxiedProtocolHandler();
-nsXPCComponents_Interfaces.prototype.nsISupportsString= new nsISupportsString();
-nsXPCComponents_Interfaces.prototype.nsISafeOutputStream= new nsISafeOutputStream();
-nsXPCComponents_Interfaces.prototype.inIDeepTreeWalker= new inIDeepTreeWalker();
-nsXPCComponents_Interfaces.prototype.nsIDocShellTreeItem= new nsIDocShellTreeItem();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSFontFaceRule= new nsIDOMCSSFontFaceRule();
-nsXPCComponents_Interfaces.prototype.nsIAlertsService= new nsIAlertsService();
-nsXPCComponents_Interfaces.prototype.nsICMSMessageErrors= new nsICMSMessageErrors();
-nsXPCComponents_Interfaces.prototype.nsIPrefBranch2= new nsIPrefBranch2();
-nsXPCComponents_Interfaces.prototype.nsIXTFGenericElementWrapper= new nsIXTFGenericElementWrapper();
-nsXPCComponents_Interfaces.prototype.inISearchObserver= new inISearchObserver();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedLength= new nsIDOMSVGAnimatedLength();
-nsXPCComponents_Interfaces.prototype.nsIUTF8StringEnumerator= new nsIUTF8StringEnumerator();
-nsXPCComponents_Interfaces.prototype.nsICookieConsent= new nsICookieConsent();
-nsXPCComponents_Interfaces.prototype.nsIResProtocolHandler= new nsIResProtocolHandler();
-nsXPCComponents_Interfaces.prototype.nsIServerSocketListener= new nsIServerSocketListener();
-nsXPCComponents_Interfaces.prototype.nsIXTFBindableElement= new nsIXTFBindableElement();
-nsXPCComponents_Interfaces.prototype.nsIAccessNode= new nsIAccessNode();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoQuadraticAbs= new nsIDOMSVGPathSegCurvetoQuadraticAbs();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRInt64= new nsISupportsPRInt64();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSRange= new nsIDOMNSRange();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_ID= new nsIXPCComponents_ID();
-nsXPCComponents_Interfaces.prototype.nsITooltipTextProvider= new nsITooltipTextProvider();
-nsXPCComponents_Interfaces.prototype.nsIExternalHelperAppService= new nsIExternalHelperAppService();
-nsXPCComponents_Interfaces.prototype.nsIFastLoadService= new nsIFastLoadService();
-nsXPCComponents_Interfaces.prototype.nsIDOMDOMImplementationLS= new nsIDOMDOMImplementationLS();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLDListElement= new nsIDOMHTMLDListElement();
-nsXPCComponents_Interfaces.prototype.nsIWindowsRegKey= new nsIWindowsRegKey();
-nsXPCComponents_Interfaces.prototype.nsISchemaLoadListener= new nsISchemaLoadListener();
-nsXPCComponents_Interfaces.prototype.nsII18nCompatibility= new nsII18nCompatibility();
-nsXPCComponents_Interfaces.prototype.nsIWebScriptsAccessService= new nsIWebScriptsAccessService();
-nsXPCComponents_Interfaces.prototype.nsIWindowCreator2= new nsIWindowCreator2();
-nsXPCComponents_Interfaces.prototype.nsIWebServiceErrorHandler= new nsIWebServiceErrorHandler();
-nsXPCComponents_Interfaces.prototype.nsIBaseWindow= new nsIBaseWindow();
-nsXPCComponents_Interfaces.prototype.nsIFastLoadFileControl= new nsIFastLoadFileControl();
-nsXPCComponents_Interfaces.prototype.nsIPrefService= new nsIPrefService();
-nsXPCComponents_Interfaces.prototype.nsIWritablePropertyBag= new nsIWritablePropertyBag();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGException= new nsIDOMSVGException();
-nsXPCComponents_Interfaces.prototype.nsIMicrosummaryGenerator= new nsIMicrosummaryGenerator();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSeg= new nsIDOMSVGPathSeg();
-nsXPCComponents_Interfaces.prototype.nsISOAPMessage= new nsISOAPMessage();
-nsXPCComponents_Interfaces.prototype.nsIContextMenuInfo= new nsIContextMenuInfo();
-nsXPCComponents_Interfaces.prototype.nsIHttpProtocolHandler= new nsIHttpProtocolHandler();
-nsXPCComponents_Interfaces.prototype.nsILocaleService= new nsILocaleService();
-nsXPCComponents_Interfaces.prototype.nsIDOMBarProp= new nsIDOMBarProp();
-nsXPCComponents_Interfaces.prototype.nsIProfileStartup= new nsIProfileStartup();
-nsXPCComponents_Interfaces.prototype.nsICookiePromptService= new nsICookiePromptService();
-nsXPCComponents_Interfaces.prototype.imgILoad= new imgILoad();
-nsXPCComponents_Interfaces.prototype.nsIPrintSettingsService= new nsIPrintSettingsService();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathElement= new nsIDOMSVGPathElement();
-nsXPCComponents_Interfaces.prototype.nsIObjectInputStream= new nsIObjectInputStream();
-nsXPCComponents_Interfaces.prototype.nsISchemaAnyParticle= new nsISchemaAnyParticle();
-nsXPCComponents_Interfaces.prototype.nsIDirIndex= new nsIDirIndex();
-nsXPCComponents_Interfaces.prototype.nsPIExternalAppLauncher= new nsPIExternalAppLauncher();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLHRElement= new nsIDOMNSHTMLHRElement();
-nsXPCComponents_Interfaces.prototype.nsIXTFSVGVisual= new nsIXTFSVGVisual();
-nsXPCComponents_Interfaces.prototype.nsIFormFillController= new nsIFormFillController();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGSVGElement= new nsIDOMSVGSVGElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULMenuListElement= new nsIDOMXULMenuListElement();
-nsXPCComponents_Interfaces.prototype.nsISOAPTransportListener= new nsISOAPTransportListener();
-nsXPCComponents_Interfaces.prototype.nsIDictionary= new nsIDictionary();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLElement_MOZILLA_1_8_BRANCH= new nsIDOMNSHTMLElement_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsISyncLoadDOMService= new nsISyncLoadDOMService();
-nsXPCComponents_Interfaces.prototype.nsIDOMJSPluginArray= new nsIDOMJSPluginArray();
-nsXPCComponents_Interfaces.prototype.nsIURL= new nsIURL();
-nsXPCComponents_Interfaces.prototype.nsIDOMConstructor= new nsIDOMConstructor();
-nsXPCComponents_Interfaces.prototype.nsIMultiplexInputStream= new nsIMultiplexInputStream();
-nsXPCComponents_Interfaces.prototype.nsIClipboardCommands= new nsIClipboardCommands();
-nsXPCComponents_Interfaces.prototype.nsIWebServiceProxyCreationListener= new nsIWebServiceProxyCreationListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMKeyEvent= new nsIDOMKeyEvent();
-nsXPCComponents_Interfaces.prototype.nsIKeygenThread= new nsIKeygenThread();
-nsXPCComponents_Interfaces.prototype.jsdIDebuggerService= new jsdIDebuggerService();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLDocument= new nsIDOMHTMLDocument();
-nsXPCComponents_Interfaces.prototype.nsISchemaListType= new nsISchemaListType();
-nsXPCComponents_Interfaces.prototype.inICSSValueSearch= new inICSSValueSearch();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleDocument= new nsIAccessibleDocument();
-nsXPCComponents_Interfaces.prototype.nsIDocNavStartProgressCallback= new nsIDocNavStartProgressCallback();
-nsXPCComponents_Interfaces.prototype.nsIPrintStatusFeedback= new nsIPrintStatusFeedback();
-nsXPCComponents_Interfaces.prototype.nsIProfileInternal= new nsIProfileInternal();
-nsXPCComponents_Interfaces.prototype.nsIExceptionProvider= new nsIExceptionProvider();
-nsXPCComponents_Interfaces.prototype.nsIDOMJSNavigator= new nsIDOMJSNavigator();
-nsXPCComponents_Interfaces.prototype.nsIXULRuntime= new nsIXULRuntime();
-nsXPCComponents_Interfaces.prototype.nsIDOM3EventTarget= new nsIDOM3EventTarget();
-nsXPCComponents_Interfaces.prototype.nsIJVMConfig= new nsIJVMConfig();
-nsXPCComponents_Interfaces.prototype.nsIDOMXPathNSResolver= new nsIDOMXPathNSResolver();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLAnchorElement= new nsIDOMHTMLAnchorElement();
-nsXPCComponents_Interfaces.prototype.nsIFTPChannel= new nsIFTPChannel();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSValueList= new nsIDOMCSSValueList();
-nsXPCComponents_Interfaces.prototype.nsIShellService= new nsIShellService();
-nsXPCComponents_Interfaces.prototype.nsISchemaAttributeComponent= new nsISchemaAttributeComponent();
-nsXPCComponents_Interfaces.prototype.nsIJSConsoleService= new nsIJSConsoleService();
-nsXPCComponents_Interfaces.prototype.nsIToolkitChromeRegistry= new nsIToolkitChromeRegistry();
-nsXPCComponents_Interfaces.prototype.nsILocaleDefinition= new nsILocaleDefinition();
-nsXPCComponents_Interfaces.prototype.nsIProtocolProxyFilter= new nsIProtocolProxyFilter();
-nsXPCComponents_Interfaces.prototype.nsIFeedElementBase= new nsIFeedElementBase();
-nsXPCComponents_Interfaces.prototype.nsISOAPResponse= new nsISOAPResponse();
-nsXPCComponents_Interfaces.prototype.nsIFormSigningDialog= new nsIFormSigningDialog();
-nsXPCComponents_Interfaces.prototype.jsdIStackFrame= new jsdIStackFrame();
-nsXPCComponents_Interfaces.prototype.nsIXTFElementWrapper= new nsIXTFElementWrapper();
-nsXPCComponents_Interfaces.prototype.nsITypeAheadFind= new nsITypeAheadFind();
-nsXPCComponents_Interfaces.prototype.nsIInlineSpellChecker= new nsIInlineSpellChecker();
-nsXPCComponents_Interfaces.prototype.nsIAptanaDebugService= new nsIAptanaDebugService();
-nsXPCComponents_Interfaces.prototype.nsIDownloadManager= new nsIDownloadManager();
-nsXPCComponents_Interfaces.prototype.nsIProxyAutoConfig= new nsIProxyAutoConfig();
-nsXPCComponents_Interfaces.prototype.nsIAsyncInputStream= new nsIAsyncInputStream();
-nsXPCComponents_Interfaces.prototype.nsIProfileChangeStatus= new nsIProfileChangeStatus();
-nsXPCComponents_Interfaces.prototype.nsISupportsArray= new nsISupportsArray();
-nsXPCComponents_Interfaces.prototype.nsIToolkitProfile= new nsIToolkitProfile();
-nsXPCComponents_Interfaces.prototype.nsIDOMMediaList= new nsIDOMMediaList();
-nsXPCComponents_Interfaces.prototype.nsIUrlClassifierCallback= new nsIUrlClassifierCallback();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserPersist= new nsIWebBrowserPersist();
-nsXPCComponents_Interfaces.prototype.nsIDirIndexParser= new nsIDirIndexParser();
-nsXPCComponents_Interfaces.prototype.nsIProgrammingLanguage= new nsIProgrammingLanguage();
-nsXPCComponents_Interfaces.prototype.nsIXULTemplateBuilder= new nsIXULTemplateBuilder();
-nsXPCComponents_Interfaces.prototype.nsISemanticUnitScanner= new nsISemanticUnitScanner();
-nsXPCComponents_Interfaces.prototype.nsIStreamCipher= new nsIStreamCipher();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTextPathElement= new nsIDOMSVGTextPathElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLElement= new nsIDOMNSHTMLElement();
-nsXPCComponents_Interfaces.prototype.nsIAtom= new nsIAtom();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTransformable= new nsIDOMSVGTransformable();
-nsXPCComponents_Interfaces.prototype.nsIEnumerator= new nsIEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIFile= new nsIFile();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULMultiSelectControlElement= new nsIDOMXULMultiSelectControlElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLTextAreaElement= new nsIDOMNSHTMLTextAreaElement();
-nsXPCComponents_Interfaces.prototype.nsIContextMenuListener2= new nsIContextMenuListener2();
-nsXPCComponents_Interfaces.prototype.nsIDOMWindow2= new nsIDOMWindow2();
-nsXPCComponents_Interfaces.prototype.nsIChromeRegistry= new nsIChromeRegistry();
-nsXPCComponents_Interfaces.prototype.nsIDOMNodeList= new nsIDOMNodeList();
-nsXPCComponents_Interfaces.prototype.nsIInputStreamChannel= new nsIInputStreamChannel();
-nsXPCComponents_Interfaces.prototype.nsISOAPEncoder= new nsISOAPEncoder();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGForeignObjectElement= new nsIDOMSVGForeignObjectElement();
-nsXPCComponents_Interfaces.prototype.nsIEventQueue= new nsIEventQueue();
-nsXPCComponents_Interfaces.prototype.nsIThread= new nsIThread();
-nsXPCComponents_Interfaces.prototype.nsIIOService2= new nsIIOService2();
-nsXPCComponents_Interfaces.prototype.nsIEditorBoxObject= new nsIEditorBoxObject();
-nsXPCComponents_Interfaces.prototype.nsIUpdateChecker= new nsIUpdateChecker();
-nsXPCComponents_Interfaces.prototype.nsIStreamTransportService= new nsIStreamTransportService();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTableRowElement= new nsIDOMHTMLTableRowElement();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleProvider= new nsIAccessibleProvider();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLButtonElement= new nsIDOMHTMLButtonElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLInputElement= new nsIDOMNSHTMLInputElement();
-nsXPCComponents_Interfaces.prototype.nsIDownload_MOZILLA_1_8_BRANCH= new nsIDownload_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsITransfer= new nsITransfer();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserStream= new nsIWebBrowserStream();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTableColElement= new nsIDOMHTMLTableColElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSRuleList= new nsIDOMCSSRuleList();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoQuadraticRel= new nsIDOMSVGPathSegCurvetoQuadraticRel();
-nsXPCComponents_Interfaces.prototype.imgIEncoder_MOZILLA_1_8_BRANCH= new imgIEncoder_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTSpanElement= new nsIDOMSVGTSpanElement();
-nsXPCComponents_Interfaces.prototype.nsIControllerContext= new nsIControllerContext();
-nsXPCComponents_Interfaces.prototype.nsIUrlClassifierStreamUpdater= new nsIUrlClassifierStreamUpdater();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGClipPathElement= new nsIDOMSVGClipPathElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLIsIndexElement= new nsIDOMHTMLIsIndexElement();
-nsXPCComponents_Interfaces.prototype.nsIExpatSink= new nsIExpatSink();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserSetup= new nsIWebBrowserSetup();
-nsXPCComponents_Interfaces.prototype.nsISOCKSSocketInfo= new nsISOCKSSocketInfo();
-nsXPCComponents_Interfaces.prototype.nsIDOMEventListener= new nsIDOMEventListener();
-nsXPCComponents_Interfaces.prototype.nsIPermission= new nsIPermission();
-nsXPCComponents_Interfaces.prototype.nsIEditorObserver= new nsIEditorObserver();
-nsXPCComponents_Interfaces.prototype.nsIScriptableMethodInfo= new nsIScriptableMethodInfo();
-nsXPCComponents_Interfaces.prototype.nsIScriptSecurityManager= new nsIScriptSecurityManager();
-nsXPCComponents_Interfaces.prototype.nsIDOMEventGroup= new nsIDOMEventGroup();
-nsXPCComponents_Interfaces.prototype.nsIURIFixup_MOZILLA_1_8_BRANCH= new nsIURIFixup_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsITooltipListener= new nsITooltipListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMStyleSheetList= new nsIDOMStyleSheetList();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGNumberList= new nsIDOMSVGNumberList();
-nsXPCComponents_Interfaces.prototype.nsIPermissionManager= new nsIPermissionManager();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSFeatureFactory= new nsIDOMNSFeatureFactory();
-nsXPCComponents_Interfaces.prototype.nsIUpdate_MOZILLA_1_8_BRANCH= new nsIUpdate_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsISAXLexicalHandler= new nsISAXLexicalHandler();
-nsXPCComponents_Interfaces.prototype.nsISMimeCert= new nsISMimeCert();
-nsXPCComponents_Interfaces.prototype.nsISidebarExternal= new nsISidebarExternal();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegArcRel= new nsIDOMSVGPathSegArcRel();
-nsXPCComponents_Interfaces.prototype.nsIEventQueueService= new nsIEventQueueService();
-nsXPCComponents_Interfaces.prototype.nsISaveAsCharset= new nsISaveAsCharset();
-nsXPCComponents_Interfaces.prototype.nsICMSSecureMessage= new nsICMSSecureMessage();
-nsXPCComponents_Interfaces.prototype.nsIStringBundleService= new nsIStringBundleService();
-nsXPCComponents_Interfaces.prototype.nsIXULOverlayProvider= new nsIXULOverlayProvider();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTransformList= new nsIDOMSVGTransformList();
-nsXPCComponents_Interfaces.prototype.nsIDOMDOMException= new nsIDOMDOMException();
-nsXPCComponents_Interfaces.prototype.nsIScriptableUnicodeConverter= new nsIScriptableUnicodeConverter();
-nsXPCComponents_Interfaces.prototype.nsIFastLoadFileIO= new nsIFastLoadFileIO();
-nsXPCComponents_Interfaces.prototype.nsICollation= new nsICollation();
-nsXPCComponents_Interfaces.prototype.nsIComponentManager= new nsIComponentManager();
-nsXPCComponents_Interfaces.prototype.nsIBrowserSearchService= new nsIBrowserSearchService();
-nsXPCComponents_Interfaces.prototype.nsIXSLTProcessorObsolete= new nsIXSLTProcessorObsolete();
-nsXPCComponents_Interfaces.prototype.nsIUUIDGenerator= new nsIUUIDGenerator();
-nsXPCComponents_Interfaces.prototype.nsIControllerCommandGroup= new nsIControllerCommandGroup();
-nsXPCComponents_Interfaces.prototype.nsIDOMLocation= new nsIDOMLocation();
-nsXPCComponents_Interfaces.prototype.nsITXTToHTMLConv= new nsITXTToHTMLConv();
-nsXPCComponents_Interfaces.prototype.nsISessionStore= new nsISessionStore();
-nsXPCComponents_Interfaces.prototype.nsIRDFBlob= new nsIRDFBlob();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLHeadElement= new nsIDOMHTMLHeadElement();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_Exception= new nsIXPCComponents_Exception();
-nsXPCComponents_Interfaces.prototype.nsIASN1PrintableItem= new nsIASN1PrintableItem();
-nsXPCComponents_Interfaces.prototype.nsIEditorStyleSheets= new nsIEditorStyleSheets();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLButtonElement= new nsIDOMNSHTMLButtonElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLMapElement= new nsIDOMHTMLMapElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLBRElement= new nsIDOMHTMLBRElement();
-nsXPCComponents_Interfaces.prototype.nsISupportsDouble= new nsISupportsDouble();
-nsXPCComponents_Interfaces.prototype.nsIProtocolProxyCallback= new nsIProtocolProxyCallback();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLLinkElement= new nsIDOMHTMLLinkElement();
-nsXPCComponents_Interfaces.prototype.nsIXULSortService= new nsIXULSortService();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLOptionCollection= new nsIDOMNSHTMLOptionCollection();
-nsXPCComponents_Interfaces.prototype.nsIXULTreeBuilder= new nsIXULTreeBuilder();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGNumber= new nsIDOMSVGNumber();
-nsXPCComponents_Interfaces.prototype.nsIHistoryEntry= new nsIHistoryEntry();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULImageElement= new nsIDOMXULImageElement();
-nsXPCComponents_Interfaces.prototype.nsIFileURL= new nsIFileURL();
-nsXPCComponents_Interfaces.prototype.nsIFindService= new nsIFindService();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSLoadEvent= new nsIDOMLSLoadEvent();
-nsXPCComponents_Interfaces.prototype.nsINetworkLinkService= new nsINetworkLinkService();
-nsXPCComponents_Interfaces.prototype.nsIClipboardHelper= new nsIClipboardHelper();
-nsXPCComponents_Interfaces.prototype.nsIPref= new nsIPref();
-nsXPCComponents_Interfaces.prototype.nsIWebProgressListener= new nsIWebProgressListener();
-nsXPCComponents_Interfaces.prototype.nsIDragService= new nsIDragService();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSDocumentStyle= new nsIDOMNSDocumentStyle();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLStyleElement= new nsIDOMHTMLStyleElement();
-nsXPCComponents_Interfaces.prototype.nsIOCSPResponder= new nsIOCSPResponder();
-nsXPCComponents_Interfaces.prototype.nsILocale= new nsILocale();
-nsXPCComponents_Interfaces.prototype.nsIUpdateItem= new nsIUpdateItem();
-nsXPCComponents_Interfaces.prototype.nsICiter= new nsICiter();
-nsXPCComponents_Interfaces.prototype.nsISchemaRestrictionType= new nsISchemaRestrictionType();
-nsXPCComponents_Interfaces.prototype.nsIXSLTException= new nsIXSLTException();
-nsXPCComponents_Interfaces.prototype.nsIFormHistoryImporter= new nsIFormHistoryImporter();
-nsXPCComponents_Interfaces.prototype.nsISAXDTDHandler= new nsISAXDTDHandler();
-nsXPCComponents_Interfaces.prototype.nsIRequestObserverProxy= new nsIRequestObserverProxy();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGDocument= new nsIDOMSVGDocument();
-nsXPCComponents_Interfaces.prototype.nsIDOM3Node= new nsIDOM3Node();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLUListElement= new nsIDOMHTMLUListElement();
-nsXPCComponents_Interfaces.prototype.nsIActiveXSecurityPolicy= new nsIActiveXSecurityPolicy();
-nsXPCComponents_Interfaces.prototype.nsIUnicodeNormalizer= new nsIUnicodeNormalizer();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLObjectElement= new nsIDOMHTMLObjectElement();
-nsXPCComponents_Interfaces.prototype.nsIXULChromeRegistry= new nsIXULChromeRegistry();
-nsXPCComponents_Interfaces.prototype.nsIXPointerResult= new nsIXPointerResult();
-nsXPCComponents_Interfaces.prototype.nsIDOMCRMFObject= new nsIDOMCRMFObject();
-nsXPCComponents_Interfaces.prototype.nsIURI= new nsIURI();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGMatrix= new nsIDOMSVGMatrix();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTableElement= new nsIDOMHTMLTableElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGEvent= new nsIDOMSVGEvent();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentType= new nsIDOMDocumentType();
-nsXPCComponents_Interfaces.prototype.nsIQTScriptablePlugin= new nsIQTScriptablePlugin();
-nsXPCComponents_Interfaces.prototype.nsIDOMWindowUtils= new nsIDOMWindowUtils();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULPopupElement= new nsIDOMXULPopupElement();
-nsXPCComponents_Interfaces.prototype.nsISchemaComplexType= new nsISchemaComplexType();
-nsXPCComponents_Interfaces.prototype.nsIOSChromeItem= new nsIOSChromeItem();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegLinetoHorizontalAbs= new nsIDOMSVGPathSegLinetoHorizontalAbs();
-nsXPCComponents_Interfaces.prototype.nsIDialogParamBlock= new nsIDialogParamBlock();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLInputElement= new nsIDOMHTMLInputElement();
-nsXPCComponents_Interfaces.prototype.imgIRequest= new imgIRequest();
-nsXPCComponents_Interfaces.prototype.nsIContextMenuListener= new nsIContextMenuListener();
-nsXPCComponents_Interfaces.prototype.nsIExceptionManager= new nsIExceptionManager();
-nsXPCComponents_Interfaces.prototype.nsITimerInternal= new nsITimerInternal();
-nsXPCComponents_Interfaces.prototype.nsISOAPTransport= new nsISOAPTransport();
-nsXPCComponents_Interfaces.prototype.nsIDOMComment= new nsIDOMComment();
-nsXPCComponents_Interfaces.prototype.nsIRegistry= new nsIRegistry();
-nsXPCComponents_Interfaces.prototype.nsIHelperAppLauncherDialog= new nsIHelperAppLauncherDialog();
-nsXPCComponents_Interfaces.prototype.jsdIProperty= new jsdIProperty();
-nsXPCComponents_Interfaces.prototype.nsICookieService= new nsICookieService();
-nsXPCComponents_Interfaces.prototype.nsIRDFInferDataSource= new nsIRDFInferDataSource();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGCircleElement= new nsIDOMSVGCircleElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegLinetoVerticalAbs= new nsIDOMSVGPathSegLinetoVerticalAbs();
-nsXPCComponents_Interfaces.prototype.nsIProperty= new nsIProperty();
-nsXPCComponents_Interfaces.prototype.nsIDocShellTreeNode= new nsIDocShellTreeNode();
-nsXPCComponents_Interfaces.prototype.nsIChromeEventHandler= new nsIChromeEventHandler();
-nsXPCComponents_Interfaces.prototype.nsIConsoleService_MOZILLA_1_8_BRANCH= new nsIConsoleService_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoCubicSmoothRel= new nsIDOMSVGPathSegCurvetoCubicSmoothRel();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSCharsetRule= new nsIDOMCSSCharsetRule();
-nsXPCComponents_Interfaces.prototype.nsIPrefetchService= new nsIPrefetchService();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleWin32Object= new nsIAccessibleWin32Object();
-nsXPCComponents_Interfaces.prototype.nsIObjectOutputStream= new nsIObjectOutputStream();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedRect= new nsIDOMSVGAnimatedRect();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLLabelElement= new nsIDOMHTMLLabelElement();
-nsXPCComponents_Interfaces.prototype.nsIResumableChannel= new nsIResumableChannel();
-nsXPCComponents_Interfaces.prototype.nsIScriptLoaderObserver= new nsIScriptLoaderObserver();
-nsXPCComponents_Interfaces.prototype.nsIHttpChannelInternal= new nsIHttpChannelInternal();
-nsXPCComponents_Interfaces.prototype.nsICollationFactory= new nsICollationFactory();
-nsXPCComponents_Interfaces.prototype.nsIScriptableRegion= new nsIScriptableRegion();
-nsXPCComponents_Interfaces.prototype.jsdINestCallback= new jsdINestCallback();
-nsXPCComponents_Interfaces.prototype.nsPIAccessible= new nsPIAccessible();
-nsXPCComponents_Interfaces.prototype.nsISchemaBuiltinType= new nsISchemaBuiltinType();
-nsXPCComponents_Interfaces.prototype.nsIAptanaBreakpointProperties= new nsIAptanaBreakpointProperties();
-nsXPCComponents_Interfaces.prototype.nsIAptanaDebugger= new nsIAptanaDebugger();
-nsXPCComponents_Interfaces.prototype.nsIDOMRange= new nsIDOMRange();
-nsXPCComponents_Interfaces.prototype.nsIEditor_MOZILLA_1_8_BRANCH= new nsIEditor_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIListBoxObject= new nsIListBoxObject();
-nsXPCComponents_Interfaces.prototype.nsIDOMCharacterData= new nsIDOMCharacterData();
-nsXPCComponents_Interfaces.prototype.nsIDOM3Document= new nsIDOM3Document();
-nsXPCComponents_Interfaces.prototype.nsIByteRangeRequest= new nsIByteRangeRequest();
-nsXPCComponents_Interfaces.prototype.nsIArray= new nsIArray();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentView= new nsIDOMDocumentView();
-nsXPCComponents_Interfaces.prototype.rdfIDataSource= new rdfIDataSource();
-nsXPCComponents_Interfaces.prototype.nsIXPCWrappedJSObjectGetter= new nsIXPCWrappedJSObjectGetter();
-nsXPCComponents_Interfaces.prototype.mozIJSSubScriptLoader= new mozIJSSubScriptLoader();
-nsXPCComponents_Interfaces.prototype.nsISOAPAttachments= new nsISOAPAttachments();
-nsXPCComponents_Interfaces.prototype.nsIPKCS11Slot= new nsIPKCS11Slot();
-nsXPCComponents_Interfaces.prototype.nsIDirectoryEnumerator= new nsIDirectoryEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIMutableArray= new nsIMutableArray();
-nsXPCComponents_Interfaces.prototype.nsIWebServiceCallContext= new nsIWebServiceCallContext();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSUIEvent= new nsIDOMNSUIEvent();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGMarkerElement= new nsIDOMSVGMarkerElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULLabelElement= new nsIDOMXULLabelElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMUIEvent= new nsIDOMUIEvent();
-nsXPCComponents_Interfaces.prototype.nsIRDFResource= new nsIRDFResource();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGLength= new nsIDOMSVGLength();
-nsXPCComponents_Interfaces.prototype.nsISidebar= new nsISidebar();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPreserveAspectRatio= new nsIDOMSVGPreserveAspectRatio();
-nsXPCComponents_Interfaces.prototype.nsIEditorDocShell= new nsIEditorDocShell();
-nsXPCComponents_Interfaces.prototype.nsIProgressDialog= new nsIProgressDialog();
-nsXPCComponents_Interfaces.prototype.nsIURIChecker= new nsIURIChecker();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleTreeCache= new nsIAccessibleTreeCache();
-nsXPCComponents_Interfaces.prototype.nsIConsoleListener= new nsIConsoleListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLImageElement= new nsIDOMNSHTMLImageElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentStyle= new nsIDOMDocumentStyle();
-nsXPCComponents_Interfaces.prototype.nsIFeedProgressListener= new nsIFeedProgressListener();
-nsXPCComponents_Interfaces.prototype.nsIXPCException= new nsIXPCException();
-nsXPCComponents_Interfaces.prototype.nsIWebPageDescriptor= new nsIWebPageDescriptor();
-nsXPCComponents_Interfaces.prototype.nsIKeyObject= new nsIKeyObject();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLQuoteElement= new nsIDOMHTMLQuoteElement();
-nsXPCComponents_Interfaces.prototype.nsIBidiKeyboard= new nsIBidiKeyboard();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_Utils= new nsIXPCComponents_Utils();
-nsXPCComponents_Interfaces.prototype.nsPISocketTransportService= new nsPISocketTransportService();
-nsXPCComponents_Interfaces.prototype.nsIPipe= new nsIPipe();
-nsXPCComponents_Interfaces.prototype.nsIURLFormatter= new nsIURLFormatter();
-nsXPCComponents_Interfaces.prototype.nsISearchableInputStream= new nsISearchableInputStream();
-nsXPCComponents_Interfaces.prototype.imgIContainer= new imgIContainer();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPolylineElement= new nsIDOMSVGPolylineElement();
-nsXPCComponents_Interfaces.prototype.nsIPluginElement= new nsIPluginElement();
-nsXPCComponents_Interfaces.prototype.nsIStringBundleOverride= new nsIStringBundleOverride();
-nsXPCComponents_Interfaces.prototype.mozIStorageStatementParams= new mozIStorageStatementParams();
-nsXPCComponents_Interfaces.prototype.nsIJVMPluginInstance= new nsIJVMPluginInstance();
-nsXPCComponents_Interfaces.prototype.nsICipherInfoService= new nsICipherInfoService();
-nsXPCComponents_Interfaces.prototype.nsISocketTransport= new nsISocketTransport();
-nsXPCComponents_Interfaces.prototype.nsIOutputIterator= new nsIOutputIterator();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTextContentElement= new nsIDOMSVGTextContentElement();
-nsXPCComponents_Interfaces.prototype.nsIHttpHeaderVisitor= new nsIHttpHeaderVisitor();
-nsXPCComponents_Interfaces.prototype.nsITimerManager= new nsITimerManager();
-nsXPCComponents_Interfaces.prototype.nsIWSDLMessage= new nsIWSDLMessage();
-nsXPCComponents_Interfaces.prototype.nsINetUtil= new nsINetUtil();
-nsXPCComponents_Interfaces.prototype.nsIWebContentConverterService= new nsIWebContentConverterService();
-nsXPCComponents_Interfaces.prototype.jsdIValue= new jsdIValue();
-nsXPCComponents_Interfaces.prototype.jsdIScript= new jsdIScript();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSEditableElement= new nsIDOMNSEditableElement();
-nsXPCComponents_Interfaces.prototype.nsIClassInfo= new nsIClassInfo();
-nsXPCComponents_Interfaces.prototype.nsIRDFService= new nsIRDFService();
-nsXPCComponents_Interfaces.prototype.nsISupportsPriority= new nsISupportsPriority();
-nsXPCComponents_Interfaces.prototype.nsIKeyObjectFactory= new nsIKeyObjectFactory();
-nsXPCComponents_Interfaces.prototype.nsIDirectoryIterator= new nsIDirectoryIterator();
-nsXPCComponents_Interfaces.prototype.nsIInputStream= new nsIInputStream();
-nsXPCComponents_Interfaces.prototype.nsISecurityCheckedComponent= new nsISecurityCheckedComponent();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLFormElement= new nsIDOMHTMLFormElement();
-nsXPCComponents_Interfaces.prototype.mozIPersonalDictionary= new mozIPersonalDictionary();
-nsXPCComponents_Interfaces.prototype.nsIUnicharStreamLoader= new nsIUnicharStreamLoader();
-nsXPCComponents_Interfaces.prototype.nsIDocShell= new nsIDocShell();
-nsXPCComponents_Interfaces.prototype.nsIDOMViewCSS= new nsIDOMViewCSS();
-nsXPCComponents_Interfaces.prototype.nsISAXXMLFilter= new nsISAXXMLFilter();
-nsXPCComponents_Interfaces.prototype.nsIJVMManager= new nsIJVMManager();
-nsXPCComponents_Interfaces.prototype.nsITreeColumns= new nsITreeColumns();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLHtmlElement= new nsIDOMHTMLHtmlElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMCanvasGradient= new nsIDOMCanvasGradient();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedPoints= new nsIDOMSVGAnimatedPoints();
-nsXPCComponents_Interfaces.prototype.nsIRDFXMLSerializer= new nsIRDFXMLSerializer();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLAnchorElement= new nsIDOMNSHTMLAnchorElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSS2Properties= new nsIDOMCSS2Properties();
-nsXPCComponents_Interfaces.prototype.nsIProfileStartupListener= new nsIProfileStartupListener();
-nsXPCComponents_Interfaces.prototype.nsIFontPackageHandler= new nsIFontPackageHandler();
-nsXPCComponents_Interfaces.prototype.nsIWSDLBinding= new nsIWSDLBinding();
-nsXPCComponents_Interfaces.prototype.nsIProxyCreateInstance= new nsIProxyCreateInstance();
-nsXPCComponents_Interfaces.prototype.nsISecurityEventSink= new nsISecurityEventSink();
-nsXPCComponents_Interfaces.prototype.nsICommandHandler= new nsICommandHandler();
-nsXPCComponents_Interfaces.prototype.nsIDOMLinkStyle= new nsIDOMLinkStyle();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPoint= new nsIDOMSVGPoint();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleEvent= new nsIAccessibleEvent();
-nsXPCComponents_Interfaces.prototype.nsISupportsCString= new nsISupportsCString();
-nsXPCComponents_Interfaces.prototype.nsISupportsID= new nsISupportsID();
-nsXPCComponents_Interfaces.prototype.IDispatch= new IDispatch();
-nsXPCComponents_Interfaces.prototype.nsIXPInstallManager= new nsIXPInstallManager();
-nsXPCComponents_Interfaces.prototype.nsIXTFXMLVisualWrapper= new nsIXTFXMLVisualWrapper();
-nsXPCComponents_Interfaces.prototype.nsIFeedResultListener= new nsIFeedResultListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMTreeWalker= new nsIDOMTreeWalker();
-nsXPCComponents_Interfaces.prototype.nsIDOMUserDataHandler= new nsIDOMUserDataHandler();
-nsXPCComponents_Interfaces.prototype.nsIProcess= new nsIProcess();
-nsXPCComponents_Interfaces.prototype.nsIWindowCreator= new nsIWindowCreator();
-nsXPCComponents_Interfaces.prototype.nsITreeView= new nsITreeView();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentXBL= new nsIDOMDocumentXBL();
-nsXPCComponents_Interfaces.prototype.nsIXTFBindableElementWrapper= new nsIXTFBindableElementWrapper();
-nsXPCComponents_Interfaces.prototype.nsIObserverService= new nsIObserverService();
-nsXPCComponents_Interfaces.prototype.nsISAXContentHandler= new nsISAXContentHandler();
-nsXPCComponents_Interfaces.prototype.nsIScriptableConstant= new nsIScriptableConstant();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLFrameSetElement= new nsIDOMHTMLFrameSetElement();
-nsXPCComponents_Interfaces.prototype.nsISchemaSimpleType= new nsISchemaSimpleType();
-nsXPCComponents_Interfaces.prototype.nsIFactory= new nsIFactory();
-nsXPCComponents_Interfaces.prototype.nsIDragDropHandler= new nsIDragDropHandler();
-nsXPCComponents_Interfaces.prototype.nsIAptanaError= new nsIAptanaError();
-nsXPCComponents_Interfaces.prototype.nsISOAPServiceRegistry= new nsISOAPServiceRegistry();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGStopElement= new nsIDOMSVGStopElement();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserFindInFrames= new nsIWebBrowserFindInFrames();
-nsXPCComponents_Interfaces.prototype.nsIConsoleService= new nsIConsoleService();
-nsXPCComponents_Interfaces.prototype.inISearchProcess= new inISearchProcess();
-nsXPCComponents_Interfaces.prototype.nsICacheService= new nsICacheService();
-nsXPCComponents_Interfaces.prototype.nsIFeedTextConstruct= new nsIFeedTextConstruct();
-nsXPCComponents_Interfaces.prototype.nsIIncrementalDownload= new nsIIncrementalDownload();
-nsXPCComponents_Interfaces.prototype.nsIDocShellHistory= new nsIDocShellHistory();
-nsXPCComponents_Interfaces.prototype.nsICacheSession= new nsICacheSession();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLEmbedElement= new nsIDOMHTMLEmbedElement();
-nsXPCComponents_Interfaces.prototype.nsIASN1Tree= new nsIASN1Tree();
-nsXPCComponents_Interfaces.prototype.nsIUserCertPicker= new nsIUserCertPicker();
-nsXPCComponents_Interfaces.prototype.nsIProfileMigrator= new nsIProfileMigrator();
-nsXPCComponents_Interfaces.prototype.nsIDocShellTreeOwner= new nsIDocShellTreeOwner();
-nsXPCComponents_Interfaces.prototype.mozISpellI18NUtil= new mozISpellI18NUtil();
-nsXPCComponents_Interfaces.prototype.nsIXTFGenericElement= new nsIXTFGenericElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMChromeWindow= new nsIDOMChromeWindow();
-nsXPCComponents_Interfaces.prototype.nsISSLSocketControl= new nsISSLSocketControl();
-nsXPCComponents_Interfaces.prototype.nsIHttpEventSink= new nsIHttpEventSink();
-nsXPCComponents_Interfaces.prototype.nsIGlobalHistory3= new nsIGlobalHistory3();
-nsXPCComponents_Interfaces.prototype.nsIMicrosummarySet= new nsIMicrosummarySet();
-nsXPCComponents_Interfaces.prototype.nsIFeedEntry= new nsIFeedEntry();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedAngle= new nsIDOMSVGAnimatedAngle();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULDocument_MOZILLA_1_8_BRANCH= new nsIDOMXULDocument_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_Constructor= new nsIXPCComponents_Constructor();
-nsXPCComponents_Interfaces.prototype.nsIUTF8ConverterService= new nsIUTF8ConverterService();
-nsXPCComponents_Interfaces.prototype.nsIDOMLSSerializer= new nsIDOMLSSerializer();
-nsXPCComponents_Interfaces.prototype.nsIBufferedInputStream= new nsIBufferedInputStream();
-nsXPCComponents_Interfaces.prototype.nsIHTMLInlineTableEditor= new nsIHTMLInlineTableEditor();
-nsXPCComponents_Interfaces.prototype.nsIDOMMimeType= new nsIDOMMimeType();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLParamElement= new nsIDOMHTMLParamElement();
-nsXPCComponents_Interfaces.prototype.nsIFeedResultService= new nsIFeedResultService();
-nsXPCComponents_Interfaces.prototype.nsIRequestObserver= new nsIRequestObserver();
-nsXPCComponents_Interfaces.prototype.nsIXPCConstructor= new nsIXPCConstructor();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegMovetoAbs= new nsIDOMSVGPathSegMovetoAbs();
-nsXPCComponents_Interfaces.prototype.nsIScriptableInputStream= new nsIScriptableInputStream();
-nsXPCComponents_Interfaces.prototype.nsIAddonUpdateCheckListener= new nsIAddonUpdateCheckListener();
-nsXPCComponents_Interfaces.prototype.nsIControllerCommandTable= new nsIControllerCommandTable();
-nsXPCComponents_Interfaces.prototype.nsIDNSRecord= new nsIDNSRecord();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteResult= new nsIAutoCompleteResult();
-nsXPCComponents_Interfaces.prototype.nsIAsyncOutputStream= new nsIAsyncOutputStream();
-nsXPCComponents_Interfaces.prototype.nsIDirectoryServiceProvider2= new nsIDirectoryServiceProvider2();
-nsXPCComponents_Interfaces.prototype.nsIEditorIMESupport= new nsIEditorIMESupport();
-nsXPCComponents_Interfaces.prototype.nsISelection2= new nsISelection2();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLHeadingElement= new nsIDOMHTMLHeadingElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMText= new nsIDOMText();
-nsXPCComponents_Interfaces.prototype.nsIDOMClientInformation= new nsIDOMClientInformation();
-nsXPCComponents_Interfaces.prototype.nsIDOMCanvasRenderingContext2D= new nsIDOMCanvasRenderingContext2D();
-nsXPCComponents_Interfaces.prototype.nsIStreamListener= new nsIStreamListener();
-nsXPCComponents_Interfaces.prototype.nsIOutputStreamCallback= new nsIOutputStreamCallback();
-nsXPCComponents_Interfaces.prototype.jsdIScriptEnumerator= new jsdIScriptEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIClipboardImage= new nsIClipboardImage();
-nsXPCComponents_Interfaces.prototype.nsIBoxObject= new nsIBoxObject();
-nsXPCComponents_Interfaces.prototype.nsICloseAllWindows= new nsICloseAllWindows();
-nsXPCComponents_Interfaces.prototype.nsIScreenManager= new nsIScreenManager();
-nsXPCComponents_Interfaces.prototype.nsIUpdateTimerManager= new nsIUpdateTimerManager();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedPreserveAspectRatio= new nsIDOMSVGAnimatedPreserveAspectRatio();
-nsXPCComponents_Interfaces.prototype.nsIHttpChannel= new nsIHttpChannel();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULDescriptionElement= new nsIDOMXULDescriptionElement();
-nsXPCComponents_Interfaces.prototype.nsISupportsPRTime= new nsISupportsPRTime();
-nsXPCComponents_Interfaces.prototype.nsIBookmarkTransactionManager= new nsIBookmarkTransactionManager();
-nsXPCComponents_Interfaces.prototype.nsIClientAuthDialogs= new nsIClientAuthDialogs();
-nsXPCComponents_Interfaces.prototype.nsISelection= new nsISelection();
-nsXPCComponents_Interfaces.prototype.nsIRDFInt= new nsIRDFInt();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGLengthList= new nsIDOMSVGLengthList();
-nsXPCComponents_Interfaces.prototype.nsIDOMCSSStyleRule= new nsIDOMCSSStyleRule();
-nsXPCComponents_Interfaces.prototype.nsIServiceManager= new nsIServiceManager();
-nsXPCComponents_Interfaces.prototype.nsIShellService_MOZILLA_1_8_BRANCH= new nsIShellService_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsILoadGroup= new nsILoadGroup();
-nsXPCComponents_Interfaces.prototype.nsIExtensionManager= new nsIExtensionManager();
-nsXPCComponents_Interfaces.prototype.nsICharsetResolver= new nsICharsetResolver();
-nsXPCComponents_Interfaces.prototype.nsICookieManager2= new nsICookieManager2();
-nsXPCComponents_Interfaces.prototype.nsIScriptableDataType= new nsIScriptableDataType();
-nsXPCComponents_Interfaces.prototype.nsIMIMEInfo= new nsIMIMEInfo();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAnimatedPathData= new nsIDOMSVGAnimatedPathData();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGTransform= new nsIDOMSVGTransform();
-nsXPCComponents_Interfaces.prototype.nsIWebNavigation= new nsIWebNavigation();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocument= new nsIDOMDocument();
-nsXPCComponents_Interfaces.prototype.nsIDOMProcessingInstruction= new nsIDOMProcessingInstruction();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTextAreaElement= new nsIDOMHTMLTextAreaElement();
-nsXPCComponents_Interfaces.prototype.nsIRDFLiteral= new nsIRDFLiteral();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGAngle= new nsIDOMSVGAngle();
-nsXPCComponents_Interfaces.prototype.nsIDOMXPathEvaluator= new nsIDOMXPathEvaluator();
-nsXPCComponents_Interfaces.prototype.nsITableEditor= new nsITableEditor();
-nsXPCComponents_Interfaces.prototype.nsIPrintOptions= new nsIPrintOptions();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegLinetoAbs= new nsIDOMSVGPathSegLinetoAbs();
-nsXPCComponents_Interfaces.prototype.nsISchemaAttribute= new nsISchemaAttribute();
-nsXPCComponents_Interfaces.prototype.nsIBrowserBoxObject= new nsIBrowserBoxObject();
-nsXPCComponents_Interfaces.prototype.nsIPrintingPromptService= new nsIPrintingPromptService();
-nsXPCComponents_Interfaces.prototype.nsISOAPOperationBinding= new nsISOAPOperationBinding();
-nsXPCComponents_Interfaces.prototype.nsIDOMElementCSSInlineStyle= new nsIDOMElementCSSInlineStyle();
-nsXPCComponents_Interfaces.prototype.nsIWritableVariant= new nsIWritableVariant();
-nsXPCComponents_Interfaces.prototype.nsICommandLine= new nsICommandLine();
-nsXPCComponents_Interfaces.prototype.nsIBookmarksService_MOZILLA_1_8_BRANCH= new nsIBookmarksService_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIRDFXMLParser= new nsIRDFXMLParser();
-nsXPCComponents_Interfaces.prototype.nsISchemaCollection= new nsISchemaCollection();
-nsXPCComponents_Interfaces.prototype.nsIURIRefObject= new nsIURIRefObject();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLFormElement= new nsIDOMNSHTMLFormElement();
-nsXPCComponents_Interfaces.prototype.nsIXTFXULVisualWrapper= new nsIXTFXULVisualWrapper();
-nsXPCComponents_Interfaces.prototype.nsICollection= new nsICollection();
-nsXPCComponents_Interfaces.prototype.nsISAXAttributes= new nsISAXAttributes();
-nsXPCComponents_Interfaces.prototype.nsIJSXMLHttpRequest= new nsIJSXMLHttpRequest();
-nsXPCComponents_Interfaces.prototype.nsIProgressEventSink= new nsIProgressEventSink();
-nsXPCComponents_Interfaces.prototype.nsIDataChannel= new nsIDataChannel();
-nsXPCComponents_Interfaces.prototype.nsIAuthPromptProvider= new nsIAuthPromptProvider();
-nsXPCComponents_Interfaces.prototype.nsIContentViewerFile= new nsIContentViewerFile();
-nsXPCComponents_Interfaces.prototype.nsITreeContentView= new nsITreeContentView();
-nsXPCComponents_Interfaces.prototype.nsIConverterInputStream= new nsIConverterInputStream();
-nsXPCComponents_Interfaces.prototype.nsIScreen= new nsIScreen();
-nsXPCComponents_Interfaces.prototype.nsIDocCharset= new nsIDocCharset();
-nsXPCComponents_Interfaces.prototype.nsISOAPPropertyBagMutator= new nsISOAPPropertyBagMutator();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULTextBoxElement= new nsIDOMXULTextBoxElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMRGBColor= new nsIDOMRGBColor();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLTableCaptionElement= new nsIDOMHTMLTableCaptionElement();
-nsXPCComponents_Interfaces.prototype.nsIIFrameBoxObject= new nsIIFrameBoxObject();
-nsXPCComponents_Interfaces.prototype.nsIPopupWindowManager= new nsIPopupWindowManager();
-nsXPCComponents_Interfaces.prototype.nsISupportsInterfacePointer= new nsISupportsInterfacePointer();
-nsXPCComponents_Interfaces.prototype.nsIUpdateCheckListener= new nsIUpdateCheckListener();
-nsXPCComponents_Interfaces.prototype.nsIByteArrayInputStream= new nsIByteArrayInputStream();
-nsXPCComponents_Interfaces.prototype.nsISOAPEncoding= new nsISOAPEncoding();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGViewSpec= new nsIDOMSVGViewSpec();
-nsXPCComponents_Interfaces.prototype.nsIWebContentHandlerInfo= new nsIWebContentHandlerInfo();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLFormControlList= new nsIDOMNSHTMLFormControlList();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULTreeElement= new nsIDOMXULTreeElement();
-nsXPCComponents_Interfaces.prototype.nsIFrameLoaderOwner= new nsIFrameLoaderOwner();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHistory= new nsIDOMNSHistory();
-nsXPCComponents_Interfaces.prototype.nsISessionRoaming= new nsISessionRoaming();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSXPathExpression= new nsIDOMNSXPathExpression();
-nsXPCComponents_Interfaces.prototype.nsIDragSession= new nsIDragSession();
-nsXPCComponents_Interfaces.prototype.nsITransactionList= new nsITransactionList();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoCubicRel= new nsIDOMSVGPathSegCurvetoCubicRel();
-nsXPCComponents_Interfaces.prototype.nsIClipboardDragDropHookList= new nsIClipboardDragDropHookList();
-nsXPCComponents_Interfaces.prototype.nsIScrollable= new nsIScrollable();
-nsXPCComponents_Interfaces.prototype.gfxIFormats= new gfxIFormats();
-nsXPCComponents_Interfaces.prototype.nsIWinAppHelper= new nsIWinAppHelper();
-nsXPCComponents_Interfaces.prototype.nsIDOMNodeFilter= new nsIDOMNodeFilter();
-nsXPCComponents_Interfaces.prototype.nsISocketTransportService= new nsISocketTransportService();
-nsXPCComponents_Interfaces.prototype.nsISelectionDisplay= new nsISelectionDisplay();
-nsXPCComponents_Interfaces.prototype.nsIJSCID= new nsIJSCID();
-nsXPCComponents_Interfaces.prototype.nsIObserver= new nsIObserver();
-nsXPCComponents_Interfaces.prototype.nsIJSID= new nsIJSID();
-nsXPCComponents_Interfaces.prototype.nsISupportsChar= new nsISupportsChar();
-nsXPCComponents_Interfaces.prototype.nsIPrintProgressParams= new nsIPrintProgressParams();
-nsXPCComponents_Interfaces.prototype.nsIDocShell_MOZILLA_1_8_BRANCH= new nsIDocShell_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIProtocolHandler= new nsIProtocolHandler();
-nsXPCComponents_Interfaces.prototype.nsIDOMDOMImplementation= new nsIDOMDOMImplementation();
-nsXPCComponents_Interfaces.prototype.nsPIXPIProxy= new nsPIXPIProxy();
-nsXPCComponents_Interfaces.prototype.nsITreeBoxObject= new nsITreeBoxObject();
-nsXPCComponents_Interfaces.prototype.nsIPersistentProperties= new nsIPersistentProperties();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_utils_Sandbox= new nsIXPCComponents_utils_Sandbox();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleRetrieval= new nsIAccessibleRetrieval();
-nsXPCComponents_Interfaces.prototype.nsIExtensionManager_MOZILLA_1_8_BRANCH= new nsIExtensionManager_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIScriptableUnescapeHTML= new nsIScriptableUnescapeHTML();
-nsXPCComponents_Interfaces.prototype.nsIStreamConverter= new nsIStreamConverter();
-nsXPCComponents_Interfaces.prototype.nsIIOService= new nsIIOService();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLOptionElement= new nsIDOMNSHTMLOptionElement();
-nsXPCComponents_Interfaces.prototype.imgIDecoderObserver= new imgIDecoderObserver();
-nsXPCComponents_Interfaces.prototype.nsIPrinterEnumerator= new nsIPrinterEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIDOMEventTarget= new nsIDOMEventTarget();
-nsXPCComponents_Interfaces.prototype.nsIRegistryValue= new nsIRegistryValue();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGScriptElement= new nsIDOMSVGScriptElement();
-nsXPCComponents_Interfaces.prototype.nsIMarkupDocumentViewer= new nsIMarkupDocumentViewer();
-nsXPCComponents_Interfaces.prototype.nsIFTPEventSink= new nsIFTPEventSink();
-nsXPCComponents_Interfaces.prototype.nsIPluginManager= new nsIPluginManager();
-nsXPCComponents_Interfaces.prototype.nsIBrowserProfileMigrator= new nsIBrowserProfileMigrator();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs= new nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLBaseElement= new nsIDOMHTMLBaseElement();
-nsXPCComponents_Interfaces.prototype.nsIFileInputStream= new nsIFileInputStream();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLMenuElement= new nsIDOMHTMLMenuElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLDivElement= new nsIDOMHTMLDivElement();
-nsXPCComponents_Interfaces.prototype.nsIUpdate= new nsIUpdate();
-nsXPCComponents_Interfaces.prototype.nsIXSLTProcessor= new nsIXSLTProcessor();
-nsXPCComponents_Interfaces.prototype.nsIDOMBeforeUnloadEvent= new nsIDOMBeforeUnloadEvent();
-nsXPCComponents_Interfaces.prototype.nsISOAPPartBinding= new nsISOAPPartBinding();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLMetaElement= new nsIDOMHTMLMetaElement();
-nsXPCComponents_Interfaces.prototype.nsIXTFStyledElementWrapper= new nsIXTFStyledElementWrapper();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGLocatable= new nsIDOMSVGLocatable();
-nsXPCComponents_Interfaces.prototype.nsISAXMutableAttributes= new nsISAXMutableAttributes();
-nsXPCComponents_Interfaces.prototype.nsISchemaElement= new nsISchemaElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULSelectControlItemElement= new nsIDOMXULSelectControlItemElement();
-nsXPCComponents_Interfaces.prototype.nsIPrefBranchInternal= new nsIPrefBranchInternal();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegList= new nsIDOMSVGPathSegList();
-nsXPCComponents_Interfaces.prototype.mozIStorageStatement= new mozIStorageStatement();
-nsXPCComponents_Interfaces.prototype.nsIStringBundle= new nsIStringBundle();
-nsXPCComponents_Interfaces.prototype.nsISHEntry= new nsISHEntry();
-nsXPCComponents_Interfaces.prototype.nsIDOMNavigator= new nsIDOMNavigator();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_Classes= new nsIXPCComponents_Classes();
-nsXPCComponents_Interfaces.prototype.nsPIEditorTransaction= new nsPIEditorTransaction();
-nsXPCComponents_Interfaces.prototype.nsISearchSubmission= new nsISearchSubmission();
-nsXPCComponents_Interfaces.prototype.nsIDOMWindowInternal= new nsIDOMWindowInternal();
-nsXPCComponents_Interfaces.prototype.nsITreeSelection= new nsITreeSelection();
-nsXPCComponents_Interfaces.prototype.nsIPropertyBag= new nsIPropertyBag();
-nsXPCComponents_Interfaces.prototype.nsIPrintSettings= new nsIPrintSettings();
-nsXPCComponents_Interfaces.prototype.nsIFastLoadWriteControl= new nsIFastLoadWriteControl();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGSymbolElement= new nsIDOMSVGSymbolElement();
-nsXPCComponents_Interfaces.prototype.mozIStorageFunction= new mozIStorageFunction();
-nsXPCComponents_Interfaces.prototype.nsIDebug= new nsIDebug();
-nsXPCComponents_Interfaces.prototype.nsIServerSocket= new nsIServerSocket();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULDocument= new nsIDOMXULDocument();
-nsXPCComponents_Interfaces.prototype.nsIDOMPopupBlockedEvent= new nsIDOMPopupBlockedEvent();
-nsXPCComponents_Interfaces.prototype.nsIEditorSpellCheck= new nsIEditorSpellCheck();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLScriptElement= new nsIDOMHTMLScriptElement();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserChromeFocus= new nsIWebBrowserChromeFocus();
-nsXPCComponents_Interfaces.prototype.nsIEntityConverter= new nsIEntityConverter();
-nsXPCComponents_Interfaces.prototype.nsISimpleEnumerator= new nsISimpleEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIEmbeddingSiteWindow2= new nsIEmbeddingSiteWindow2();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLBodyElement= new nsIDOMHTMLBodyElement();
-nsXPCComponents_Interfaces.prototype.nsIChannelEventSink= new nsIChannelEventSink();
-nsXPCComponents_Interfaces.prototype.nsICookie= new nsICookie();
-nsXPCComponents_Interfaces.prototype.nsIPrintingPrompt= new nsIPrintingPrompt();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLOptionElement= new nsIDOMHTMLOptionElement();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_ClassesByID= new nsIXPCComponents_ClassesByID();
-nsXPCComponents_Interfaces.prototype.nsIMultiPartChannel= new nsIMultiPartChannel();
-nsXPCComponents_Interfaces.prototype.nsIFrameLoader= new nsIFrameLoader();
-nsXPCComponents_Interfaces.prototype.nsIAccessibleCaret= new nsIAccessibleCaret();
-nsXPCComponents_Interfaces.prototype.nsIFeedWriter= new nsIFeedWriter();
-nsXPCComponents_Interfaces.prototype.nsIMIMEService= new nsIMIMEService();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULCommandDispatcher= new nsIDOMXULCommandDispatcher();
-nsXPCComponents_Interfaces.prototype.nsICommandParams= new nsICommandParams();
-nsXPCComponents_Interfaces.prototype.nsIX509CertDB= new nsIX509CertDB();
-nsXPCComponents_Interfaces.prototype.nsIDOMRangeException= new nsIDOMRangeException();
-nsXPCComponents_Interfaces.prototype.nsIRDFCompositeDataSource= new nsIRDFCompositeDataSource();
-nsXPCComponents_Interfaces.prototype.nsIScriptableInterfaces= new nsIScriptableInterfaces();
-nsXPCComponents_Interfaces.prototype.nsILineInputStream= new nsILineInputStream();
-nsXPCComponents_Interfaces.prototype.nsIWeakReference= new nsIWeakReference();
-nsXPCComponents_Interfaces.prototype.nsITypeAheadFind_MOZILLA_1_8_BRANCH= new nsITypeAheadFind_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPathSegLinetoVerticalRel= new nsIDOMSVGPathSegLinetoVerticalRel();
-nsXPCComponents_Interfaces.prototype.nsISupports= new nsISupports();
-nsXPCComponents_Interfaces.prototype.nsIWebProgress= new nsIWebProgress();
-nsXPCComponents_Interfaces.prototype.nsIDOMGetSVGDocument= new nsIDOMGetSVGDocument();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteController_MOZILLA_1_8_BRANCH= new nsIAutoCompleteController_MOZILLA_1_8_BRANCH();
-nsXPCComponents_Interfaces.prototype.nsISSLStatus= new nsISSLStatus();
-nsXPCComponents_Interfaces.prototype.nsIDOMSmartCardEvent= new nsIDOMSmartCardEvent();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULElement= new nsIDOMXULElement();
-nsXPCComponents_Interfaces.prototype.nsIClipboardOwner= new nsIClipboardOwner();
-nsXPCComponents_Interfaces.prototype.nsIAuthPromptWrapper= new nsIAuthPromptWrapper();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserChrome= new nsIWebBrowserChrome();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLAreaElement= new nsIDOMHTMLAreaElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGStylable= new nsIDOMSVGStylable();
-nsXPCComponents_Interfaces.prototype.nsILocalFileWin= new nsILocalFileWin();
-nsXPCComponents_Interfaces.prototype.nsIWebBrowserFind= new nsIWebBrowserFind();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGUseElement= new nsIDOMSVGUseElement();
-nsXPCComponents_Interfaces.prototype.nsICertVerificationResult= new nsICertVerificationResult();
-nsXPCComponents_Interfaces.prototype.nsICertVerificationListener= new nsICertVerificationListener();
-nsXPCComponents_Interfaces.prototype.nsIMicrosummaryService= new nsIMicrosummaryService();
-nsXPCComponents_Interfaces.prototype.rdfITripleVisitor= new rdfITripleVisitor();
-nsXPCComponents_Interfaces.prototype.jsdIErrorHook= new jsdIErrorHook();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGGElement= new nsIDOMSVGGElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMPluginArray= new nsIDOMPluginArray();
-nsXPCComponents_Interfaces.prototype.nsICipherInfo= new nsICipherInfo();
-nsXPCComponents_Interfaces.prototype.nsIDOMNamedNodeMap= new nsIDOMNamedNodeMap();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLBaseFontElement= new nsIDOMHTMLBaseFontElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMXULCheckboxElement= new nsIDOMXULCheckboxElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMWindow= new nsIDOMWindow();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLDirectoryElement= new nsIDOMHTMLDirectoryElement();
-nsXPCComponents_Interfaces.prototype.inIFileSearch= new inIFileSearch();
-nsXPCComponents_Interfaces.prototype.nsIDOMNSHTMLAreaElement= new nsIDOMNSHTMLAreaElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLImageElement= new nsIDOMHTMLImageElement();
-nsXPCComponents_Interfaces.prototype.nsIX509CertDB2= new nsIX509CertDB2();
-nsXPCComponents_Interfaces.prototype.nsIControllers= new nsIControllers();
-nsXPCComponents_Interfaces.prototype.nsISchemaAttributeGroup= new nsISchemaAttributeGroup();
-nsXPCComponents_Interfaces.prototype.nsIFeedContainer= new nsIFeedContainer();
-nsXPCComponents_Interfaces.prototype.nsIUnicharStreamLoaderObserver= new nsIUnicharStreamLoaderObserver();
-nsXPCComponents_Interfaces.prototype.nsIEmbeddingSiteWindow= new nsIEmbeddingSiteWindow();
-nsXPCComponents_Interfaces.prototype.nsICacheEntryInfo= new nsICacheEntryInfo();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGFitToViewBox= new nsIDOMSVGFitToViewBox();
-nsXPCComponents_Interfaces.prototype.jsdIFilterEnumerator= new jsdIFilterEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIDNSService= new nsIDNSService();
-nsXPCComponents_Interfaces.prototype.nsIScriptableInterfaceInfo= new nsIScriptableInterfaceInfo();
-nsXPCComponents_Interfaces.prototype.nsIPK11Token= new nsIPK11Token();
-nsXPCComponents_Interfaces.prototype.nsIControllerCommand= new nsIControllerCommand();
-nsXPCComponents_Interfaces.prototype.nsIXSLTProcessorPrivate= new nsIXSLTProcessorPrivate();
-nsXPCComponents_Interfaces.prototype.nsISOAPParameter= new nsISOAPParameter();
-nsXPCComponents_Interfaces.prototype.nsIDOMHTMLOListElement= new nsIDOMHTMLOListElement();
-nsXPCComponents_Interfaces.prototype.nsITimerCallback= new nsITimerCallback();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents= new nsIXPCComponents();
-nsXPCComponents_Interfaces.prototype.nsISocketProviderService= new nsISocketProviderService();
-nsXPCComponents_Interfaces.prototype.nsIWebServiceSOAPCallContext= new nsIWebServiceSOAPCallContext();
-nsXPCComponents_Interfaces.prototype.nsIAuthPrompt= new nsIAuthPrompt();
-nsXPCComponents_Interfaces.prototype.nsIAtomService= new nsIAtomService();
-nsXPCComponents_Interfaces.prototype.nsIHTTPIndex= new nsIHTTPIndex();
-nsXPCComponents_Interfaces.prototype.nsICryptoHash= new nsICryptoHash();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentRange= new nsIDOMDocumentRange();
-nsXPCComponents_Interfaces.prototype.nsIProfileUnlocker= new nsIProfileUnlocker();
-nsXPCComponents_Interfaces.prototype.nsIDOMNodeIterator= new nsIDOMNodeIterator();
-nsXPCComponents_Interfaces.prototype.nsIWebNavigationInfo= new nsIWebNavigationInfo();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteSearch= new nsIAutoCompleteSearch();
-nsXPCComponents_Interfaces.prototype.nsIEncodedChannel= new nsIEncodedChannel();
-nsXPCComponents_Interfaces.prototype.nsIToolkitProfileService= new nsIToolkitProfileService();
-nsXPCComponents_Interfaces.prototype.jsdIContextEnumerator= new jsdIContextEnumerator();
-nsXPCComponents_Interfaces.prototype.nsIRDFContainer= new nsIRDFContainer();
-nsXPCComponents_Interfaces.prototype.nsIScriptableDateFormat= new nsIScriptableDateFormat();
-nsXPCComponents_Interfaces.prototype.nsIDOMDocumentFragment= new nsIDOMDocumentFragment();
-nsXPCComponents_Interfaces.prototype.nsIDOMEntityReference= new nsIDOMEntityReference();
-nsXPCComponents_Interfaces.prototype.nsIProperties= new nsIProperties();
-nsXPCComponents_Interfaces.prototype.nsIUpdatePrompt= new nsIUpdatePrompt();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGRectElement= new nsIDOMSVGRectElement();
-nsXPCComponents_Interfaces.prototype.mozITXTToHTMLConv= new mozITXTToHTMLConv();
-nsXPCComponents_Interfaces.prototype.nsIMicrosummaryObserver= new nsIMicrosummaryObserver();
-nsXPCComponents_Interfaces.prototype.nsIDirectoryServiceProvider= new nsIDirectoryServiceProvider();
-nsXPCComponents_Interfaces.prototype.nsIDocShellLoadInfo= new nsIDocShellLoadInfo();
-nsXPCComponents_Interfaces.prototype.nsIXPCComponents_Results= new nsIXPCComponents_Results();
-nsXPCComponents_Interfaces.prototype.nsIRDFDate= new nsIRDFDate();
-nsXPCComponents_Interfaces.prototype.nsIContentViewerEdit= new nsIContentViewerEdit();
-nsXPCComponents_Interfaces.prototype.nsISupportsPrimitive= new nsISupportsPrimitive();
-nsXPCComponents_Interfaces.prototype.nsIXULTreeBuilderObserver= new nsIXULTreeBuilderObserver();
-nsXPCComponents_Interfaces.prototype.nsISSLStatusProvider= new nsISSLStatusProvider();
-nsXPCComponents_Interfaces.prototype.rdfISerializer= new rdfISerializer();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGPolygonElement= new nsIDOMSVGPolygonElement();
-nsXPCComponents_Interfaces.prototype.nsIDOMStorageList= new nsIDOMStorageList();
-nsXPCComponents_Interfaces.prototype.nsIAboutModule= new nsIAboutModule();
-nsXPCComponents_Interfaces.prototype.nsIWritablePropertyBag2= new nsIWritablePropertyBag2();
-nsXPCComponents_Interfaces.prototype.nsIDocumentStateListener= new nsIDocumentStateListener();
-nsXPCComponents_Interfaces.prototype.nsISHTransaction= new nsISHTransaction();
-nsXPCComponents_Interfaces.prototype.nsIRDFXMLSinkObserver= new nsIRDFXMLSinkObserver();
-nsXPCComponents_Interfaces.prototype.nsIOnReadyStateChangeHandler= new nsIOnReadyStateChangeHandler();
-nsXPCComponents_Interfaces.prototype.nsIASN1Sequence= new nsIASN1Sequence();
-nsXPCComponents_Interfaces.prototype.nsIAutoCompleteSimpleResult= new nsIAutoCompleteSimpleResult();
-nsXPCComponents_Interfaces.prototype.nsIDOMToString= new nsIDOMToString();
-nsXPCComponents_Interfaces.prototype.nsIUpdateManager= new nsIUpdateManager();
-nsXPCComponents_Interfaces.prototype.nsIDOMScreen= new nsIDOMScreen();
-nsXPCComponents_Interfaces.prototype.nsIStreamListenerProxy= new nsIStreamListenerProxy();
-nsXPCComponents_Interfaces.prototype.nsISchemaLoader= new nsISchemaLoader();
-nsXPCComponents_Interfaces.prototype.nsPIAccessNode= new nsPIAccessNode();
-nsXPCComponents_Interfaces.prototype.nsIUploadChannel= new nsIUploadChannel();
-nsXPCComponents_Interfaces.prototype.nsIController= new nsIController();
-nsXPCComponents_Interfaces.prototype.nsIDOMSVGURIReference= new nsIDOMSVGURIReference();
-nsXPCComponents_Interfaces.prototype.nsIBadCertListener= new nsIBadCertListener();
-nsXPCComponents_Interfaces.prototype.nsIDOMStorageEvent= new nsIDOMStorageEvent();
-nsIDOMStyleSheet.prototype= new Array();
-function nsIDOMStyleSheet(){};
-nsIWSDLPart.prototype= new Array();
-function nsIWSDLPart(){};
-nsIUnicharStreamListener.prototype= new Array();
-function nsIUnicharStreamListener(){};
-nsIContentSniffer.prototype= new Array();
-function nsIContentSniffer(){};
-nsIXmlRpcClient.prototype= new Array();
-function nsIXmlRpcClient(){};
-nsIXmlRpcClient.prototype.INT=0;
-nsIXmlRpcClient.prototype.BOOLEAN=0;
-nsIXmlRpcClient.prototype.STRING=0;
-nsIXmlRpcClient.prototype.DOUBLE=0;
-nsIXmlRpcClient.prototype.DATETIME=0;
-nsIXmlRpcClient.prototype.ARRAY=0;
-nsIXmlRpcClient.prototype.STRUCT=0;
-nsIInterfaceInfoToIDL.prototype= new Array();
-function nsIInterfaceInfoToIDL(){};
-nsITimer.prototype= new Array();
-function nsITimer(){};
-nsITimer.prototype.TYPE_ONE_SHOT="";
-nsITimer.prototype.TYPE_REPEATING_SLACK=0;
-nsITimer.prototype.TYPE_REPEATING_PRECISE=0;
-nsIWebServiceProxyFactory.prototype= new Array();
-function nsIWebServiceProxyFactory(){};
-nsIDOMNSXBLFormControl.prototype= new Array();
-function nsIDOMNSXBLFormControl(){};
-nsIScrollBoxObject.prototype= new Array();
-function nsIScrollBoxObject(){};
-nsICachingChannel.prototype= new Array();
-function nsICachingChannel(){};
-nsICachingChannel.prototype.LOAD_BYPASS_LOCAL_CACHE=0;
-nsICachingChannel.prototype.LOAD_BYPASS_LOCAL_CACHE_IF_BUSY=0;
-nsICachingChannel.prototype.LOAD_ONLY_FROM_CACHE=0;
-nsICachingChannel.prototype.LOAD_ONLY_IF_MODIFIED=0;
-nsIDOMXMLDocument.prototype= new Array();
-function nsIDOMXMLDocument(){};
-nsIDOMXMLDocument.prototype.ELEMENT_NODE=0;
-nsIDOMXMLDocument.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXMLDocument.prototype.TEXT_NODE=0;
-nsIDOMXMLDocument.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXMLDocument.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXMLDocument.prototype.ENTITY_NODE=0;
-nsIDOMXMLDocument.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXMLDocument.prototype.COMMENT_NODE=0;
-nsIDOMXMLDocument.prototype.DOCUMENT_NODE=0;
-nsIDOMXMLDocument.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXMLDocument.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXMLDocument.prototype.NOTATION_NODE=0;
-nsICertSelect.prototype= new Array();
-function nsICertSelect(){};
-nsIJARURI.prototype= new Array();
-function nsIJARURI(){};
-nsIEditorSpellCheck_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIEditorSpellCheck_MOZILLA_1_8_BRANCH(){};
-nsIZipReader.prototype= new Array();
-function nsIZipReader(){};
-nsISOAPService.prototype= new Array();
-function nsISOAPService(){};
-nsIPropertyBag2.prototype= new Array();
-function nsIPropertyBag2(){};
-nsILocalFile.prototype= new Array();
-function nsILocalFile(){};
-nsILocalFile.prototype.NORMAL_FILE_TYPE="";
-nsILocalFile.prototype.DIRECTORY_TYPE=0;
-nsIDOMStorageItem.prototype= new Array();
-function nsIDOMStorageItem(){};
-nsISupportsPRInt16.prototype= new Array();
-function nsISupportsPRInt16(){};
-nsISupportsPRInt16.prototype.TYPE_ID=0;
-nsISupportsPRInt16.prototype.TYPE_CSTRING=0;
-nsISupportsPRInt16.prototype.TYPE_STRING=0;
-nsISupportsPRInt16.prototype.TYPE_PRBOOL=0;
-nsISupportsPRInt16.prototype.TYPE_PRUINT8=0;
-nsISupportsPRInt16.prototype.TYPE_PRUINT16=0;
-nsISupportsPRInt16.prototype.TYPE_PRUINT32=0;
-nsISupportsPRInt16.prototype.TYPE_PRUINT64=0;
-nsISupportsPRInt16.prototype.TYPE_PRTIME=0;
-nsISupportsPRInt16.prototype.TYPE_CHAR=0;
-nsISupportsPRInt16.prototype.TYPE_PRINT16=0;
-nsISupportsPRInt16.prototype.TYPE_PRINT32=0;
-nsISupportsPRInt16.prototype.TYPE_PRINT64=0;
-nsISupportsPRInt16.prototype.TYPE_FLOAT=0;
-nsISupportsPRInt16.prototype.TYPE_DOUBLE=0;
-nsISupportsPRInt16.prototype.TYPE_VOID=0;
-nsISupportsPRInt16.prototype.TYPE_INTERFACE_POINTER=0;
-nsIStorageStream.prototype= new Array();
-function nsIStorageStream(){};
-nsIDOMLSInput.prototype= new Array();
-function nsIDOMLSInput(){};
-nsIDOMMutationEvent.prototype= new Array();
-function nsIDOMMutationEvent(){};
-nsIDOMMutationEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMMutationEvent.prototype.AT_TARGET=0;
-nsIDOMMutationEvent.prototype.BUBBLING_PHASE=0;
-nsIDOMMutationEvent.prototype.MODIFICATION=0;
-nsIDOMMutationEvent.prototype.ADDITION=0;
-nsIDOMMutationEvent.prototype.REMOVAL=0;
-nsIDownloadObserver.prototype= new Array();
-function nsIDownloadObserver(){};
-nsIDOMSVGPathSegLinetoRel.prototype= new Array();
-function nsIDOMSVGPathSegLinetoRel(){};
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIDocumentLoader.prototype= new Array();
-function nsIDocumentLoader(){};
-nsIDOMHTMLTableCellElement.prototype= new Array();
-function nsIDOMHTMLTableCellElement(){};
-nsIDOMHTMLTableCellElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTableCellElement.prototype.NOTATION_NODE=0;
-nsIException.prototype= new Array();
-function nsIException(){};
-nsIUrlClassifierDBService.prototype= new Array();
-function nsIUrlClassifierDBService(){};
-nsIRDFDataSource.prototype= new Array();
-function nsIRDFDataSource(){};
-nsIPrefLocalizedString.prototype= new Array();
-function nsIPrefLocalizedString(){};
-nsIJSIID.prototype= new Array();
-function nsIJSIID(){};
-nsIHTMLObjectResizeListener.prototype= new Array();
-function nsIHTMLObjectResizeListener(){};
-nsPIProtocolProxyService.prototype= new Array();
-function nsPIProtocolProxyService(){};
-nsPIProtocolProxyService.prototype.RESOLVE_NON_BLOCKING=0;
-mozIStorageConnection.prototype= new Array();
-function mozIStorageConnection(){};
-mozIStorageConnection.prototype.TRANSACTION_DEFERRED="";
-mozIStorageConnection.prototype.TRANSACTION_IMMEDIATE=0;
-mozIStorageConnection.prototype.TRANSACTION_EXCLUSIVE=0;
-nsITextServicesFilter.prototype= new Array();
-function nsITextServicesFilter(){};
-nsIWSPInterfaceInfoService.prototype= new Array();
-function nsIWSPInterfaceInfoService(){};
-nsIWSDLSOAPBinding.prototype= new Array();
-function nsIWSDLSOAPBinding(){};
-nsIWSDLSOAPBinding.prototype.STYLE_RPC=0;
-nsIWSDLSOAPBinding.prototype.STYLE_DOCUMENT=0;
-nsISimpleStreamListener.prototype= new Array();
-function nsISimpleStreamListener(){};
-nsISearchContext.prototype= new Array();
-function nsISearchContext(){};
-nsIX509Cert.prototype= new Array();
-function nsIX509Cert(){};
-nsIX509Cert.prototype.UNKNOWN_CERT="";
-nsIX509Cert.prototype.CA_CERT=0;
-nsIX509Cert.prototype.USER_CERT=0;
-nsIX509Cert.prototype.EMAIL_CERT=0;
-nsIX509Cert.prototype.SERVER_CERT=0;
-nsIX509Cert.prototype.VERIFIED_OK="";
-nsIX509Cert.prototype.NOT_VERIFIED_UNKNOWN=0;
-nsIX509Cert.prototype.CERT_REVOKED=0;
-nsIX509Cert.prototype.CERT_EXPIRED=0;
-nsIX509Cert.prototype.CERT_NOT_TRUSTED=0;
-nsIX509Cert.prototype.ISSUER_NOT_TRUSTED=0;
-nsIX509Cert.prototype.ISSUER_UNKNOWN=0;
-nsIX509Cert.prototype.INVALID_CA=0;
-nsIX509Cert.prototype.USAGE_NOT_ALLOWED=0;
-nsIX509Cert.prototype.CERT_USAGE_SSLClient="";
-nsIX509Cert.prototype.CERT_USAGE_SSLServer=0;
-nsIX509Cert.prototype.CERT_USAGE_SSLServerWithStepUp=0;
-nsIX509Cert.prototype.CERT_USAGE_SSLCA=0;
-nsIX509Cert.prototype.CERT_USAGE_EmailSigner=0;
-nsIX509Cert.prototype.CERT_USAGE_EmailRecipient=0;
-nsIX509Cert.prototype.CERT_USAGE_ObjectSigner=0;
-nsIX509Cert.prototype.CERT_USAGE_UserCertImport=0;
-nsIX509Cert.prototype.CERT_USAGE_VerifyCA=0;
-nsIX509Cert.prototype.CERT_USAGE_ProtectedObjectSigner=0;
-nsIX509Cert.prototype.CERT_USAGE_StatusResponder=0;
-nsIX509Cert.prototype.CERT_USAGE_AnyCA=0;
-nsIRDFNode.prototype= new Array();
-function nsIRDFNode(){};
-nsIDOMSVGDescElement.prototype= new Array();
-function nsIDOMSVGDescElement(){};
-nsIDOMSVGDescElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGDescElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGDescElement.prototype.TEXT_NODE=0;
-nsIDOMSVGDescElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGDescElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGDescElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGDescElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGDescElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGDescElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGDescElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGDescElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGDescElement.prototype.NOTATION_NODE=0;
-nsIDOMCSSRule.prototype= new Array();
-function nsIDOMCSSRule(){};
-nsIDOMCSSRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSRule.prototype.STYLE_RULE=0;
-nsIDOMCSSRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSRule.prototype.PAGE_RULE=0;
-nsIProxyInfo.prototype= new Array();
-function nsIProxyInfo(){};
-nsIProxyInfo.prototype.TRANSPARENT_PROXY_RESOLVES_HOST=0;
-nsISupportsPRUint32.prototype= new Array();
-function nsISupportsPRUint32(){};
-nsISupportsPRUint32.prototype.TYPE_ID=0;
-nsISupportsPRUint32.prototype.TYPE_CSTRING=0;
-nsISupportsPRUint32.prototype.TYPE_STRING=0;
-nsISupportsPRUint32.prototype.TYPE_PRBOOL=0;
-nsISupportsPRUint32.prototype.TYPE_PRUINT8=0;
-nsISupportsPRUint32.prototype.TYPE_PRUINT16=0;
-nsISupportsPRUint32.prototype.TYPE_PRUINT32=0;
-nsISupportsPRUint32.prototype.TYPE_PRUINT64=0;
-nsISupportsPRUint32.prototype.TYPE_PRTIME=0;
-nsISupportsPRUint32.prototype.TYPE_CHAR=0;
-nsISupportsPRUint32.prototype.TYPE_PRINT16=0;
-nsISupportsPRUint32.prototype.TYPE_PRINT32=0;
-nsISupportsPRUint32.prototype.TYPE_PRINT64=0;
-nsISupportsPRUint32.prototype.TYPE_FLOAT=0;
-nsISupportsPRUint32.prototype.TYPE_DOUBLE=0;
-nsISupportsPRUint32.prototype.TYPE_VOID=0;
-nsISupportsPRUint32.prototype.TYPE_INTERFACE_POINTER=0;
-nsICurrentCharsetListener.prototype= new Array();
-function nsICurrentCharsetListener(){};
-nsIDOMSVGImageElement.prototype= new Array();
-function nsIDOMSVGImageElement(){};
-nsIDOMSVGImageElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGImageElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGImageElement.prototype.TEXT_NODE=0;
-nsIDOMSVGImageElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGImageElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGImageElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGImageElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGImageElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGImageElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGImageElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGImageElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGImageElement.prototype.NOTATION_NODE=0;
-nsIUrlClassifierDBServiceWorker.prototype= new Array();
-function nsIUrlClassifierDBServiceWorker(){};
-nsISecureBrowserUI.prototype= new Array();
-function nsISecureBrowserUI(){};
-nsIDOMHTMLParagraphElement.prototype= new Array();
-function nsIDOMHTMLParagraphElement(){};
-nsIDOMHTMLParagraphElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLParagraphElement.prototype.NOTATION_NODE=0;
-jsdIScriptHook.prototype= new Array();
-function jsdIScriptHook(){};
-nsIRunnable.prototype= new Array();
-function nsIRunnable(){};
-nsIDirectoryService.prototype= new Array();
-function nsIDirectoryService(){};
-nsIDNSListener.prototype= new Array();
-function nsIDNSListener(){};
-nsIPK11TokenDB.prototype= new Array();
-function nsIPK11TokenDB(){};
-nsISchemaParticle.prototype= new Array();
-function nsISchemaParticle(){};
-nsISchemaParticle.prototype.PARTICLE_TYPE_ELEMENT=0;
-nsISchemaParticle.prototype.PARTICLE_TYPE_MODEL_GROUP=0;
-nsISchemaParticle.prototype.PARTICLE_TYPE_ANY=0;
-nsISchemaParticle.prototype.OCCURRENCE_UNBOUNDED=0;
-nsPIDNSService.prototype= new Array();
-function nsPIDNSService(){};
-nsPIDNSService.prototype.RESOLVE_BYPASS_CACHE=0;
-nsPIDNSService.prototype.RESOLVE_CANONICAL_NAME=0;
-nsIXTFXMLVisual.prototype= new Array();
-function nsIXTFXMLVisual(){};
-nsIXTFXMLVisual.prototype.ELEMENT_TYPE_GENERIC_ELEMENT="";
-nsIXTFXMLVisual.prototype.ELEMENT_TYPE_SVG_VISUAL=0;
-nsIXTFXMLVisual.prototype.ELEMENT_TYPE_XML_VISUAL=0;
-nsIXTFXMLVisual.prototype.ELEMENT_TYPE_XUL_VISUAL=0;
-nsIXTFXMLVisual.prototype.ELEMENT_TYPE_BINDABLE=0;
-nsIXTFXMLVisual.prototype.NOTIFY_WILL_CHANGE_DOCUMENT=0;
-nsIXTFXMLVisual.prototype.NOTIFY_DOCUMENT_CHANGED=0;
-nsIXTFXMLVisual.prototype.NOTIFY_WILL_CHANGE_PARENT=0;
-nsIXTFXMLVisual.prototype.NOTIFY_PARENT_CHANGED=0;
-nsIXTFXMLVisual.prototype.NOTIFY_WILL_INSERT_CHILD=0;
-nsIXTFXMLVisual.prototype.NOTIFY_CHILD_INSERTED=0;
-nsIXTFXMLVisual.prototype.NOTIFY_WILL_APPEND_CHILD=0;
-nsIXTFXMLVisual.prototype.NOTIFY_CHILD_APPENDED=0;
-nsIXTFXMLVisual.prototype.NOTIFY_WILL_REMOVE_CHILD=0;
-nsIXTFXMLVisual.prototype.NOTIFY_CHILD_REMOVED=0;
-nsIXTFXMLVisual.prototype.NOTIFY_WILL_SET_ATTRIBUTE=0;
-nsIXTFXMLVisual.prototype.NOTIFY_ATTRIBUTE_SET=0;
-nsIXTFXMLVisual.prototype.NOTIFY_WILL_REMOVE_ATTRIBUTE=0;
-nsIXTFXMLVisual.prototype.NOTIFY_ATTRIBUTE_REMOVED=0;
-nsIXTFXMLVisual.prototype.NOTIFY_BEGIN_ADDING_CHILDREN=0;
-nsIXTFXMLVisual.prototype.NOTIFY_DONE_ADDING_CHILDREN=0;
-nsIXTFXMLVisual.prototype.NOTIFY_HANDLE_DEFAULT=0;
-nsIXTFXMLVisual.prototype.NOTIFY_DID_LAYOUT=0;
-nsIMIMEHeaderParam.prototype= new Array();
-function nsIMIMEHeaderParam(){};
-nsIScriptableInterfacesByID.prototype= new Array();
-function nsIScriptableInterfacesByID(){};
-nsIInstallLocation.prototype= new Array();
-function nsIInstallLocation(){};
-nsIInstallLocation.prototype.PRIORITY_APP_PROFILE="";
-nsIInstallLocation.prototype.PRIORITY_APP_SYSTEM_USER=0;
-nsIInstallLocation.prototype.PRIORITY_XRE_SYSTEM_USER=0;
-nsIInstallLocation.prototype.PRIORITY_APP_SYSTEM_GLOBAL=0;
-nsIInstallLocation.prototype.PRIORITY_XRE_SYSTEM_GLOBAL=0;
-nsIGlobalHistory.prototype= new Array();
-function nsIGlobalHistory(){};
-imgIContainerObserver.prototype= new Array();
-function imgIContainerObserver(){};
-nsIStringEnumerator.prototype= new Array();
-function nsIStringEnumerator(){};
-nsIHttpAuthManager.prototype= new Array();
-function nsIHttpAuthManager(){};
-nsIDOMSerializer.prototype= new Array();
-function nsIDOMSerializer(){};
-nsICacheMetaDataVisitor.prototype= new Array();
-function nsICacheMetaDataVisitor(){};
-nsIDOMNSHTMLDocument.prototype= new Array();
-function nsIDOMNSHTMLDocument(){};
-nsIGeneratingKeypairInfoDialogs.prototype= new Array();
-function nsIGeneratingKeypairInfoDialogs(){};
-jsdIEphemeral.prototype= new Array();
-function jsdIEphemeral(){};
-mozIStorageService.prototype= new Array();
-function mozIStorageService(){};
-nsIPrompt.prototype= new Array();
-function nsIPrompt(){};
-nsIPrompt.prototype.BUTTON_POS_0=0;
-nsIPrompt.prototype.BUTTON_POS_1=0;
-nsIPrompt.prototype.BUTTON_POS_2=0;
-nsIPrompt.prototype.BUTTON_TITLE_OK=0;
-nsIPrompt.prototype.BUTTON_TITLE_CANCEL=0;
-nsIPrompt.prototype.BUTTON_TITLE_YES=0;
-nsIPrompt.prototype.BUTTON_TITLE_NO=0;
-nsIPrompt.prototype.BUTTON_TITLE_SAVE=0;
-nsIPrompt.prototype.BUTTON_TITLE_DONT_SAVE=0;
-nsIPrompt.prototype.BUTTON_TITLE_REVERT=0;
-nsIPrompt.prototype.BUTTON_TITLE_IS_STRING=0;
-nsIPrompt.prototype.BUTTON_POS_0_DEFAULT="";
-nsIPrompt.prototype.BUTTON_POS_1_DEFAULT=0;
-nsIPrompt.prototype.BUTTON_POS_2_DEFAULT=0;
-nsIPrompt.prototype.BUTTON_DELAY_ENABLE=0;
-nsIPrompt.prototype.STD_OK_CANCEL_BUTTONS=0;
-nsIDocShellTreeOwner_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIDocShellTreeOwner_MOZILLA_1_8_BRANCH(){};
-nsIScriptableParamInfo.prototype= new Array();
-function nsIScriptableParamInfo(){};
-nsIDOMHTMLLegendElement.prototype= new Array();
-function nsIDOMHTMLLegendElement(){};
-nsIDOMHTMLLegendElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLLegendElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLLegendElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLLegendElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLLegendElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLLegendElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLLegendElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLLegendElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLLegendElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLLegendElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLLegendElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLLegendElement.prototype.NOTATION_NODE=0;
-nsICache.prototype= new Array();
-function nsICache(){};
-nsICache.prototype.ACCESS_NONE="";
-nsICache.prototype.ACCESS_READ=0;
-nsICache.prototype.ACCESS_WRITE=0;
-nsICache.prototype.ACCESS_READ_WRITE=0;
-nsICache.prototype.STORE_ANYWHERE="";
-nsICache.prototype.STORE_IN_MEMORY=0;
-nsICache.prototype.STORE_ON_DISK=0;
-nsICache.prototype.STORE_ON_DISK_AS_FILE=0;
-nsICache.prototype.NOT_STREAM_BASED="";
-nsICache.prototype.STREAM_BASED=0;
-nsICache.prototype.NON_BLOCKING="";
-nsICache.prototype.BLOCKING=0;
-nsIWyciwygChannel.prototype= new Array();
-function nsIWyciwygChannel(){};
-nsIWyciwygChannel.prototype.LOAD_NORMAL="";
-nsIWyciwygChannel.prototype.LOAD_BACKGROUND=0;
-nsIWyciwygChannel.prototype.INHIBIT_CACHING=0;
-nsIWyciwygChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIWyciwygChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIWyciwygChannel.prototype.LOAD_FROM_CACHE=0;
-nsIWyciwygChannel.prototype.VALIDATE_ALWAYS=0;
-nsIWyciwygChannel.prototype.VALIDATE_NEVER=0;
-nsIWyciwygChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIWyciwygChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIWyciwygChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIWyciwygChannel.prototype.LOAD_REPLACE=0;
-nsIWyciwygChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIWyciwygChannel.prototype.LOAD_TARGETED=0;
-nsIWyciwygChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-nsISecretDecoderRing.prototype= new Array();
-function nsISecretDecoderRing(){};
-nsIDOMHTMLFontElement.prototype= new Array();
-function nsIDOMHTMLFontElement(){};
-nsIDOMHTMLFontElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLFontElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLFontElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLFontElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLFontElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLFontElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLFontElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLFontElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLFontElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLFontElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLFontElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLFontElement.prototype.NOTATION_NODE=0;
-nsIXULBuilderListener.prototype= new Array();
-function nsIXULBuilderListener(){};
-nsIDownloader.prototype= new Array();
-function nsIDownloader(){};
-nsIOutputStream.prototype= new Array();
-function nsIOutputStream(){};
-nsIDOMCounter.prototype= new Array();
-function nsIDOMCounter(){};
-nsIHTTPHeaderListener.prototype= new Array();
-function nsIHTTPHeaderListener(){};
-jsdIObject.prototype= new Array();
-function jsdIObject(){};
-nsIDOMNSLocation.prototype= new Array();
-function nsIDOMNSLocation(){};
-nsIRandomAccessIterator.prototype= new Array();
-function nsIRandomAccessIterator(){};
-nsICertPickDialogs.prototype= new Array();
-function nsICertPickDialogs(){};
-nsISupportsFloat.prototype= new Array();
-function nsISupportsFloat(){};
-nsISupportsFloat.prototype.TYPE_ID=0;
-nsISupportsFloat.prototype.TYPE_CSTRING=0;
-nsISupportsFloat.prototype.TYPE_STRING=0;
-nsISupportsFloat.prototype.TYPE_PRBOOL=0;
-nsISupportsFloat.prototype.TYPE_PRUINT8=0;
-nsISupportsFloat.prototype.TYPE_PRUINT16=0;
-nsISupportsFloat.prototype.TYPE_PRUINT32=0;
-nsISupportsFloat.prototype.TYPE_PRUINT64=0;
-nsISupportsFloat.prototype.TYPE_PRTIME=0;
-nsISupportsFloat.prototype.TYPE_CHAR=0;
-nsISupportsFloat.prototype.TYPE_PRINT16=0;
-nsISupportsFloat.prototype.TYPE_PRINT32=0;
-nsISupportsFloat.prototype.TYPE_PRINT64=0;
-nsISupportsFloat.prototype.TYPE_FLOAT=0;
-nsISupportsFloat.prototype.TYPE_DOUBLE=0;
-nsISupportsFloat.prototype.TYPE_VOID=0;
-nsISupportsFloat.prototype.TYPE_INTERFACE_POINTER=0;
-nsIDOMHTMLSelectElement.prototype= new Array();
-function nsIDOMHTMLSelectElement(){};
-nsIDOMHTMLSelectElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLSelectElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLSelectElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLSelectElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLSelectElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLSelectElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLSelectElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLSelectElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLSelectElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLSelectElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLSelectElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLSelectElement.prototype.NOTATION_NODE=0;
-nsIBufferedOutputStream.prototype= new Array();
-function nsIBufferedOutputStream(){};
-nsISOAPCallCompletion.prototype= new Array();
-function nsISOAPCallCompletion(){};
-nsIUnicharLineInputStream.prototype= new Array();
-function nsIUnicharLineInputStream(){};
-nsITokenDialogs.prototype= new Array();
-function nsITokenDialogs(){};
-nsIDOMDocumentCSS.prototype= new Array();
-function nsIDOMDocumentCSS(){};
-nsICRLInfo.prototype= new Array();
-function nsICRLInfo(){};
-nsITransportSecurityInfo.prototype= new Array();
-function nsITransportSecurityInfo(){};
-nsIBoxPaintManager.prototype= new Array();
-function nsIBoxPaintManager(){};
-nsITextToSubURI.prototype= new Array();
-function nsITextToSubURI(){};
-nsIDOMHTMLFrameElement.prototype= new Array();
-function nsIDOMHTMLFrameElement(){};
-nsIDOMHTMLFrameElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLFrameElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLFrameElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLFrameElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLFrameElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLFrameElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLFrameElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLFrameElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLFrameElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLFrameElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLFrameElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLFrameElement.prototype.NOTATION_NODE=0;
-nsITokenPasswordDialogs.prototype= new Array();
-function nsITokenPasswordDialogs(){};
-nsIExternalProtocolService.prototype= new Array();
-function nsIExternalProtocolService(){};
-nsIEnvironment.prototype= new Array();
-function nsIEnvironment(){};
-nsIXMLHttpRequest.prototype= new Array();
-function nsIXMLHttpRequest(){};
-nsIURIContentListener.prototype= new Array();
-function nsIURIContentListener(){};
-nsIXPIProgressDialog.prototype= new Array();
-function nsIXPIProgressDialog(){};
-nsIXPIProgressDialog.prototype.DOWNLOAD_START="";
-nsIXPIProgressDialog.prototype.DOWNLOAD_DONE=0;
-nsIXPIProgressDialog.prototype.INSTALL_START=0;
-nsIXPIProgressDialog.prototype.INSTALL_DONE=0;
-nsIXPIProgressDialog.prototype.DIALOG_CLOSE=0;
-nsISelectionPrivate.prototype= new Array();
-function nsISelectionPrivate(){};
-nsISelectionPrivate.prototype.ENDOFPRECEDINGLINE="";
-nsISelectionPrivate.prototype.STARTOFNEXTLINE=0;
-nsISelectionPrivate.prototype.TABLESELECTION_NONE="";
-nsISelectionPrivate.prototype.TABLESELECTION_CELL=0;
-nsISelectionPrivate.prototype.TABLESELECTION_ROW=0;
-nsISelectionPrivate.prototype.TABLESELECTION_COLUMN=0;
-nsISelectionPrivate.prototype.TABLESELECTION_TABLE=0;
-nsISelectionPrivate.prototype.TABLESELECTION_ALLCELLS=0;
-nsISchemaType.prototype= new Array();
-function nsISchemaType(){};
-nsISchemaType.prototype.SCHEMA_TYPE_SIMPLE=0;
-nsISchemaType.prototype.SCHEMA_TYPE_COMPLEX=0;
-nsISchemaType.prototype.SCHEMA_TYPE_PLACEHOLDER=0;
-nsIDOMSVGZoomEvent.prototype= new Array();
-function nsIDOMSVGZoomEvent(){};
-nsIDOMSVGZoomEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMSVGZoomEvent.prototype.AT_TARGET=0;
-nsIDOMSVGZoomEvent.prototype.BUBBLING_PHASE=0;
-nsICancelable.prototype= new Array();
-function nsICancelable(){};
-nsIDOMAbstractView.prototype= new Array();
-function nsIDOMAbstractView(){};
-nsIJARChannel.prototype= new Array();
-function nsIJARChannel(){};
-nsIJARChannel.prototype.LOAD_NORMAL="";
-nsIJARChannel.prototype.LOAD_BACKGROUND=0;
-nsIJARChannel.prototype.INHIBIT_CACHING=0;
-nsIJARChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIJARChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIJARChannel.prototype.LOAD_FROM_CACHE=0;
-nsIJARChannel.prototype.VALIDATE_ALWAYS=0;
-nsIJARChannel.prototype.VALIDATE_NEVER=0;
-nsIJARChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIJARChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIJARChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIJARChannel.prototype.LOAD_REPLACE=0;
-nsIJARChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIJARChannel.prototype.LOAD_TARGETED=0;
-nsIJARChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-nsIMemory.prototype= new Array();
-function nsIMemory(){};
-nsIDOMLSSerializerFilter.prototype= new Array();
-function nsIDOMLSSerializerFilter(){};
-nsIDOMLSSerializerFilter.prototype.FILTER_ACCEPT=0;
-nsIDOMLSSerializerFilter.prototype.FILTER_REJECT=0;
-nsIDOMLSSerializerFilter.prototype.FILTER_SKIP=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_ALL=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_ELEMENT=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_ATTRIBUTE=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_TEXT=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_CDATA_SECTION=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_ENTITY_REFERENCE=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_ENTITY=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_PROCESSING_INSTRUCTION=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_COMMENT=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_DOCUMENT=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_DOCUMENT_TYPE=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_DOCUMENT_FRAGMENT=0;
-nsIDOMLSSerializerFilter.prototype.SHOW_NOTATION=0;
-nsIBinaryOutputStream.prototype= new Array();
-function nsIBinaryOutputStream(){};
-nsIDOMDOMStringList.prototype= new Array();
-function nsIDOMDOMStringList(){};
-nsIImageLoadingContent.prototype= new Array();
-function nsIImageLoadingContent(){};
-nsIImageLoadingContent.prototype.UNKNOWN_REQUEST=0;
-nsIImageLoadingContent.prototype.CURRENT_REQUEST="";
-nsIImageLoadingContent.prototype.PENDING_REQUEST=0;
-nsIExceptionService.prototype= new Array();
-function nsIExceptionService(){};
-nsIFileOutputStream.prototype= new Array();
-function nsIFileOutputStream(){};
-nsISchemaAnyAttribute.prototype= new Array();
-function nsISchemaAnyAttribute(){};
-nsISchemaAnyAttribute.prototype.COMPONENT_TYPE_ATTRIBUTE=0;
-nsISchemaAnyAttribute.prototype.COMPONENT_TYPE_GROUP=0;
-nsISchemaAnyAttribute.prototype.COMPONENT_TYPE_ANY=0;
-nsISchemaAnyAttribute.prototype.PROCESS_STRICT=0;
-nsISchemaAnyAttribute.prototype.PROCESS_SKIP=0;
-nsISchemaAnyAttribute.prototype.PROCESS_LAX=0;
-nsIDOMCSSMediaRule.prototype= new Array();
-function nsIDOMCSSMediaRule(){};
-nsIDOMCSSMediaRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSMediaRule.prototype.STYLE_RULE=0;
-nsIDOMCSSMediaRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSMediaRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSMediaRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSMediaRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSMediaRule.prototype.PAGE_RULE=0;
-nsIErrorService.prototype= new Array();
-function nsIErrorService(){};
-nsIRDFInMemoryDataSource.prototype= new Array();
-function nsIRDFInMemoryDataSource(){};
-nsIFeed.prototype= new Array();
-function nsIFeed(){};
-nsIFeed.prototype.TYPE_FEED="";
-nsIFeed.prototype.TYPE_AUDIO=0;
-nsIFeed.prototype.TYPE_IMAGE=0;
-nsIFeed.prototype.TYPE_VIDEO=0;
-nsIContentViewer_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIContentViewer_MOZILLA_1_8_BRANCH(){};
-nsIEditorMailSupport.prototype= new Array();
-function nsIEditorMailSupport(){};
-nsIDOMHTMLPreElement.prototype= new Array();
-function nsIDOMHTMLPreElement(){};
-nsIDOMHTMLPreElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLPreElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLPreElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLPreElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLPreElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLPreElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLPreElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLPreElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLPreElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLPreElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLPreElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLPreElement.prototype.NOTATION_NODE=0;
-nsIDOMNavigator_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIDOMNavigator_MOZILLA_1_8_BRANCH(){};
-gfxIImageFrame.prototype= new Array();
-function gfxIImageFrame(){};
-nsIAccessibleSelectable.prototype= new Array();
-function nsIAccessibleSelectable(){};
-nsPICommandUpdater.prototype= new Array();
-function nsPICommandUpdater(){};
-nsIDownload.prototype= new Array();
-function nsIDownload(){};
-nsIDownload.prototype.STATE_START=0;
-nsIDownload.prototype.STATE_REDIRECTING=0;
-nsIDownload.prototype.STATE_TRANSFERRING=0;
-nsIDownload.prototype.STATE_NEGOTIATING=0;
-nsIDownload.prototype.STATE_STOP=0;
-nsIDownload.prototype.STATE_IS_REQUEST=0;
-nsIDownload.prototype.STATE_IS_DOCUMENT=0;
-nsIDownload.prototype.STATE_IS_NETWORK=0;
-nsIDownload.prototype.STATE_IS_WINDOW=0;
-nsIDownload.prototype.STATE_RESTORING=0;
-nsIDownload.prototype.STATE_IS_INSECURE=0;
-nsIDownload.prototype.STATE_IS_BROKEN=0;
-nsIDownload.prototype.STATE_IS_SECURE=0;
-nsIDownload.prototype.STATE_SECURE_HIGH=0;
-nsIDownload.prototype.STATE_SECURE_MED=0;
-nsIDownload.prototype.STATE_SECURE_LOW=0;
-nsIDOMXULControlElement.prototype= new Array();
-function nsIDOMXULControlElement(){};
-nsIDOMXULControlElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULControlElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULControlElement.prototype.TEXT_NODE=0;
-nsIDOMXULControlElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULControlElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULControlElement.prototype.ENTITY_NODE=0;
-nsIDOMXULControlElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULControlElement.prototype.COMMENT_NODE=0;
-nsIDOMXULControlElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULControlElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULControlElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULControlElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGAnimatedNumberList.prototype= new Array();
-function nsIDOMSVGAnimatedNumberList(){};
-nsIDocumentCharsetInfo.prototype= new Array();
-function nsIDocumentCharsetInfo(){};
-nsIContentViewerContainer.prototype= new Array();
-function nsIContentViewerContainer(){};
-nsIAppStartup.prototype= new Array();
-function nsIAppStartup(){};
-nsIAppStartup.prototype.eConsiderQuit=0;
-nsIAppStartup.prototype.eAttemptQuit=0;
-nsIAppStartup.prototype.eForceQuit=0;
-nsIAppStartup.prototype.eRestart=0;
-nsICookie2.prototype= new Array();
-function nsICookie2(){};
-nsICookie2.prototype.STATUS_UNKNOWN="";
-nsICookie2.prototype.STATUS_ACCEPTED=0;
-nsICookie2.prototype.STATUS_DOWNGRADED=0;
-nsICookie2.prototype.STATUS_FLAGGED=0;
-nsICookie2.prototype.STATUS_REJECTED=0;
-nsICookie2.prototype.POLICY_UNKNOWN="";
-nsICookie2.prototype.POLICY_NONE=0;
-nsICookie2.prototype.POLICY_NO_CONSENT=0;
-nsICookie2.prototype.POLICY_IMPLICIT_CONSENT=0;
-nsICookie2.prototype.POLICY_EXPLICIT_CONSENT=0;
-nsICookie2.prototype.POLICY_NO_II=0;
-nsIBrowserInstance.prototype= new Array();
-function nsIBrowserInstance(){};
-nsIProtocolProxyService.prototype= new Array();
-function nsIProtocolProxyService(){};
-nsIProtocolProxyService.prototype.RESOLVE_NON_BLOCKING=0;
-nsIDOMCDATASection.prototype= new Array();
-function nsIDOMCDATASection(){};
-nsIDOMCDATASection.prototype.ELEMENT_NODE=0;
-nsIDOMCDATASection.prototype.ATTRIBUTE_NODE=0;
-nsIDOMCDATASection.prototype.TEXT_NODE=0;
-nsIDOMCDATASection.prototype.CDATA_SECTION_NODE=0;
-nsIDOMCDATASection.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMCDATASection.prototype.ENTITY_NODE=0;
-nsIDOMCDATASection.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMCDATASection.prototype.COMMENT_NODE=0;
-nsIDOMCDATASection.prototype.DOCUMENT_NODE=0;
-nsIDOMCDATASection.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMCDATASection.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMCDATASection.prototype.NOTATION_NODE=0;
-nsIJVMConfigManager.prototype= new Array();
-function nsIJVMConfigManager(){};
-nsISOAPPortBinding.prototype= new Array();
-function nsISOAPPortBinding(){};
-nsISOAPPortBinding.prototype.STYLE_RPC=0;
-nsISOAPPortBinding.prototype.STYLE_DOCUMENT=0;
-nsISOAPPortBinding.prototype.SOAP_VERSION_1_1="";
-nsISOAPPortBinding.prototype.SOAP_VERSION_1_2=0;
-nsISOAPPortBinding.prototype.SOAP_VERSION_UNKNOWN=0;
-nsIContentHandler.prototype= new Array();
-function nsIContentHandler(){};
-nsISchemaComponent.prototype= new Array();
-function nsISchemaComponent(){};
-nsIPrintSettingsWin.prototype= new Array();
-function nsIPrintSettingsWin(){};
-nsIDownloadProgressListener.prototype= new Array();
-function nsIDownloadProgressListener(){};
-nsIMozIconURI.prototype= new Array();
-function nsIMozIconURI(){};
-nsISHistoryInternal.prototype= new Array();
-function nsISHistoryInternal(){};
-nsIURIFixup.prototype= new Array();
-function nsIURIFixup(){};
-nsIURIFixup.prototype.FIXUP_FLAG_NONE="";
-nsIURIFixup.prototype.FIXUP_FLAG_ALLOW_KEYWORD_LOOKUP=0;
-nsIURIFixup.prototype.FIXUP_FLAGS_MAKE_ALTERNATE_URI=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype= new Array();
-function nsIDOMSVGPathSegLinetoHorizontalRel(){};
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIXPIDialogService.prototype= new Array();
-function nsIXPIDialogService(){};
-nsIEditActionListener.prototype= new Array();
-function nsIEditActionListener(){};
-nsIDOMHTMLAppletElement.prototype= new Array();
-function nsIDOMHTMLAppletElement(){};
-nsIDOMHTMLAppletElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLAppletElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLAppletElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLAppletElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLAppletElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLAppletElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLAppletElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLAppletElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLAppletElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLAppletElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLAppletElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLAppletElement.prototype.NOTATION_NODE=0;
-nsIDOMAttr.prototype= new Array();
-function nsIDOMAttr(){};
-nsIDOMAttr.prototype.ELEMENT_NODE=0;
-nsIDOMAttr.prototype.ATTRIBUTE_NODE=0;
-nsIDOMAttr.prototype.TEXT_NODE=0;
-nsIDOMAttr.prototype.CDATA_SECTION_NODE=0;
-nsIDOMAttr.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMAttr.prototype.ENTITY_NODE=0;
-nsIDOMAttr.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMAttr.prototype.COMMENT_NODE=0;
-nsIDOMAttr.prototype.DOCUMENT_NODE=0;
-nsIDOMAttr.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMAttr.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMAttr.prototype.NOTATION_NODE=0;
-nsIDOMNotation.prototype= new Array();
-function nsIDOMNotation(){};
-nsIDOMNotation.prototype.ELEMENT_NODE=0;
-nsIDOMNotation.prototype.ATTRIBUTE_NODE=0;
-nsIDOMNotation.prototype.TEXT_NODE=0;
-nsIDOMNotation.prototype.CDATA_SECTION_NODE=0;
-nsIDOMNotation.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMNotation.prototype.ENTITY_NODE=0;
-nsIDOMNotation.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMNotation.prototype.COMMENT_NODE=0;
-nsIDOMNotation.prototype.DOCUMENT_NODE=0;
-nsIDOMNotation.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMNotation.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMNotation.prototype.NOTATION_NODE=0;
-nsIProxyObjectManager.prototype= new Array();
-function nsIProxyObjectManager(){};
-nsIProxyObjectManager.prototype.INVOKE_SYNC=0;
-nsIProxyObjectManager.prototype.INVOKE_ASYNC=0;
-nsIProxyObjectManager.prototype.FORCE_PROXY_CREATION=0;
-nsIPassword.prototype= new Array();
-function nsIPassword(){};
-nsIProfileLock.prototype= new Array();
-function nsIProfileLock(){};
-nsIDOMHTMLCanvasElement.prototype= new Array();
-function nsIDOMHTMLCanvasElement(){};
-nsIDOMHTMLCanvasElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLCanvasElement.prototype.NOTATION_NODE=0;
-nsISelectElement.prototype= new Array();
-function nsISelectElement(){};
-nsIPopupBoxObject.prototype= new Array();
-function nsIPopupBoxObject(){};
-nsIFind.prototype= new Array();
-function nsIFind(){};
-nsIXTFPrivate.prototype= new Array();
-function nsIXTFPrivate(){};
-nsIPlaintextEditor.prototype= new Array();
-function nsIPlaintextEditor(){};
-nsIPlaintextEditor.prototype.eEditorPlaintextBit="";
-nsIPlaintextEditor.prototype.eEditorSingleLineBit=0;
-nsIPlaintextEditor.prototype.eEditorPasswordBit=0;
-nsIPlaintextEditor.prototype.eEditorReadonlyBit=0;
-nsIPlaintextEditor.prototype.eEditorDisabledBit=0;
-nsIPlaintextEditor.prototype.eEditorFilterInputBit=0;
-nsIPlaintextEditor.prototype.eEditorMailBit=0;
-nsIPlaintextEditor.prototype.eEditorUseAsyncUpdatesBit=0;
-nsIPlaintextEditor.prototype.eEditorEnableWrapHackBit=0;
-nsIPlaintextEditor.prototype.eEditorWidgetBit=0;
-nsIPlaintextEditor.prototype.eEditorNoCSSBit=0;
-nsIPlaintextEditor.prototype.eEditorPlaintextMask=0;
-nsIPlaintextEditor.prototype.eEditorSingleLineMask=0;
-nsIPlaintextEditor.prototype.eEditorPasswordMask=0;
-nsIPlaintextEditor.prototype.eEditorReadonlyMask=0;
-nsIPlaintextEditor.prototype.eEditorDisabledMask=0;
-nsIPlaintextEditor.prototype.eEditorFilterInputMask=0;
-nsIPlaintextEditor.prototype.eEditorMailMask=0;
-nsIPlaintextEditor.prototype.eEditorUseAsyncUpdatesMask=0;
-nsIPlaintextEditor.prototype.eEditorEnableWrapHackMask=0;
-nsIPlaintextEditor.prototype.eEditorWidgetMask=0;
-nsIPlaintextEditor.prototype.eEditorNoCSSMask=0;
-nsIForwardIterator.prototype= new Array();
-function nsIForwardIterator(){};
-nsIDOMNSHTMLSelectElement.prototype= new Array();
-function nsIDOMNSHTMLSelectElement(){};
-nsIDOMHTMLModElement.prototype= new Array();
-function nsIDOMHTMLModElement(){};
-nsIDOMHTMLModElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLModElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLModElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLModElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLModElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLModElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLModElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLModElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLModElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLModElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLModElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLModElement.prototype.NOTATION_NODE=0;
-nsIDOMCSSMozDocumentRule.prototype= new Array();
-function nsIDOMCSSMozDocumentRule(){};
-nsIDOMCSSMozDocumentRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSMozDocumentRule.prototype.STYLE_RULE=0;
-nsIDOMCSSMozDocumentRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSMozDocumentRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSMozDocumentRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSMozDocumentRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSMozDocumentRule.prototype.PAGE_RULE=0;
-nsIDOMSVGEllipseElement.prototype= new Array();
-function nsIDOMSVGEllipseElement(){};
-nsIDOMSVGEllipseElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGEllipseElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGEllipseElement.prototype.TEXT_NODE=0;
-nsIDOMSVGEllipseElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGEllipseElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGEllipseElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGEllipseElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGEllipseElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGEllipseElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGEllipseElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGEllipseElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGEllipseElement.prototype.NOTATION_NODE=0;
-jsdIContext.prototype= new Array();
-function jsdIContext(){};
-jsdIContext.prototype.OPT_STRICT=0;
-jsdIContext.prototype.OPT_WERR=0;
-jsdIContext.prototype.OPT_VAROBJFIX=0;
-jsdIContext.prototype.OPT_ISUPPORTS=0;
-nsIDOMPopupBlockedEvent_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIDOMPopupBlockedEvent_MOZILLA_1_8_BRANCH(){};
-nsIDOMDocumentTraversal.prototype= new Array();
-function nsIDOMDocumentTraversal(){};
-nsIXTFAttributeHandler.prototype= new Array();
-function nsIXTFAttributeHandler(){};
-inIFlasher.prototype= new Array();
-function inIFlasher(){};
-nsISupportsWeakReference.prototype= new Array();
-function nsISupportsWeakReference(){};
-nsIDOMSVGElement.prototype= new Array();
-function nsIDOMSVGElement(){};
-nsIDOMSVGElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGElement.prototype.TEXT_NODE=0;
-nsIDOMSVGElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGElement.prototype.NOTATION_NODE=0;
-nsIDOM3DocumentEvent.prototype= new Array();
-function nsIDOM3DocumentEvent(){};
-nsIRDFRemoteDataSource.prototype= new Array();
-function nsIRDFRemoteDataSource(){};
-nsIDOMSVGPathSegArcAbs.prototype= new Array();
-function nsIDOMSVGPathSegArcAbs(){};
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegArcAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIDOMXULButtonElement.prototype= new Array();
-function nsIDOMXULButtonElement(){};
-nsIDOMXULButtonElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULButtonElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULButtonElement.prototype.TEXT_NODE=0;
-nsIDOMXULButtonElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULButtonElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULButtonElement.prototype.ENTITY_NODE=0;
-nsIDOMXULButtonElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULButtonElement.prototype.COMMENT_NODE=0;
-nsIDOMXULButtonElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULButtonElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULButtonElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULButtonElement.prototype.NOTATION_NODE=0;
-nsIDOMXULButtonElement.prototype.CHECKSTATE_UNCHECKED="";
-nsIDOMXULButtonElement.prototype.CHECKSTATE_CHECKED=0;
-nsIDOMXULButtonElement.prototype.CHECKSTATE_MIXED=0;
-nsIClipboardDragDropHooks.prototype= new Array();
-function nsIClipboardDragDropHooks(){};
-nsIDOMRect.prototype= new Array();
-function nsIDOMRect(){};
-nsICRLManager.prototype= new Array();
-function nsICRLManager(){};
-nsICRLManager.prototype.TYPE_AUTOUPDATE_TIME_BASED=0;
-nsICRLManager.prototype.TYPE_AUTOUPDATE_FREQ_BASED=0;
-imgIEncoder.prototype= new Array();
-function imgIEncoder(){};
-nsIX509Cert3.prototype= new Array();
-function nsIX509Cert3(){};
-nsISearchEngine.prototype= new Array();
-function nsISearchEngine(){};
-nsISearchEngine.prototype.TYPE_MOZSEARCH=0;
-nsISearchEngine.prototype.TYPE_SHERLOCK=0;
-nsISearchEngine.prototype.TYPE_OPENSEARCH=0;
-nsISearchEngine.prototype.DATA_XML=0;
-nsISearchEngine.prototype.DATA_TEXT=0;
-nsIUrlListManagerCallback.prototype= new Array();
-function nsIUrlListManagerCallback(){};
-nsIDOMEntity.prototype= new Array();
-function nsIDOMEntity(){};
-nsIDOMEntity.prototype.ELEMENT_NODE=0;
-nsIDOMEntity.prototype.ATTRIBUTE_NODE=0;
-nsIDOMEntity.prototype.TEXT_NODE=0;
-nsIDOMEntity.prototype.CDATA_SECTION_NODE=0;
-nsIDOMEntity.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMEntity.prototype.ENTITY_NODE=0;
-nsIDOMEntity.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMEntity.prototype.COMMENT_NODE=0;
-nsIDOMEntity.prototype.DOCUMENT_NODE=0;
-nsIDOMEntity.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMEntity.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMEntity.prototype.NOTATION_NODE=0;
-nsIDOMXPathNamespace.prototype= new Array();
-function nsIDOMXPathNamespace(){};
-nsIDOMXPathNamespace.prototype.ELEMENT_NODE=0;
-nsIDOMXPathNamespace.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXPathNamespace.prototype.TEXT_NODE=0;
-nsIDOMXPathNamespace.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXPathNamespace.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXPathNamespace.prototype.ENTITY_NODE=0;
-nsIDOMXPathNamespace.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXPathNamespace.prototype.COMMENT_NODE=0;
-nsIDOMXPathNamespace.prototype.DOCUMENT_NODE=0;
-nsIDOMXPathNamespace.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXPathNamespace.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXPathNamespace.prototype.NOTATION_NODE=0;
-nsIDOMXPathNamespace.prototype.XPATH_NAMESPACE_NODE=0;
-nsIBookmarksService.prototype= new Array();
-function nsIBookmarksService(){};
-nsIBookmarksService.prototype.BOOKMARK_DEFAULT_TYPE="";
-nsIBookmarksService.prototype.BOOKMARK_SEARCH_TYPE=0;
-nsIBookmarksService.prototype.BOOKMARK_FIND_TYPE=0;
-nsIDOMHTMLHRElement.prototype= new Array();
-function nsIDOMHTMLHRElement(){};
-nsIDOMHTMLHRElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLHRElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLHRElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLHRElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLHRElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLHRElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLHRElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLHRElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLHRElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLHRElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLHRElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLHRElement.prototype.NOTATION_NODE=0;
-nsIRDFContainerUtils.prototype= new Array();
-function nsIRDFContainerUtils(){};
-nsISHistoryListener.prototype= new Array();
-function nsISHistoryListener(){};
-nsIWebBrowserFocus.prototype= new Array();
-function nsIWebBrowserFocus(){};
-nsISAXErrorHandler.prototype= new Array();
-function nsISAXErrorHandler(){};
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoCubicAbs(){};
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIHTMLObjectResizer.prototype= new Array();
-function nsIHTMLObjectResizer(){};
-nsIHTMLObjectResizer.prototype.eTopLeft="";
-nsIHTMLObjectResizer.prototype.eTop=0;
-nsIHTMLObjectResizer.prototype.eTopRight=0;
-nsIHTMLObjectResizer.prototype.eLeft=0;
-nsIHTMLObjectResizer.prototype.eRight=0;
-nsIHTMLObjectResizer.prototype.eBottomLeft=0;
-nsIHTMLObjectResizer.prototype.eBottom=0;
-nsIHTMLObjectResizer.prototype.eBottomRight=0;
-nsIXTFXULVisual.prototype= new Array();
-function nsIXTFXULVisual(){};
-nsIXTFXULVisual.prototype.ELEMENT_TYPE_GENERIC_ELEMENT="";
-nsIXTFXULVisual.prototype.ELEMENT_TYPE_SVG_VISUAL=0;
-nsIXTFXULVisual.prototype.ELEMENT_TYPE_XML_VISUAL=0;
-nsIXTFXULVisual.prototype.ELEMENT_TYPE_XUL_VISUAL=0;
-nsIXTFXULVisual.prototype.ELEMENT_TYPE_BINDABLE=0;
-nsIXTFXULVisual.prototype.NOTIFY_WILL_CHANGE_DOCUMENT=0;
-nsIXTFXULVisual.prototype.NOTIFY_DOCUMENT_CHANGED=0;
-nsIXTFXULVisual.prototype.NOTIFY_WILL_CHANGE_PARENT=0;
-nsIXTFXULVisual.prototype.NOTIFY_PARENT_CHANGED=0;
-nsIXTFXULVisual.prototype.NOTIFY_WILL_INSERT_CHILD=0;
-nsIXTFXULVisual.prototype.NOTIFY_CHILD_INSERTED=0;
-nsIXTFXULVisual.prototype.NOTIFY_WILL_APPEND_CHILD=0;
-nsIXTFXULVisual.prototype.NOTIFY_CHILD_APPENDED=0;
-nsIXTFXULVisual.prototype.NOTIFY_WILL_REMOVE_CHILD=0;
-nsIXTFXULVisual.prototype.NOTIFY_CHILD_REMOVED=0;
-nsIXTFXULVisual.prototype.NOTIFY_WILL_SET_ATTRIBUTE=0;
-nsIXTFXULVisual.prototype.NOTIFY_ATTRIBUTE_SET=0;
-nsIXTFXULVisual.prototype.NOTIFY_WILL_REMOVE_ATTRIBUTE=0;
-nsIXTFXULVisual.prototype.NOTIFY_ATTRIBUTE_REMOVED=0;
-nsIXTFXULVisual.prototype.NOTIFY_BEGIN_ADDING_CHILDREN=0;
-nsIXTFXULVisual.prototype.NOTIFY_DONE_ADDING_CHILDREN=0;
-nsIXTFXULVisual.prototype.NOTIFY_HANDLE_DEFAULT=0;
-nsIXTFXULVisual.prototype.NOTIFY_DID_LAYOUT=0;
-nsIInputStreamCallback.prototype= new Array();
-function nsIInputStreamCallback(){};
-nsISupportsPRUint64.prototype= new Array();
-function nsISupportsPRUint64(){};
-nsISupportsPRUint64.prototype.TYPE_ID=0;
-nsISupportsPRUint64.prototype.TYPE_CSTRING=0;
-nsISupportsPRUint64.prototype.TYPE_STRING=0;
-nsISupportsPRUint64.prototype.TYPE_PRBOOL=0;
-nsISupportsPRUint64.prototype.TYPE_PRUINT8=0;
-nsISupportsPRUint64.prototype.TYPE_PRUINT16=0;
-nsISupportsPRUint64.prototype.TYPE_PRUINT32=0;
-nsISupportsPRUint64.prototype.TYPE_PRUINT64=0;
-nsISupportsPRUint64.prototype.TYPE_PRTIME=0;
-nsISupportsPRUint64.prototype.TYPE_CHAR=0;
-nsISupportsPRUint64.prototype.TYPE_PRINT16=0;
-nsISupportsPRUint64.prototype.TYPE_PRINT32=0;
-nsISupportsPRUint64.prototype.TYPE_PRINT64=0;
-nsISupportsPRUint64.prototype.TYPE_FLOAT=0;
-nsISupportsPRUint64.prototype.TYPE_DOUBLE=0;
-nsISupportsPRUint64.prototype.TYPE_VOID=0;
-nsISupportsPRUint64.prototype.TYPE_INTERFACE_POINTER=0;
-nsIClipboard.prototype= new Array();
-function nsIClipboard(){};
-nsIClipboard.prototype.kSelectionClipboard="";
-nsIClipboard.prototype.kGlobalClipboard=0;
-inIDOMUtils.prototype= new Array();
-function inIDOMUtils(){};
-nsIXmlRpcFault.prototype= new Array();
-function nsIXmlRpcFault(){};
-nsIDirIndexListener.prototype= new Array();
-function nsIDirIndexListener(){};
-nsITransactionListener.prototype= new Array();
-function nsITransactionListener(){};
-nsICookiePermission.prototype= new Array();
-function nsICookiePermission(){};
-nsICookiePermission.prototype.ACCESS_DEFAULT="";
-nsICookiePermission.prototype.ACCESS_ALLOW=0;
-nsICookiePermission.prototype.ACCESS_DENY=0;
-nsICookiePermission.prototype.ACCESS_SESSION=0;
-nsIDOMLSResourceResolver.prototype= new Array();
-function nsIDOMLSResourceResolver(){};
-nsIContentPolicy.prototype= new Array();
-function nsIContentPolicy(){};
-nsIContentPolicy.prototype.TYPE_OTHER=0;
-nsIContentPolicy.prototype.TYPE_SCRIPT=0;
-nsIContentPolicy.prototype.TYPE_IMAGE=0;
-nsIContentPolicy.prototype.TYPE_STYLESHEET=0;
-nsIContentPolicy.prototype.TYPE_OBJECT=0;
-nsIContentPolicy.prototype.TYPE_DOCUMENT=0;
-nsIContentPolicy.prototype.TYPE_SUBDOCUMENT=0;
-nsIContentPolicy.prototype.TYPE_REFRESH=0;
-nsIContentPolicy.prototype.REJECT_REQUEST=0;
-nsIContentPolicy.prototype.REJECT_TYPE=0;
-nsIContentPolicy.prototype.REJECT_SERVER=0;
-nsIContentPolicy.prototype.REJECT_OTHER=0;
-nsIContentPolicy.prototype.ACCEPT=0;
-nsIHelperAppLauncher.prototype= new Array();
-function nsIHelperAppLauncher(){};
-nsIDOMNSEventTarget.prototype= new Array();
-function nsIDOMNSEventTarget(){};
-nsIRelativeFilePref.prototype= new Array();
-function nsIRelativeFilePref(){};
-nsISidebar_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsISidebar_MOZILLA_1_8_BRANCH(){};
-nsIRDFObserver.prototype= new Array();
-function nsIRDFObserver(){};
-nsIDOMPageTransitionEvent.prototype= new Array();
-function nsIDOMPageTransitionEvent(){};
-nsIDOMPageTransitionEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMPageTransitionEvent.prototype.AT_TARGET=0;
-nsIDOMPageTransitionEvent.prototype.BUBBLING_PHASE=0;
-nsIWebBrowser.prototype= new Array();
-function nsIWebBrowser(){};
-nsIRDFXMLSource.prototype= new Array();
-function nsIRDFXMLSource(){};
-nsIDOMElement.prototype= new Array();
-function nsIDOMElement(){};
-nsIDOMElement.prototype.ELEMENT_NODE=0;
-nsIDOMElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMElement.prototype.TEXT_NODE=0;
-nsIDOMElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMElement.prototype.ENTITY_NODE=0;
-nsIDOMElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMElement.prototype.COMMENT_NODE=0;
-nsIDOMElement.prototype.DOCUMENT_NODE=0;
-nsIDOMElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMElement.prototype.NOTATION_NODE=0;
-nsIRegistryEnumerator.prototype= new Array();
-function nsIRegistryEnumerator(){};
-nsIDOMSVGTextElement.prototype= new Array();
-function nsIDOMSVGTextElement(){};
-nsIDOMSVGTextElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGTextElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGTextElement.prototype.TEXT_NODE=0;
-nsIDOMSVGTextElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGTextElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGTextElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGTextElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGTextElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGTextElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGTextElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGTextElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGTextElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGTextElement.prototype.LENGTHADJUST_UNKNOWN="";
-nsIDOMSVGTextElement.prototype.LENGTHADJUST_SPACING=0;
-nsIDOMSVGTextElement.prototype.LENGTHADJUST_SPACINGANDGLYPHS=0;
-jsdIFilter.prototype= new Array();
-function jsdIFilter(){};
-jsdIFilter.prototype.FLAG_RESERVED_MASK=0;
-jsdIFilter.prototype.FLAG_ENABLED=0;
-jsdIFilter.prototype.FLAG_PASS=0;
-nsIHTMLEditor.prototype= new Array();
-function nsIHTMLEditor(){};
-nsIHTMLEditor.prototype.eLeft="";
-nsIHTMLEditor.prototype.eCenter=0;
-nsIHTMLEditor.prototype.eRight=0;
-nsIHTMLEditor.prototype.eJustify=0;
-nsISchemaUnionType.prototype= new Array();
-function nsISchemaUnionType(){};
-nsISchemaUnionType.prototype.SCHEMA_TYPE_SIMPLE=0;
-nsISchemaUnionType.prototype.SCHEMA_TYPE_COMPLEX=0;
-nsISchemaUnionType.prototype.SCHEMA_TYPE_PLACEHOLDER=0;
-nsISchemaUnionType.prototype.SIMPLE_TYPE_BUILTIN=0;
-nsISchemaUnionType.prototype.SIMPLE_TYPE_LIST=0;
-nsISchemaUnionType.prototype.SIMPLE_TYPE_UNION=0;
-nsISchemaUnionType.prototype.SIMPLE_TYPE_RESTRICTION=0;
-nsIRDFPropagatableDataSource.prototype= new Array();
-function nsIRDFPropagatableDataSource(){};
-nsIContentViewer.prototype= new Array();
-function nsIContentViewer(){};
-nsIDOMJSWindow.prototype= new Array();
-function nsIDOMJSWindow(){};
-nsIDOMSVGAnimatedLengthList.prototype= new Array();
-function nsIDOMSVGAnimatedLengthList(){};
-nsIStreamConverterService.prototype= new Array();
-function nsIStreamConverterService(){};
-nsIFastLoadReadControl.prototype= new Array();
-function nsIFastLoadReadControl(){};
-nsICommandController.prototype= new Array();
-function nsICommandController(){};
-nsIFileProtocolHandler.prototype= new Array();
-function nsIFileProtocolHandler(){};
-nsIFileProtocolHandler.prototype.URI_STD="";
-nsIFileProtocolHandler.prototype.URI_NORELATIVE=0;
-nsIFileProtocolHandler.prototype.URI_NOAUTH=0;
-nsIFileProtocolHandler.prototype.ALLOWS_PROXY=0;
-nsIFileProtocolHandler.prototype.ALLOWS_PROXY_HTTP=0;
-nsILocalSearchService.prototype= new Array();
-function nsILocalSearchService(){};
-nsIAutoCompleteController.prototype= new Array();
-function nsIAutoCompleteController(){};
-nsIAutoCompleteController.prototype.STATUS_NONE=0;
-nsIAutoCompleteController.prototype.STATUS_SEARCHING=0;
-nsIAutoCompleteController.prototype.STATUS_COMPLETE_NO_MATCH=0;
-nsIAutoCompleteController.prototype.STATUS_COMPLETE_MATCH=0;
-nsIAutoCompleteController.prototype.KEY_UP=0;
-nsIAutoCompleteController.prototype.KEY_DOWN=0;
-nsIAutoCompleteController.prototype.KEY_LEFT=0;
-nsIAutoCompleteController.prototype.KEY_RIGHT=0;
-nsIAutoCompleteController.prototype.KEY_PAGE_UP=0;
-nsIAutoCompleteController.prototype.KEY_PAGE_DOWN=0;
-nsIAutoCompleteController.prototype.KEY_HOME=0;
-nsIAutoCompleteController.prototype.KEY_END=0;
-nsIWSDLLoader.prototype= new Array();
-function nsIWSDLLoader(){};
-nsIPrefBranch.prototype= new Array();
-function nsIPrefBranch(){};
-nsIPrefBranch.prototype.PREF_INVALID="";
-nsIPrefBranch.prototype.PREF_STRING=0;
-nsIPrefBranch.prototype.PREF_INT=0;
-nsIPrefBranch.prototype.PREF_BOOL=0;
-nsIDOMPlugin.prototype= new Array();
-function nsIDOMPlugin(){};
-nsISelectionListener.prototype= new Array();
-function nsISelectionListener(){};
-nsISelectionListener.prototype.NO_REASON="";
-nsISelectionListener.prototype.DRAG_REASON=0;
-nsISelectionListener.prototype.MOUSEDOWN_REASON=0;
-nsISelectionListener.prototype.MOUSEUP_REASON=0;
-nsISelectionListener.prototype.KEYPRESS_REASON=0;
-nsISelectionListener.prototype.SELECTALL_REASON=0;
-nsIMIMEInputStream.prototype= new Array();
-function nsIMIMEInputStream(){};
-nsIWindowDataSource.prototype= new Array();
-function nsIWindowDataSource(){};
-nsIXMLContentBuilder.prototype= new Array();
-function nsIXMLContentBuilder(){};
-nsIStreamLoaderObserver.prototype= new Array();
-function nsIStreamLoaderObserver(){};
-nsIDOMHTMLElement.prototype= new Array();
-function nsIDOMHTMLElement(){};
-nsIDOMHTMLElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLElement.prototype.NOTATION_NODE=0;
-nsIXTFElementFactory.prototype= new Array();
-function nsIXTFElementFactory(){};
-nsIPasswordManagerInternal.prototype= new Array();
-function nsIPasswordManagerInternal(){};
-nsIStyleSheetService.prototype= new Array();
-function nsIStyleSheetService(){};
-nsIStyleSheetService.prototype.AGENT_SHEET="";
-nsIStyleSheetService.prototype.USER_SHEET=0;
-nsISOAPCall.prototype= new Array();
-function nsISOAPCall(){};
-nsISOAPCall.prototype.VERSION_1_1="";
-nsISOAPCall.prototype.VERSION_1_2=0;
-nsISOAPCall.prototype.VERSION_UNKNOWN=0;
-nsICharsetConverterManager.prototype= new Array();
-function nsICharsetConverterManager(){};
-nsIDOMSVGTextPositioningElement.prototype= new Array();
-function nsIDOMSVGTextPositioningElement(){};
-nsIDOMSVGTextPositioningElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.TEXT_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGTextPositioningElement.prototype.LENGTHADJUST_UNKNOWN="";
-nsIDOMSVGTextPositioningElement.prototype.LENGTHADJUST_SPACING=0;
-nsIDOMSVGTextPositioningElement.prototype.LENGTHADJUST_SPACINGANDGLYPHS=0;
-nsIBrowserHandler.prototype= new Array();
-function nsIBrowserHandler(){};
-nsIDOMNSDocument.prototype= new Array();
-function nsIDOMNSDocument(){};
-nsIInputStreamTee.prototype= new Array();
-function nsIInputStreamTee(){};
-nsIDOMSVGTitleElement.prototype= new Array();
-function nsIDOMSVGTitleElement(){};
-nsIDOMSVGTitleElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGTitleElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGTitleElement.prototype.TEXT_NODE=0;
-nsIDOMSVGTitleElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGTitleElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGTitleElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGTitleElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGTitleElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGTitleElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGTitleElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGTitleElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGTitleElement.prototype.NOTATION_NODE=0;
-nsIXmlRpcClientListener.prototype= new Array();
-function nsIXmlRpcClientListener(){};
-nsIFontEnumerator.prototype= new Array();
-function nsIFontEnumerator(){};
-nsISound.prototype= new Array();
-function nsISound(){};
-nsIAppShellService.prototype= new Array();
-function nsIAppShellService(){};
-nsIAppShellService.prototype.SIZE_TO_CONTENT=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoCubicSmoothAbs(){};
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIDOMDOMConfiguration.prototype= new Array();
-function nsIDOMDOMConfiguration(){};
-nsIPasswordManager.prototype= new Array();
-function nsIPasswordManager(){};
-nsIPKCS11Module.prototype= new Array();
-function nsIPKCS11Module(){};
-nsIFormatConverter.prototype= new Array();
-function nsIFormatConverter(){};
-nsIChannel.prototype= new Array();
-function nsIChannel(){};
-nsIChannel.prototype.LOAD_NORMAL="";
-nsIChannel.prototype.LOAD_BACKGROUND=0;
-nsIChannel.prototype.INHIBIT_CACHING=0;
-nsIChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIChannel.prototype.LOAD_FROM_CACHE=0;
-nsIChannel.prototype.VALIDATE_ALWAYS=0;
-nsIChannel.prototype.VALIDATE_NEVER=0;
-nsIChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIChannel.prototype.LOAD_REPLACE=0;
-nsIChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIChannel.prototype.LOAD_TARGETED=0;
-nsIChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-nsIDOMParser.prototype= new Array();
-function nsIDOMParser(){};
-imgILoader.prototype= new Array();
-function imgILoader(){};
-nsIDOMSVGAnimatedTransformList.prototype= new Array();
-function nsIDOMSVGAnimatedTransformList(){};
-nsIBrowserGlue.prototype= new Array();
-function nsIBrowserGlue(){};
-nsIExternalProtocolHandler.prototype= new Array();
-function nsIExternalProtocolHandler(){};
-nsIExternalProtocolHandler.prototype.URI_STD="";
-nsIExternalProtocolHandler.prototype.URI_NORELATIVE=0;
-nsIExternalProtocolHandler.prototype.URI_NOAUTH=0;
-nsIExternalProtocolHandler.prototype.ALLOWS_PROXY=0;
-nsIExternalProtocolHandler.prototype.ALLOWS_PROXY_HTTP=0;
-nsIXTFElement.prototype= new Array();
-function nsIXTFElement(){};
-nsIXTFElement.prototype.ELEMENT_TYPE_GENERIC_ELEMENT="";
-nsIXTFElement.prototype.ELEMENT_TYPE_SVG_VISUAL=0;
-nsIXTFElement.prototype.ELEMENT_TYPE_XML_VISUAL=0;
-nsIXTFElement.prototype.ELEMENT_TYPE_XUL_VISUAL=0;
-nsIXTFElement.prototype.ELEMENT_TYPE_BINDABLE=0;
-nsIXTFElement.prototype.NOTIFY_WILL_CHANGE_DOCUMENT=0;
-nsIXTFElement.prototype.NOTIFY_DOCUMENT_CHANGED=0;
-nsIXTFElement.prototype.NOTIFY_WILL_CHANGE_PARENT=0;
-nsIXTFElement.prototype.NOTIFY_PARENT_CHANGED=0;
-nsIXTFElement.prototype.NOTIFY_WILL_INSERT_CHILD=0;
-nsIXTFElement.prototype.NOTIFY_CHILD_INSERTED=0;
-nsIXTFElement.prototype.NOTIFY_WILL_APPEND_CHILD=0;
-nsIXTFElement.prototype.NOTIFY_CHILD_APPENDED=0;
-nsIXTFElement.prototype.NOTIFY_WILL_REMOVE_CHILD=0;
-nsIXTFElement.prototype.NOTIFY_CHILD_REMOVED=0;
-nsIXTFElement.prototype.NOTIFY_WILL_SET_ATTRIBUTE=0;
-nsIXTFElement.prototype.NOTIFY_ATTRIBUTE_SET=0;
-nsIXTFElement.prototype.NOTIFY_WILL_REMOVE_ATTRIBUTE=0;
-nsIXTFElement.prototype.NOTIFY_ATTRIBUTE_REMOVED=0;
-nsIXTFElement.prototype.NOTIFY_BEGIN_ADDING_CHILDREN=0;
-nsIXTFElement.prototype.NOTIFY_DONE_ADDING_CHILDREN=0;
-nsIXTFElement.prototype.NOTIFY_HANDLE_DEFAULT=0;
-nsIFilePicker.prototype= new Array();
-function nsIFilePicker(){};
-nsIFilePicker.prototype.modeOpen="";
-nsIFilePicker.prototype.modeSave=0;
-nsIFilePicker.prototype.modeGetFolder=0;
-nsIFilePicker.prototype.modeOpenMultiple=0;
-nsIFilePicker.prototype.returnOK="";
-nsIFilePicker.prototype.returnCancel=0;
-nsIFilePicker.prototype.returnReplace=0;
-nsIFilePicker.prototype.filterAll=0;
-nsIFilePicker.prototype.filterHTML=0;
-nsIFilePicker.prototype.filterText=0;
-nsIFilePicker.prototype.filterImages=0;
-nsIFilePicker.prototype.filterXML=0;
-nsIFilePicker.prototype.filterXUL=0;
-nsIFilePicker.prototype.filterApps=0;
-nsIPropertyElement.prototype= new Array();
-function nsIPropertyElement(){};
-nsIStandardURL.prototype= new Array();
-function nsIStandardURL(){};
-nsIStandardURL.prototype.URLTYPE_STANDARD=0;
-nsIStandardURL.prototype.URLTYPE_AUTHORITY=0;
-nsIStandardURL.prototype.URLTYPE_NO_AUTHORITY=0;
-nsIRDFPurgeableDataSource.prototype= new Array();
-function nsIRDFPurgeableDataSource(){};
-nsIExtendedExpatSink.prototype= new Array();
-function nsIExtendedExpatSink(){};
-nsISeekableStream.prototype= new Array();
-function nsISeekableStream(){};
-nsISeekableStream.prototype.NS_SEEK_SET="";
-nsISeekableStream.prototype.NS_SEEK_CUR=0;
-nsISeekableStream.prototype.NS_SEEK_END=0;
-nsISessionStartup.prototype= new Array();
-function nsISessionStartup(){};
-nsIWindowMediator.prototype= new Array();
-function nsIWindowMediator(){};
-nsIWindowMediator.prototype.zLevelTop=0;
-nsIWindowMediator.prototype.zLevelBottom=0;
-nsIWindowMediator.prototype.zLevelBelow=0;
-nsIDocumentLoaderFactory.prototype= new Array();
-function nsIDocumentLoaderFactory(){};
-nsIStreamListenerTee.prototype= new Array();
-function nsIStreamListenerTee(){};
-nsIDOMNSCSS2Properties.prototype= new Array();
-function nsIDOMNSCSS2Properties(){};
-nsINSSCertCache.prototype= new Array();
-function nsINSSCertCache(){};
-nsISyncStreamListener.prototype= new Array();
-function nsISyncStreamListener(){};
-nsIDOMLSParserFilter.prototype= new Array();
-function nsIDOMLSParserFilter(){};
-nsIDOMLSParserFilter.prototype.FILTER_ACCEPT=0;
-nsIDOMLSParserFilter.prototype.FILTER_REJECT=0;
-nsIDOMLSParserFilter.prototype.FILTER_SKIP=0;
-nsIDOMLSParserFilter.prototype.FILTER_INTERRUPT=0;
-nsIPKIParamBlock.prototype= new Array();
-function nsIPKIParamBlock(){};
-nsIScriptError.prototype= new Array();
-function nsIScriptError(){};
-nsIScriptError.prototype.errorFlag="";
-nsIScriptError.prototype.warningFlag=0;
-nsIScriptError.prototype.exceptionFlag=0;
-nsIScriptError.prototype.strictFlag=0;
-nsIXULWindow.prototype= new Array();
-function nsIXULWindow(){};
-nsIXULWindow.prototype.lowestZ="";
-nsIXULWindow.prototype.loweredZ=0;
-nsIXULWindow.prototype.normalZ=0;
-nsIXULWindow.prototype.raisedZ=0;
-nsIXULWindow.prototype.highestZ=0;
-nsIEventTarget.prototype= new Array();
-function nsIEventTarget(){};
-nsIURLParser.prototype= new Array();
-function nsIURLParser(){};
-mozISpellI18NManager.prototype= new Array();
-function mozISpellI18NManager(){};
-nsIX509CertValidity.prototype= new Array();
-function nsIX509CertValidity(){};
-nsISchemaFacet.prototype= new Array();
-function nsISchemaFacet(){};
-nsISchemaFacet.prototype.FACET_TYPE_LENGTH=0;
-nsISchemaFacet.prototype.FACET_TYPE_MINLENGTH=0;
-nsISchemaFacet.prototype.FACET_TYPE_MAXLENGTH=0;
-nsISchemaFacet.prototype.FACET_TYPE_PATTERN=0;
-nsISchemaFacet.prototype.FACET_TYPE_ENUMERATION=0;
-nsISchemaFacet.prototype.FACET_TYPE_WHITESPACE=0;
-nsISchemaFacet.prototype.FACET_TYPE_MAXINCLUSIVE=0;
-nsISchemaFacet.prototype.FACET_TYPE_MININCLUSIVE=0;
-nsISchemaFacet.prototype.FACET_TYPE_MAXEXCLUSIVE=0;
-nsISchemaFacet.prototype.FACET_TYPE_MINEXCLUSIVE=0;
-nsISchemaFacet.prototype.FACET_TYPE_TOTALDIGITS=0;
-nsISchemaFacet.prototype.FACET_TYPE_FRACTIONDIGITS=0;
-nsISchemaFacet.prototype.WHITESPACE_PRESERVE=0;
-nsISchemaFacet.prototype.WHITESPACE_REPLACE=0;
-nsISchemaFacet.prototype.WHITESPACE_COLLAPSE=0;
-nsIModule.prototype= new Array();
-function nsIModule(){};
-nsINativeAppSupport.prototype= new Array();
-function nsINativeAppSupport(){};
-nsIDOMSVGMetadataElement.prototype= new Array();
-function nsIDOMSVGMetadataElement(){};
-nsIDOMSVGMetadataElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGMetadataElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGMetadataElement.prototype.TEXT_NODE=0;
-nsIDOMSVGMetadataElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGMetadataElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGMetadataElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGMetadataElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGMetadataElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGMetadataElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGMetadataElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGMetadataElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGMetadataElement.prototype.NOTATION_NODE=0;
-nsIDOMMimeTypeArray.prototype= new Array();
-function nsIDOMMimeTypeArray(){};
-nsIComponentManagerObsolete.prototype= new Array();
-function nsIComponentManagerObsolete(){};
-nsIComponentManagerObsolete.prototype.NS_Startup="";
-nsIComponentManagerObsolete.prototype.NS_Script=0;
-nsIComponentManagerObsolete.prototype.NS_Timer=0;
-nsIComponentManagerObsolete.prototype.NS_Shutdown=0;
-nsIDOMHTMLLIElement.prototype= new Array();
-function nsIDOMHTMLLIElement(){};
-nsIDOMHTMLLIElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLLIElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLLIElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLLIElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLLIElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLLIElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLLIElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLLIElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLLIElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLLIElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLLIElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLLIElement.prototype.NOTATION_NODE=0;
-nsIWindowWatcher.prototype= new Array();
-function nsIWindowWatcher(){};
-nsIASN1Object.prototype= new Array();
-function nsIASN1Object(){};
-nsIASN1Object.prototype.ASN1_END_CONTENTS="";
-nsIASN1Object.prototype.ASN1_BOOLEAN=0;
-nsIASN1Object.prototype.ASN1_INTEGER=0;
-nsIASN1Object.prototype.ASN1_BIT_STRING=0;
-nsIASN1Object.prototype.ASN1_OCTET_STRING=0;
-nsIASN1Object.prototype.ASN1_NULL=0;
-nsIASN1Object.prototype.ASN1_OBJECT_ID=0;
-nsIASN1Object.prototype.ASN1_ENUMERATED=0;
-nsIASN1Object.prototype.ASN1_UTF8_STRING=0;
-nsIASN1Object.prototype.ASN1_SEQUENCE=0;
-nsIASN1Object.prototype.ASN1_SET=0;
-nsIASN1Object.prototype.ASN1_PRINTABLE_STRING=0;
-nsIASN1Object.prototype.ASN1_T61_STRING=0;
-nsIASN1Object.prototype.ASN1_IA5_STRING=0;
-nsIASN1Object.prototype.ASN1_UTC_TIME=0;
-nsIASN1Object.prototype.ASN1_GEN_TIME=0;
-nsIASN1Object.prototype.ASN1_VISIBLE_STRING=0;
-nsIASN1Object.prototype.ASN1_UNIVERSAL_STRING=0;
-nsIASN1Object.prototype.ASN1_BMP_STRING=0;
-nsIASN1Object.prototype.ASN1_HIGH_TAG_NUMBER=0;
-nsIASN1Object.prototype.ASN1_CONTEXT_SPECIFIC=0;
-nsIASN1Object.prototype.ASN1_APPLICATION=0;
-nsIASN1Object.prototype.ASN1_PRIVATE=0;
-nsIPrintProgress.prototype= new Array();
-function nsIPrintProgress(){};
-nsIPrintProgress.prototype.STATE_START=0;
-nsIPrintProgress.prototype.STATE_REDIRECTING=0;
-nsIPrintProgress.prototype.STATE_TRANSFERRING=0;
-nsIPrintProgress.prototype.STATE_NEGOTIATING=0;
-nsIPrintProgress.prototype.STATE_STOP=0;
-nsIPrintProgress.prototype.STATE_IS_REQUEST=0;
-nsIPrintProgress.prototype.STATE_IS_DOCUMENT=0;
-nsIPrintProgress.prototype.STATE_IS_NETWORK=0;
-nsIPrintProgress.prototype.STATE_IS_WINDOW=0;
-nsIPrintProgress.prototype.STATE_RESTORING=0;
-nsIPrintProgress.prototype.STATE_IS_INSECURE=0;
-nsIPrintProgress.prototype.STATE_IS_BROKEN=0;
-nsIPrintProgress.prototype.STATE_IS_SECURE=0;
-nsIPrintProgress.prototype.STATE_SECURE_HIGH=0;
-nsIPrintProgress.prototype.STATE_SECURE_MED=0;
-nsIPrintProgress.prototype.STATE_SECURE_LOW=0;
-nsIXPTLoaderSink.prototype= new Array();
-function nsIXPTLoaderSink(){};
-nsIWindowsShellService.prototype= new Array();
-function nsIWindowsShellService(){};
-nsIWindowsShellService.prototype.BACKGROUND_TILE=0;
-nsIWindowsShellService.prototype.BACKGROUND_STRETCH=0;
-nsIWindowsShellService.prototype.BACKGROUND_CENTER=0;
-nsIWindowsShellService.prototype.BACKGROUND_FILL=0;
-nsIWindowsShellService.prototype.APPLICATION_MAIL="";
-nsIWindowsShellService.prototype.APPLICATION_NEWS=0;
-nsIDOMMouseEvent.prototype= new Array();
-function nsIDOMMouseEvent(){};
-nsIDOMMouseEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMMouseEvent.prototype.AT_TARGET=0;
-nsIDOMMouseEvent.prototype.BUBBLING_PHASE=0;
-nsISupportsPRInt32.prototype= new Array();
-function nsISupportsPRInt32(){};
-nsISupportsPRInt32.prototype.TYPE_ID=0;
-nsISupportsPRInt32.prototype.TYPE_CSTRING=0;
-nsISupportsPRInt32.prototype.TYPE_STRING=0;
-nsISupportsPRInt32.prototype.TYPE_PRBOOL=0;
-nsISupportsPRInt32.prototype.TYPE_PRUINT8=0;
-nsISupportsPRInt32.prototype.TYPE_PRUINT16=0;
-nsISupportsPRInt32.prototype.TYPE_PRUINT32=0;
-nsISupportsPRInt32.prototype.TYPE_PRUINT64=0;
-nsISupportsPRInt32.prototype.TYPE_PRTIME=0;
-nsISupportsPRInt32.prototype.TYPE_CHAR=0;
-nsISupportsPRInt32.prototype.TYPE_PRINT16=0;
-nsISupportsPRInt32.prototype.TYPE_PRINT32=0;
-nsISupportsPRInt32.prototype.TYPE_PRINT64=0;
-nsISupportsPRInt32.prototype.TYPE_FLOAT=0;
-nsISupportsPRInt32.prototype.TYPE_DOUBLE=0;
-nsISupportsPRInt32.prototype.TYPE_VOID=0;
-nsISupportsPRInt32.prototype.TYPE_INTERFACE_POINTER=0;
-nsIApplicationUpdateService.prototype= new Array();
-function nsIApplicationUpdateService(){};
-nsIInterfaceRequestor.prototype= new Array();
-function nsIInterfaceRequestor(){};
-nsIDOMLSProgressEvent.prototype= new Array();
-function nsIDOMLSProgressEvent(){};
-nsIDOMLSProgressEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMLSProgressEvent.prototype.AT_TARGET=0;
-nsIDOMLSProgressEvent.prototype.BUBBLING_PHASE=0;
-nsITransactionManager.prototype= new Array();
-function nsITransactionManager(){};
-nsIDOMHTMLOptGroupElement.prototype= new Array();
-function nsIDOMHTMLOptGroupElement(){};
-nsIDOMHTMLOptGroupElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLOptGroupElement.prototype.NOTATION_NODE=0;
-nsICommandManager.prototype= new Array();
-function nsICommandManager(){};
-nsIIDNService.prototype= new Array();
-function nsIIDNService(){};
-nsIDOMHTMLTitleElement.prototype= new Array();
-function nsIDOMHTMLTitleElement(){};
-nsIDOMHTMLTitleElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTitleElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTitleElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTitleElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTitleElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTitleElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTitleElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTitleElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTitleElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTitleElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTitleElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTitleElement.prototype.NOTATION_NODE=0;
-nsITimelineService.prototype= new Array();
-function nsITimelineService(){};
-nsIUnicharOutputStream.prototype= new Array();
-function nsIUnicharOutputStream(){};
-nsIStackFrame.prototype= new Array();
-function nsIStackFrame(){};
-nsIDataType.prototype= new Array();
-function nsIDataType(){};
-nsIDataType.prototype.VTYPE_INT8="";
-nsIDataType.prototype.VTYPE_INT16=0;
-nsIDataType.prototype.VTYPE_INT32=0;
-nsIDataType.prototype.VTYPE_INT64=0;
-nsIDataType.prototype.VTYPE_UINT8=0;
-nsIDataType.prototype.VTYPE_UINT16=0;
-nsIDataType.prototype.VTYPE_UINT32=0;
-nsIDataType.prototype.VTYPE_UINT64=0;
-nsIDataType.prototype.VTYPE_FLOAT=0;
-nsIDataType.prototype.VTYPE_DOUBLE=0;
-nsIDataType.prototype.VTYPE_BOOL=0;
-nsIDataType.prototype.VTYPE_CHAR=0;
-nsIDataType.prototype.VTYPE_WCHAR=0;
-nsIDataType.prototype.VTYPE_VOID=0;
-nsIDataType.prototype.VTYPE_ID=0;
-nsIDataType.prototype.VTYPE_DOMSTRING=0;
-nsIDataType.prototype.VTYPE_CHAR_STR=0;
-nsIDataType.prototype.VTYPE_WCHAR_STR=0;
-nsIDataType.prototype.VTYPE_INTERFACE=0;
-nsIDataType.prototype.VTYPE_INTERFACE_IS=0;
-nsIDataType.prototype.VTYPE_ARRAY=0;
-nsIDataType.prototype.VTYPE_STRING_SIZE_IS=0;
-nsIDataType.prototype.VTYPE_WSTRING_SIZE_IS=0;
-nsIDataType.prototype.VTYPE_UTF8STRING=0;
-nsIDataType.prototype.VTYPE_CSTRING=0;
-nsIDataType.prototype.VTYPE_ASTRING=0;
-nsIDataType.prototype.VTYPE_EMPTY_ARRAY=0;
-nsIDataType.prototype.VTYPE_EMPTY=0;
-nsIHttpActivityObserver.prototype= new Array();
-function nsIHttpActivityObserver(){};
-nsIHttpActivityObserver.prototype.ACTIVITY_TYPE_SOCKET_TRANSPORT=0;
-nsIHttpActivityObserver.prototype.ACTIVITY_TYPE_HTTP_TRANSACTION=0;
-nsIHttpActivityObserver.prototype.ACTIVITY_SUBTYPE_REQUEST_HEADER=0;
-nsIHttpActivityObserver.prototype.ACTIVITY_SUBTYPE_REQUEST_BODY_SENT=0;
-nsIHttpActivityObserver.prototype.ACTIVITY_SUBTYPE_RESPONSE_START=0;
-nsIHttpActivityObserver.prototype.ACTIVITY_SUBTYPE_RESPONSE_HEADER=0;
-nsIHttpActivityObserver.prototype.ACTIVITY_SUBTYPE_RESPONSE_COMPLETE=0;
-nsIHttpActivityObserver.prototype.ACTIVITY_SUBTYPE_TRANSACTION_CLOSE=0;
-nsIDOMCSSStyleSheet.prototype= new Array();
-function nsIDOMCSSStyleSheet(){};
-nsIDOMCryptoDialogs.prototype= new Array();
-function nsIDOMCryptoDialogs(){};
-nsIDOMSVGGradientElement.prototype= new Array();
-function nsIDOMSVGGradientElement(){};
-nsIDOMSVGGradientElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGGradientElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGGradientElement.prototype.TEXT_NODE=0;
-nsIDOMSVGGradientElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGGradientElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGGradientElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGGradientElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGGradientElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGGradientElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGGradientElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGGradientElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGGradientElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGGradientElement.prototype.SVG_SPREADMETHOD_UNKNOWN="";
-nsIDOMSVGGradientElement.prototype.SVG_SPREADMETHOD_PAD=0;
-nsIDOMSVGGradientElement.prototype.SVG_SPREADMETHOD_REFLECT=0;
-nsIDOMSVGGradientElement.prototype.SVG_SPREADMETHOD_REPEAT=0;
-nsIDOMSVGGradientElement.prototype.SVG_GRUNITS_UNKNOWN="";
-nsIDOMSVGGradientElement.prototype.SVG_GRUNITS_OBJECTBOUNDINGBOX=0;
-nsIDOMSVGGradientElement.prototype.SVG_GRUNITS_USERSPACEONUSE=0;
-nsICookieManager.prototype= new Array();
-function nsICookieManager(){};
-nsIConverterOutputStream.prototype= new Array();
-function nsIConverterOutputStream(){};
-nsIInputStreamPump.prototype= new Array();
-function nsIInputStreamPump(){};
-nsIInputStreamPump.prototype.LOAD_NORMAL="";
-nsIInputStreamPump.prototype.LOAD_BACKGROUND=0;
-nsIInputStreamPump.prototype.INHIBIT_CACHING=0;
-nsIInputStreamPump.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIInputStreamPump.prototype.LOAD_BYPASS_CACHE=0;
-nsIInputStreamPump.prototype.LOAD_FROM_CACHE=0;
-nsIInputStreamPump.prototype.VALIDATE_ALWAYS=0;
-nsIInputStreamPump.prototype.VALIDATE_NEVER=0;
-nsIInputStreamPump.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIDOMLSParser.prototype= new Array();
-function nsIDOMLSParser(){};
-nsIDOMLSParser.prototype.ACTION_APPEND_AS_CHILDREN=0;
-nsIDOMLSParser.prototype.ACTION_REPLACE_CHILDREN=0;
-nsIDOMLSParser.prototype.ACTION_INSERT_BEFORE=0;
-nsIDOMLSParser.prototype.ACTION_INSERT_AFTER=0;
-nsIDOMLSParser.prototype.ACTION_REPLACE=0;
-nsIDOMCSSStyleDeclaration.prototype= new Array();
-function nsIDOMCSSStyleDeclaration(){};
-nsIFlavorDataProvider.prototype= new Array();
-function nsIFlavorDataProvider(){};
-nsISOAPHeaderBlock.prototype= new Array();
-function nsISOAPHeaderBlock(){};
-nsIDOMHTMLTableSectionElement.prototype= new Array();
-function nsIDOMHTMLTableSectionElement(){};
-nsIDOMHTMLTableSectionElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTableSectionElement.prototype.NOTATION_NODE=0;
-nsIDOMNode.prototype= new Array();
-function nsIDOMNode(){};
-nsIDOMNode.prototype.ELEMENT_NODE=0;
-nsIDOMNode.prototype.ATTRIBUTE_NODE=0;
-nsIDOMNode.prototype.TEXT_NODE=0;
-nsIDOMNode.prototype.CDATA_SECTION_NODE=0;
-nsIDOMNode.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMNode.prototype.ENTITY_NODE=0;
-nsIDOMNode.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMNode.prototype.COMMENT_NODE=0;
-nsIDOMNode.prototype.DOCUMENT_NODE=0;
-nsIDOMNode.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMNode.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMNode.prototype.NOTATION_NODE=0;
-imgICache.prototype= new Array();
-function imgICache(){};
-nsIDOMSVGZoomAndPan.prototype= new Array();
-function nsIDOMSVGZoomAndPan(){};
-nsIDOMSVGZoomAndPan.prototype.SVG_ZOOMANDPAN_UNKNOWN="";
-nsIDOMSVGZoomAndPan.prototype.SVG_ZOOMANDPAN_DISABLE=0;
-nsIDOMSVGZoomAndPan.prototype.SVG_ZOOMANDPAN_MAGNIFY=0;
-nsIDOMStorageWindow.prototype= new Array();
-function nsIDOMStorageWindow(){};
-nsISupportsPRUint8.prototype= new Array();
-function nsISupportsPRUint8(){};
-nsISupportsPRUint8.prototype.TYPE_ID=0;
-nsISupportsPRUint8.prototype.TYPE_CSTRING=0;
-nsISupportsPRUint8.prototype.TYPE_STRING=0;
-nsISupportsPRUint8.prototype.TYPE_PRBOOL=0;
-nsISupportsPRUint8.prototype.TYPE_PRUINT8=0;
-nsISupportsPRUint8.prototype.TYPE_PRUINT16=0;
-nsISupportsPRUint8.prototype.TYPE_PRUINT32=0;
-nsISupportsPRUint8.prototype.TYPE_PRUINT64=0;
-nsISupportsPRUint8.prototype.TYPE_PRTIME=0;
-nsISupportsPRUint8.prototype.TYPE_CHAR=0;
-nsISupportsPRUint8.prototype.TYPE_PRINT16=0;
-nsISupportsPRUint8.prototype.TYPE_PRINT32=0;
-nsISupportsPRUint8.prototype.TYPE_PRINT64=0;
-nsISupportsPRUint8.prototype.TYPE_FLOAT=0;
-nsISupportsPRUint8.prototype.TYPE_DOUBLE=0;
-nsISupportsPRUint8.prototype.TYPE_VOID=0;
-nsISupportsPRUint8.prototype.TYPE_INTERFACE_POINTER=0;
-nsIDOMSVGStyleElement.prototype= new Array();
-function nsIDOMSVGStyleElement(){};
-nsIDOMSVGStyleElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGStyleElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGStyleElement.prototype.TEXT_NODE=0;
-nsIDOMSVGStyleElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGStyleElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGStyleElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGStyleElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGStyleElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGStyleElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGStyleElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGStyleElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGStyleElement.prototype.NOTATION_NODE=0;
-nsIURILoader.prototype= new Array();
-function nsIURILoader(){};
-nsICommandLineHandler.prototype= new Array();
-function nsICommandLineHandler(){};
-nsIDocNavStartProgressListener.prototype= new Array();
-function nsIDocNavStartProgressListener(){};
-nsIRegistryNode.prototype= new Array();
-function nsIRegistryNode(){};
-nsITransferable.prototype= new Array();
-function nsITransferable(){};
-nsITransferable.prototype.kFlavorHasDataProvider="";
-nsIEditingSession.prototype= new Array();
-function nsIEditingSession(){};
-nsIEditingSession.prototype.eEditorOK="";
-nsIEditingSession.prototype.eEditorCreationInProgress=0;
-nsIEditingSession.prototype.eEditorErrorCantEditMimeType=0;
-nsIEditingSession.prototype.eEditorErrorFileNotFound=0;
-nsIEditingSession.prototype.eEditorErrorCantEditFramesets=0;
-nsIEditingSession.prototype.eEditorErrorUnknown=0;
-nsIAccessibilityService.prototype= new Array();
-function nsIAccessibilityService(){};
-nsIUpdatePatch.prototype= new Array();
-function nsIUpdatePatch(){};
-nsITransportEventSink.prototype= new Array();
-function nsITransportEventSink(){};
-nsIDOMCustomEvent.prototype= new Array();
-function nsIDOMCustomEvent(){};
-nsIDOMCustomEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMCustomEvent.prototype.AT_TARGET=0;
-nsIDOMCustomEvent.prototype.BUBBLING_PHASE=0;
-nsISupportsPRUint16.prototype= new Array();
-function nsISupportsPRUint16(){};
-nsISupportsPRUint16.prototype.TYPE_ID=0;
-nsISupportsPRUint16.prototype.TYPE_CSTRING=0;
-nsISupportsPRUint16.prototype.TYPE_STRING=0;
-nsISupportsPRUint16.prototype.TYPE_PRBOOL=0;
-nsISupportsPRUint16.prototype.TYPE_PRUINT8=0;
-nsISupportsPRUint16.prototype.TYPE_PRUINT16=0;
-nsISupportsPRUint16.prototype.TYPE_PRUINT32=0;
-nsISupportsPRUint16.prototype.TYPE_PRUINT64=0;
-nsISupportsPRUint16.prototype.TYPE_PRTIME=0;
-nsISupportsPRUint16.prototype.TYPE_CHAR=0;
-nsISupportsPRUint16.prototype.TYPE_PRINT16=0;
-nsISupportsPRUint16.prototype.TYPE_PRINT32=0;
-nsISupportsPRUint16.prototype.TYPE_PRINT64=0;
-nsISupportsPRUint16.prototype.TYPE_FLOAT=0;
-nsISupportsPRUint16.prototype.TYPE_DOUBLE=0;
-nsISupportsPRUint16.prototype.TYPE_VOID=0;
-nsISupportsPRUint16.prototype.TYPE_INTERFACE_POINTER=0;
-nsIUrlListManager.prototype= new Array();
-function nsIUrlListManager(){};
-nsIWSDLOperation.prototype= new Array();
-function nsIWSDLOperation(){};
-nsIWebProgressListener2.prototype= new Array();
-function nsIWebProgressListener2(){};
-nsIWebProgressListener2.prototype.STATE_START=0;
-nsIWebProgressListener2.prototype.STATE_REDIRECTING=0;
-nsIWebProgressListener2.prototype.STATE_TRANSFERRING=0;
-nsIWebProgressListener2.prototype.STATE_NEGOTIATING=0;
-nsIWebProgressListener2.prototype.STATE_STOP=0;
-nsIWebProgressListener2.prototype.STATE_IS_REQUEST=0;
-nsIWebProgressListener2.prototype.STATE_IS_DOCUMENT=0;
-nsIWebProgressListener2.prototype.STATE_IS_NETWORK=0;
-nsIWebProgressListener2.prototype.STATE_IS_WINDOW=0;
-nsIWebProgressListener2.prototype.STATE_RESTORING=0;
-nsIWebProgressListener2.prototype.STATE_IS_INSECURE=0;
-nsIWebProgressListener2.prototype.STATE_IS_BROKEN=0;
-nsIWebProgressListener2.prototype.STATE_IS_SECURE=0;
-nsIWebProgressListener2.prototype.STATE_SECURE_HIGH=0;
-nsIWebProgressListener2.prototype.STATE_SECURE_MED=0;
-nsIWebProgressListener2.prototype.STATE_SECURE_LOW=0;
-nsISOAPDecoder.prototype= new Array();
-function nsISOAPDecoder(){};
-nsISAXXMLReader.prototype= new Array();
-function nsISAXXMLReader(){};
-nsIRecyclingAllocator.prototype= new Array();
-function nsIRecyclingAllocator(){};
-nsIWebServiceProxy.prototype= new Array();
-function nsIWebServiceProxy(){};
-nsIRDFXMLSink.prototype= new Array();
-function nsIRDFXMLSink(){};
-nsIDOMHTMLIFrameElement.prototype= new Array();
-function nsIDOMHTMLIFrameElement(){};
-nsIDOMHTMLIFrameElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLIFrameElement.prototype.NOTATION_NODE=0;
-nsIXULBrowserWindow.prototype= new Array();
-function nsIXULBrowserWindow(){};
-nsIDOMSVGPointList.prototype= new Array();
-function nsIDOMSVGPointList(){};
-nsIUserInfo.prototype= new Array();
-function nsIUserInfo(){};
-nsICacheEntryDescriptor.prototype= new Array();
-function nsICacheEntryDescriptor(){};
-nsIHTMLAbsPosEditor.prototype= new Array();
-function nsIHTMLAbsPosEditor(){};
-nsIXTFVisual.prototype= new Array();
-function nsIXTFVisual(){};
-nsIXTFVisual.prototype.ELEMENT_TYPE_GENERIC_ELEMENT="";
-nsIXTFVisual.prototype.ELEMENT_TYPE_SVG_VISUAL=0;
-nsIXTFVisual.prototype.ELEMENT_TYPE_XML_VISUAL=0;
-nsIXTFVisual.prototype.ELEMENT_TYPE_XUL_VISUAL=0;
-nsIXTFVisual.prototype.ELEMENT_TYPE_BINDABLE=0;
-nsIXTFVisual.prototype.NOTIFY_WILL_CHANGE_DOCUMENT=0;
-nsIXTFVisual.prototype.NOTIFY_DOCUMENT_CHANGED=0;
-nsIXTFVisual.prototype.NOTIFY_WILL_CHANGE_PARENT=0;
-nsIXTFVisual.prototype.NOTIFY_PARENT_CHANGED=0;
-nsIXTFVisual.prototype.NOTIFY_WILL_INSERT_CHILD=0;
-nsIXTFVisual.prototype.NOTIFY_CHILD_INSERTED=0;
-nsIXTFVisual.prototype.NOTIFY_WILL_APPEND_CHILD=0;
-nsIXTFVisual.prototype.NOTIFY_CHILD_APPENDED=0;
-nsIXTFVisual.prototype.NOTIFY_WILL_REMOVE_CHILD=0;
-nsIXTFVisual.prototype.NOTIFY_CHILD_REMOVED=0;
-nsIXTFVisual.prototype.NOTIFY_WILL_SET_ATTRIBUTE=0;
-nsIXTFVisual.prototype.NOTIFY_ATTRIBUTE_SET=0;
-nsIXTFVisual.prototype.NOTIFY_WILL_REMOVE_ATTRIBUTE=0;
-nsIXTFVisual.prototype.NOTIFY_ATTRIBUTE_REMOVED=0;
-nsIXTFVisual.prototype.NOTIFY_BEGIN_ADDING_CHILDREN=0;
-nsIXTFVisual.prototype.NOTIFY_DONE_ADDING_CHILDREN=0;
-nsIXTFVisual.prototype.NOTIFY_HANDLE_DEFAULT=0;
-nsIXTFVisual.prototype.NOTIFY_DID_LAYOUT=0;
-nsIAutoCompleteObserver.prototype= new Array();
-function nsIAutoCompleteObserver(){};
-nsIFormHistory2.prototype= new Array();
-function nsIFormHistory2(){};
-nsIFileSpec.prototype= new Array();
-function nsIFileSpec(){};
-nsIPasswordInternal.prototype= new Array();
-function nsIPasswordInternal(){};
-nsISecurityWarningDialogs.prototype= new Array();
-function nsISecurityWarningDialogs(){};
-nsISOAPBlock.prototype= new Array();
-function nsISOAPBlock(){};
-nsIImageDocument.prototype= new Array();
-function nsIImageDocument(){};
-nsITransport.prototype= new Array();
-function nsITransport(){};
-nsITransport.prototype.OPEN_BLOCKING=0;
-nsITransport.prototype.OPEN_UNBUFFERED=0;
-nsITransport.prototype.STATUS_READING=0;
-nsITransport.prototype.STATUS_WRITING=0;
-nsISOAPFault.prototype= new Array();
-function nsISOAPFault(){};
-nsIScriptContextOwner.prototype= new Array();
-function nsIScriptContextOwner(){};
-jsdICallHook.prototype= new Array();
-function jsdICallHook(){};
-jsdICallHook.prototype.TYPE_TOPLEVEL_START="";
-jsdICallHook.prototype.TYPE_TOPLEVEL_END=0;
-jsdICallHook.prototype.TYPE_FUNCTION_CALL=0;
-jsdICallHook.prototype.TYPE_FUNCTION_RETURN=0;
-nsISOAPEncodingRegistry.prototype= new Array();
-function nsISOAPEncodingRegistry(){};
-nsICategoryManager.prototype= new Array();
-function nsICategoryManager(){};
-nsIBidirectionalIterator.prototype= new Array();
-function nsIBidirectionalIterator(){};
-nsIWindowMediatorListener.prototype= new Array();
-function nsIWindowMediatorListener(){};
-nsIDOMXPathResult.prototype= new Array();
-function nsIDOMXPathResult(){};
-nsIDOMXPathResult.prototype.ANY_TYPE="";
-nsIDOMXPathResult.prototype.NUMBER_TYPE=0;
-nsIDOMXPathResult.prototype.STRING_TYPE=0;
-nsIDOMXPathResult.prototype.BOOLEAN_TYPE=0;
-nsIDOMXPathResult.prototype.UNORDERED_NODE_ITERATOR_TYPE=0;
-nsIDOMXPathResult.prototype.ORDERED_NODE_ITERATOR_TYPE=0;
-nsIDOMXPathResult.prototype.UNORDERED_NODE_SNAPSHOT_TYPE=0;
-nsIDOMXPathResult.prototype.ORDERED_NODE_SNAPSHOT_TYPE=0;
-nsIDOMXPathResult.prototype.ANY_UNORDERED_NODE_TYPE=0;
-nsIDOMXPathResult.prototype.FIRST_ORDERED_NODE_TYPE=0;
-nsIXTFSVGVisualWrapper.prototype= new Array();
-function nsIXTFSVGVisualWrapper(){};
-nsIFeedGenerator.prototype= new Array();
-function nsIFeedGenerator(){};
-nsIEditor.prototype= new Array();
-function nsIEditor(){};
-nsIEditor.prototype.eNone="";
-nsIEditor.prototype.eNext=0;
-nsIEditor.prototype.ePrevious=0;
-nsIEditor.prototype.eNextWord=0;
-nsIEditor.prototype.ePreviousWord=0;
-nsIEditor.prototype.eToBeginningOfLine=0;
-nsIEditor.prototype.eToEndOfLine=0;
-nsIDOMHistory.prototype= new Array();
-function nsIDOMHistory(){};
-nsIZipEntry.prototype= new Array();
-function nsIZipEntry(){};
-nsIWebContentHandlerRegistrar.prototype= new Array();
-function nsIWebContentHandlerRegistrar(){};
-mozIStorageStatementWrapper.prototype= new Array();
-function mozIStorageStatementWrapper(){};
-nsIFontPackageProxy.prototype= new Array();
-function nsIFontPackageProxy(){};
-nsIDOMLSOutput.prototype= new Array();
-function nsIDOMLSOutput(){};
-nsIUnicharInputStream.prototype= new Array();
-function nsIUnicharInputStream(){};
-nsIFontList.prototype= new Array();
-function nsIFontList(){};
-nsIScriptLoader.prototype= new Array();
-function nsIScriptLoader(){};
-nsIDOMXULSelectControlElement.prototype= new Array();
-function nsIDOMXULSelectControlElement(){};
-nsIDOMXULSelectControlElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULSelectControlElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULSelectControlElement.prototype.TEXT_NODE=0;
-nsIDOMXULSelectControlElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULSelectControlElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULSelectControlElement.prototype.ENTITY_NODE=0;
-nsIDOMXULSelectControlElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULSelectControlElement.prototype.COMMENT_NODE=0;
-nsIDOMXULSelectControlElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULSelectControlElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULSelectControlElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULSelectControlElement.prototype.NOTATION_NODE=0;
-nsIVariant.prototype= new Array();
-function nsIVariant(){};
-nsIDOMCanvasPattern.prototype= new Array();
-function nsIDOMCanvasPattern(){};
-nsISupportsVoid.prototype= new Array();
-function nsISupportsVoid(){};
-nsISupportsVoid.prototype.TYPE_ID=0;
-nsISupportsVoid.prototype.TYPE_CSTRING=0;
-nsISupportsVoid.prototype.TYPE_STRING=0;
-nsISupportsVoid.prototype.TYPE_PRBOOL=0;
-nsISupportsVoid.prototype.TYPE_PRUINT8=0;
-nsISupportsVoid.prototype.TYPE_PRUINT16=0;
-nsISupportsVoid.prototype.TYPE_PRUINT32=0;
-nsISupportsVoid.prototype.TYPE_PRUINT64=0;
-nsISupportsVoid.prototype.TYPE_PRTIME=0;
-nsISupportsVoid.prototype.TYPE_CHAR=0;
-nsISupportsVoid.prototype.TYPE_PRINT16=0;
-nsISupportsVoid.prototype.TYPE_PRINT32=0;
-nsISupportsVoid.prototype.TYPE_PRINT64=0;
-nsISupportsVoid.prototype.TYPE_FLOAT=0;
-nsISupportsVoid.prototype.TYPE_DOUBLE=0;
-nsISupportsVoid.prototype.TYPE_VOID=0;
-nsISupportsVoid.prototype.TYPE_INTERFACE_POINTER=0;
-nsIDOMCSSImportRule.prototype= new Array();
-function nsIDOMCSSImportRule(){};
-nsIDOMCSSImportRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSImportRule.prototype.STYLE_RULE=0;
-nsIDOMCSSImportRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSImportRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSImportRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSImportRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSImportRule.prototype.PAGE_RULE=0;
-nsISchemaModelGroup.prototype= new Array();
-function nsISchemaModelGroup(){};
-nsISchemaModelGroup.prototype.PARTICLE_TYPE_ELEMENT=0;
-nsISchemaModelGroup.prototype.PARTICLE_TYPE_MODEL_GROUP=0;
-nsISchemaModelGroup.prototype.PARTICLE_TYPE_ANY=0;
-nsISchemaModelGroup.prototype.OCCURRENCE_UNBOUNDED=0;
-nsISchemaModelGroup.prototype.COMPOSITOR_ALL=0;
-nsISchemaModelGroup.prototype.COMPOSITOR_SEQUENCE=0;
-nsISchemaModelGroup.prototype.COMPOSITOR_CHOICE=0;
-nsIConsoleMessage.prototype= new Array();
-function nsIConsoleMessage(){};
-nsISAXLocator.prototype= new Array();
-function nsISAXLocator(){};
-inIDOMView.prototype= new Array();
-function inIDOMView(){};
-nsIDOMHTMLCollection.prototype= new Array();
-function nsIDOMHTMLCollection(){};
-nsICacheDeviceInfo.prototype= new Array();
-function nsICacheDeviceInfo(){};
-nsIFeedPerson.prototype= new Array();
-function nsIFeedPerson(){};
-nsIDOMEvent.prototype= new Array();
-function nsIDOMEvent(){};
-nsIDOMEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMEvent.prototype.AT_TARGET=0;
-nsIDOMEvent.prototype.BUBBLING_PHASE=0;
-nsICacheVisitor.prototype= new Array();
-function nsICacheVisitor(){};
-nsISerializable.prototype= new Array();
-function nsISerializable(){};
-nsINonBlockingAlertService.prototype= new Array();
-function nsINonBlockingAlertService(){};
-nsICertificateDialogs.prototype= new Array();
-function nsICertificateDialogs(){};
-nsIInputIterator.prototype= new Array();
-function nsIInputIterator(){};
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoQuadraticSmoothRel(){};
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIInternetSearchService.prototype= new Array();
-function nsIInternetSearchService(){};
-nsIInternetSearchService.prototype.kHaveNext=0;
-nsIInternetSearchService.prototype.kHavePrev=0;
-nsIHttpAuthenticator.prototype= new Array();
-function nsIHttpAuthenticator(){};
-nsIHttpAuthenticator.prototype.REQUEST_BASED=0;
-nsIHttpAuthenticator.prototype.CONNECTION_BASED=0;
-nsIHttpAuthenticator.prototype.REUSABLE_CREDENTIALS=0;
-nsIHttpAuthenticator.prototype.REUSABLE_CHALLENGE=0;
-nsIHttpAuthenticator.prototype.IDENTITY_IGNORED=0;
-nsIHttpAuthenticator.prototype.IDENTITY_INCLUDES_DOMAIN=0;
-nsIAddonUpdateListener.prototype= new Array();
-function nsIAddonUpdateListener(){};
-nsIEditorLogging.prototype= new Array();
-function nsIEditorLogging(){};
-nsIZipReaderCache.prototype= new Array();
-function nsIZipReaderCache(){};
-nsIAsyncStreamCopier.prototype= new Array();
-function nsIAsyncStreamCopier(){};
-nsIAsyncStreamCopier.prototype.LOAD_NORMAL="";
-nsIAsyncStreamCopier.prototype.LOAD_BACKGROUND=0;
-nsIAsyncStreamCopier.prototype.INHIBIT_CACHING=0;
-nsIAsyncStreamCopier.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIAsyncStreamCopier.prototype.LOAD_BYPASS_CACHE=0;
-nsIAsyncStreamCopier.prototype.LOAD_FROM_CACHE=0;
-nsIAsyncStreamCopier.prototype.VALIDATE_ALWAYS=0;
-nsIAsyncStreamCopier.prototype.VALIDATE_NEVER=0;
-nsIAsyncStreamCopier.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIDOMXULLabeledControlElement.prototype= new Array();
-function nsIDOMXULLabeledControlElement(){};
-nsIDOMXULLabeledControlElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.TEXT_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.ENTITY_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.COMMENT_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULLabeledControlElement.prototype.NOTATION_NODE=0;
-nsICookieAcceptDialog.prototype= new Array();
-function nsICookieAcceptDialog(){};
-nsICookieAcceptDialog.prototype.ACCEPT_COOKIE="";
-nsICookieAcceptDialog.prototype.REMEMBER_DECISION=0;
-nsICookieAcceptDialog.prototype.HOSTNAME=0;
-nsICookieAcceptDialog.prototype.COOKIESFROMHOST=0;
-nsICookieAcceptDialog.prototype.CHANGINGCOOKIE=0;
-nsIDOMSVGAnimatedEnumeration.prototype= new Array();
-function nsIDOMSVGAnimatedEnumeration(){};
-nsIPKCS11ModuleDB.prototype= new Array();
-function nsIPKCS11ModuleDB(){};
-nsISecretDecoderRingConfig.prototype= new Array();
-function nsISecretDecoderRingConfig(){};
-nsIDOMCSSUnknownRule.prototype= new Array();
-function nsIDOMCSSUnknownRule(){};
-nsIDOMCSSUnknownRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSUnknownRule.prototype.STYLE_RULE=0;
-nsIDOMCSSUnknownRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSUnknownRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSUnknownRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSUnknownRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSUnknownRule.prototype.PAGE_RULE=0;
-nsIXPTLoader.prototype= new Array();
-function nsIXPTLoader(){};
-nsIDOMSVGAnimatedString.prototype= new Array();
-function nsIDOMSVGAnimatedString(){};
-nsIContentFilter.prototype= new Array();
-function nsIContentFilter(){};
-nsIWSDLLoadListener.prototype= new Array();
-function nsIWSDLLoadListener(){};
-mozIStorageStatementRow.prototype= new Array();
-function mozIStorageStatementRow(){};
-imgIDecoderObserver_MOZILLA_1_8_BRANCH.prototype= new Array();
-function imgIDecoderObserver_MOZILLA_1_8_BRANCH(){};
-mozISpellCheckingEngine.prototype= new Array();
-function mozISpellCheckingEngine(){};
-nsISOAPMessageBinding.prototype= new Array();
-function nsISOAPMessageBinding(){};
-nsISOAPMessageBinding.prototype.STYLE_RPC=0;
-nsISOAPMessageBinding.prototype.STYLE_DOCUMENT=0;
-nsICommandHandlerInit.prototype= new Array();
-function nsICommandHandlerInit(){};
-mozIStorageDataSet.prototype= new Array();
-function mozIStorageDataSet(){};
-nsIDOMNSHTMLFrameElement.prototype= new Array();
-function nsIDOMNSHTMLFrameElement(){};
-nsIProfile.prototype= new Array();
-function nsIProfile(){};
-nsIProfile.prototype.SHUTDOWN_PERSIST=0;
-nsIProfile.prototype.SHUTDOWN_CLEANSE=0;
-nsIDOMSVGRect.prototype= new Array();
-function nsIDOMSVGRect(){};
-nsIDOMSVGPathSegMovetoRel.prototype= new Array();
-function nsIDOMSVGPathSegMovetoRel(){};
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegMovetoRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIPromptService.prototype= new Array();
-function nsIPromptService(){};
-nsIPromptService.prototype.BUTTON_POS_0=0;
-nsIPromptService.prototype.BUTTON_POS_1=0;
-nsIPromptService.prototype.BUTTON_POS_2=0;
-nsIPromptService.prototype.BUTTON_TITLE_OK=0;
-nsIPromptService.prototype.BUTTON_TITLE_CANCEL=0;
-nsIPromptService.prototype.BUTTON_TITLE_YES=0;
-nsIPromptService.prototype.BUTTON_TITLE_NO=0;
-nsIPromptService.prototype.BUTTON_TITLE_SAVE=0;
-nsIPromptService.prototype.BUTTON_TITLE_DONT_SAVE=0;
-nsIPromptService.prototype.BUTTON_TITLE_REVERT=0;
-nsIPromptService.prototype.BUTTON_TITLE_IS_STRING=0;
-nsIPromptService.prototype.BUTTON_POS_0_DEFAULT="";
-nsIPromptService.prototype.BUTTON_POS_1_DEFAULT=0;
-nsIPromptService.prototype.BUTTON_POS_2_DEFAULT=0;
-nsIPromptService.prototype.BUTTON_DELAY_ENABLE=0;
-nsIPromptService.prototype.STD_OK_CANCEL_BUTTONS=0;
-nsIPromptService.prototype.STD_YES_NO_BUTTONS=0;
-nsIJARProtocolHandler.prototype= new Array();
-function nsIJARProtocolHandler(){};
-nsIJARProtocolHandler.prototype.URI_STD="";
-nsIJARProtocolHandler.prototype.URI_NORELATIVE=0;
-nsIJARProtocolHandler.prototype.URI_NOAUTH=0;
-nsIJARProtocolHandler.prototype.ALLOWS_PROXY=0;
-nsIJARProtocolHandler.prototype.ALLOWS_PROXY_HTTP=0;
-nsIRefreshURI.prototype= new Array();
-function nsIRefreshURI(){};
-nsIDOMXPathExpression.prototype= new Array();
-function nsIDOMXPathExpression(){};
-nsISchema.prototype= new Array();
-function nsISchema(){};
-nsIDOMSVGLineElement.prototype= new Array();
-function nsIDOMSVGLineElement(){};
-nsIDOMSVGLineElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGLineElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGLineElement.prototype.TEXT_NODE=0;
-nsIDOMSVGLineElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGLineElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGLineElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGLineElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGLineElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGLineElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGLineElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGLineElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGLineElement.prototype.NOTATION_NODE=0;
-nsITreeColumn.prototype= new Array();
-function nsITreeColumn(){};
-nsITreeColumn.prototype.TYPE_TEXT=0;
-nsITreeColumn.prototype.TYPE_CHECKBOX=0;
-nsITreeColumn.prototype.TYPE_PROGRESSMETER=0;
-nsIAutoCompletePopup.prototype= new Array();
-function nsIAutoCompletePopup(){};
-nsIFullScreen.prototype= new Array();
-function nsIFullScreen(){};
-nsIDOMPkcs11.prototype= new Array();
-function nsIDOMPkcs11(){};
-nsIRequest.prototype= new Array();
-function nsIRequest(){};
-nsIRequest.prototype.LOAD_NORMAL="";
-nsIRequest.prototype.LOAD_BACKGROUND=0;
-nsIRequest.prototype.INHIBIT_CACHING=0;
-nsIRequest.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIRequest.prototype.LOAD_BYPASS_CACHE=0;
-nsIRequest.prototype.LOAD_FROM_CACHE=0;
-nsIRequest.prototype.VALIDATE_ALWAYS=0;
-nsIRequest.prototype.VALIDATE_NEVER=0;
-nsIRequest.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIDOMCSSPageRule.prototype= new Array();
-function nsIDOMCSSPageRule(){};
-nsIDOMCSSPageRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSPageRule.prototype.STYLE_RULE=0;
-nsIDOMCSSPageRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSPageRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSPageRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSPageRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSPageRule.prototype.PAGE_RULE=0;
-nsIWebBrowserPrint.prototype= new Array();
-function nsIWebBrowserPrint(){};
-nsIWebBrowserPrint.prototype.PRINTPREVIEW_GOTO_PAGENUM="";
-nsIWebBrowserPrint.prototype.PRINTPREVIEW_PREV_PAGE=0;
-nsIWebBrowserPrint.prototype.PRINTPREVIEW_NEXT_PAGE=0;
-nsIWebBrowserPrint.prototype.PRINTPREVIEW_HOME=0;
-nsIWebBrowserPrint.prototype.PRINTPREVIEW_END=0;
-nsIDOMNameList.prototype= new Array();
-function nsIDOMNameList(){};
-nsIGlobalHistory2.prototype= new Array();
-function nsIGlobalHistory2(){};
-nsISOAPResponseListener.prototype= new Array();
-function nsISOAPResponseListener(){};
-nsIUrlClassifierTable.prototype= new Array();
-function nsIUrlClassifierTable(){};
-nsIDOMSVGAnimatedNumber.prototype= new Array();
-function nsIDOMSVGAnimatedNumber(){};
-nsIBrowserHistory.prototype= new Array();
-function nsIBrowserHistory(){};
-nsIRDFDelegateFactory.prototype= new Array();
-function nsIRDFDelegateFactory(){};
-nsIDOMCSSPrimitiveValue.prototype= new Array();
-function nsIDOMCSSPrimitiveValue(){};
-nsIDOMCSSPrimitiveValue.prototype.CSS_INHERIT="";
-nsIDOMCSSPrimitiveValue.prototype.CSS_PRIMITIVE_VALUE=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_VALUE_LIST=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_CUSTOM=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_UNKNOWN="";
-nsIDOMCSSPrimitiveValue.prototype.CSS_NUMBER=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_PERCENTAGE=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_EMS=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_EXS=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_PX=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_CM=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_MM=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_IN=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_PT=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_PC=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_DEG=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_RAD=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_GRAD=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_MS=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_S=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_HZ=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_KHZ=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_DIMENSION=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_STRING=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_URI=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_IDENT=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_ATTR=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_COUNTER=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_RECT=0;
-nsIDOMCSSPrimitiveValue.prototype.CSS_RGBCOLOR=0;
-nsIFeedResult.prototype= new Array();
-function nsIFeedResult(){};
-nsISelectionController.prototype= new Array();
-function nsISelectionController(){};
-nsISelectionController.prototype.DISPLAY_TEXT=0;
-nsISelectionController.prototype.DISPLAY_IMAGES=0;
-nsISelectionController.prototype.DISPLAY_FRAMES=0;
-nsISelectionController.prototype.DISPLAY_ALL=0;
-nsISelectionController.prototype.SELECTION_NONE="";
-nsISelectionController.prototype.SELECTION_NORMAL=0;
-nsISelectionController.prototype.SELECTION_SPELLCHECK=0;
-nsISelectionController.prototype.SELECTION_IME_RAWINPUT=0;
-nsISelectionController.prototype.SELECTION_IME_SELECTEDRAWTEXT=0;
-nsISelectionController.prototype.SELECTION_IME_CONVERTEDTEXT=0;
-nsISelectionController.prototype.SELECTION_IME_SELECTEDCONVERTEDTEXT=0;
-nsISelectionController.prototype.SELECTION_ACCESSIBILITY=0;
-nsISelectionController.prototype.NUM_SELECTIONTYPES=0;
-nsISelectionController.prototype.SELECTION_ANCHOR_REGION="";
-nsISelectionController.prototype.SELECTION_FOCUS_REGION=0;
-nsISelectionController.prototype.NUM_SELECTION_REGIONS=0;
-nsISelectionController.prototype.SELECTION_OFF="";
-nsISelectionController.prototype.SELECTION_HIDDEN=0;
-nsISelectionController.prototype.SELECTION_ON=0;
-nsISelectionController.prototype.SELECTION_DISABLED=0;
-nsISelectionController.prototype.SELECTION_ATTENTION=0;
-nsISocketProvider.prototype= new Array();
-function nsISocketProvider(){};
-nsISocketProvider.prototype.PROXY_RESOLVES_HOST=0;
-nsIFontPackageService.prototype= new Array();
-function nsIFontPackageService(){};
-nsIStringInputStream.prototype= new Array();
-function nsIStringInputStream(){};
-nsIPhonetic.prototype= new Array();
-function nsIPhonetic(){};
-nsIDOMSVGDefsElement.prototype= new Array();
-function nsIDOMSVGDefsElement(){};
-nsIDOMSVGDefsElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGDefsElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGDefsElement.prototype.TEXT_NODE=0;
-nsIDOMSVGDefsElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGDefsElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGDefsElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGDefsElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGDefsElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGDefsElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGDefsElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGDefsElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGDefsElement.prototype.NOTATION_NODE=0;
-imgIDecoder.prototype= new Array();
-function imgIDecoder(){};
-nsIDOMCSSValue.prototype= new Array();
-function nsIDOMCSSValue(){};
-nsIDOMCSSValue.prototype.CSS_INHERIT="";
-nsIDOMCSSValue.prototype.CSS_PRIMITIVE_VALUE=0;
-nsIDOMCSSValue.prototype.CSS_VALUE_LIST=0;
-nsIDOMCSSValue.prototype.CSS_CUSTOM=0;
-nsISHContainer.prototype= new Array();
-function nsISHContainer(){};
-nsICryptoFIPSInfo.prototype= new Array();
-function nsICryptoFIPSInfo(){};
-nsIMenuBoxObject.prototype= new Array();
-function nsIMenuBoxObject(){};
-nsIWSDLPort.prototype= new Array();
-function nsIWSDLPort(){};
-nsIDOMSVGPathSegClosePath.prototype= new Array();
-function nsIDOMSVGPathSegClosePath(){};
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegClosePath.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIDOMLSException.prototype= new Array();
-function nsIDOMLSException(){};
-nsIDOMLSException.prototype.PARSE_ERR=0;
-nsIDOMLSException.prototype.SERIALIZE_ERR=0;
-nsIDOMHTMLFieldSetElement.prototype= new Array();
-function nsIDOMHTMLFieldSetElement(){};
-nsIDOMHTMLFieldSetElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLFieldSetElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype= new Array();
-function nsIDOMSVGLinearGradientElement(){};
-nsIDOMSVGLinearGradientElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.TEXT_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGLinearGradientElement.prototype.SVG_SPREADMETHOD_UNKNOWN="";
-nsIDOMSVGLinearGradientElement.prototype.SVG_SPREADMETHOD_PAD=0;
-nsIDOMSVGLinearGradientElement.prototype.SVG_SPREADMETHOD_REFLECT=0;
-nsIDOMSVGLinearGradientElement.prototype.SVG_SPREADMETHOD_REPEAT=0;
-nsIDOMSVGLinearGradientElement.prototype.SVG_GRUNITS_UNKNOWN="";
-nsIDOMSVGLinearGradientElement.prototype.SVG_GRUNITS_OBJECTBOUNDINGBOX=0;
-nsIDOMSVGLinearGradientElement.prototype.SVG_GRUNITS_USERSPACEONUSE=0;
-nsIDOMStorage.prototype= new Array();
-function nsIDOMStorage(){};
-nsIStreamLoader.prototype= new Array();
-function nsIStreamLoader(){};
-nsIDOMWindowCollection.prototype= new Array();
-function nsIDOMWindowCollection(){};
-nsIBinaryInputStream.prototype= new Array();
-function nsIBinaryInputStream(){};
-nsIFeedProcessor.prototype= new Array();
-function nsIFeedProcessor(){};
-nsITextScroll.prototype= new Array();
-function nsITextScroll(){};
-nsIDOMSVGRadialGradientElement.prototype= new Array();
-function nsIDOMSVGRadialGradientElement(){};
-nsIDOMSVGRadialGradientElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.TEXT_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGRadialGradientElement.prototype.SVG_SPREADMETHOD_UNKNOWN="";
-nsIDOMSVGRadialGradientElement.prototype.SVG_SPREADMETHOD_PAD=0;
-nsIDOMSVGRadialGradientElement.prototype.SVG_SPREADMETHOD_REFLECT=0;
-nsIDOMSVGRadialGradientElement.prototype.SVG_SPREADMETHOD_REPEAT=0;
-nsIDOMSVGRadialGradientElement.prototype.SVG_GRUNITS_UNKNOWN="";
-nsIDOMSVGRadialGradientElement.prototype.SVG_GRUNITS_OBJECTBOUNDINGBOX=0;
-nsIDOMSVGRadialGradientElement.prototype.SVG_GRUNITS_USERSPACEONUSE=0;
-nsIVersionComparator.prototype= new Array();
-function nsIVersionComparator(){};
-nsIAsyncStreamListener.prototype= new Array();
-function nsIAsyncStreamListener(){};
-nsIBrowserDOMWindow.prototype= new Array();
-function nsIBrowserDOMWindow(){};
-nsIBrowserDOMWindow.prototype.OPEN_DEFAULTWINDOW="";
-nsIBrowserDOMWindow.prototype.OPEN_CURRENTWINDOW=0;
-nsIBrowserDOMWindow.prototype.OPEN_NEWWINDOW=0;
-nsIBrowserDOMWindow.prototype.OPEN_NEWTAB=0;
-nsIBrowserDOMWindow.prototype.OPEN_EXTERNAL=0;
-nsIBrowserDOMWindow.prototype.OPEN_NEW=0;
-nsIDOMXPathException.prototype= new Array();
-function nsIDOMXPathException(){};
-nsIDOMXPathException.prototype.INVALID_EXPRESSION_ERR=0;
-nsIDOMXPathException.prototype.TYPE_ERR=0;
-nsISHistory.prototype= new Array();
-function nsISHistory(){};
-nsIDOMCrypto.prototype= new Array();
-function nsIDOMCrypto(){};
-nsIAccessible.prototype= new Array();
-function nsIAccessible(){};
-nsIAccessible.prototype.STATE_UNAVAILABLE=0;
-nsIAccessible.prototype.STATE_SELECTED=0;
-nsIAccessible.prototype.STATE_FOCUSED=0;
-nsIAccessible.prototype.STATE_PRESSED=0;
-nsIAccessible.prototype.STATE_CHECKED=0;
-nsIAccessible.prototype.STATE_MIXED=0;
-nsIAccessible.prototype.STATE_READONLY=0;
-nsIAccessible.prototype.STATE_HOTTRACKED=0;
-nsIAccessible.prototype.STATE_DEFAULT=0;
-nsIAccessible.prototype.STATE_EXPANDED=0;
-nsIAccessible.prototype.STATE_COLLAPSED=0;
-nsIAccessible.prototype.STATE_BUSY=0;
-nsIAccessible.prototype.STATE_FLOATING=0;
-nsIAccessible.prototype.STATE_MARQUEED=0;
-nsIAccessible.prototype.STATE_ANIMATED=0;
-nsIAccessible.prototype.STATE_INVISIBLE=0;
-nsIAccessible.prototype.STATE_OFFSCREEN=0;
-nsIAccessible.prototype.STATE_SIZEABLE=0;
-nsIAccessible.prototype.STATE_MOVEABLE=0;
-nsIAccessible.prototype.STATE_SELFVOICING=0;
-nsIAccessible.prototype.STATE_FOCUSABLE=0;
-nsIAccessible.prototype.STATE_SELECTABLE=0;
-nsIAccessible.prototype.STATE_LINKED=0;
-nsIAccessible.prototype.STATE_TRAVERSED=0;
-nsIAccessible.prototype.STATE_MULTISELECTABLE=0;
-nsIAccessible.prototype.STATE_EXTSELECTABLE=0;
-nsIAccessible.prototype.STATE_ALERT_LOW=0;
-nsIAccessible.prototype.STATE_ALERT_MEDIUM=0;
-nsIAccessible.prototype.STATE_ALERT_HIGH=0;
-nsIAccessible.prototype.STATE_PROTECTED=0;
-nsIAccessible.prototype.STATE_HASPOPUP=0;
-nsIAccessible.prototype.STATE_REQUIRED=0;
-nsIAccessible.prototype.STATE_IMPORTANT=0;
-nsIAccessible.prototype.STATE_INVALID=0;
-nsIAccessible.prototype.STATE_CHECKABLE=0;
-nsIAccessible.prototype.EXT_STATE_EDITABLE=0;
-nsIAccessible.prototype.EXT_STATE_ACTIVE=0;
-nsIAccessible.prototype.EXT_STATE_EXPANDABLE=0;
-nsIAccessible.prototype.EXT_STATE_MODAL=0;
-nsIAccessible.prototype.EXT_STATE_MULTI_LINE=0;
-nsIAccessible.prototype.EXT_STATE_SENSITIVE=0;
-nsIAccessible.prototype.EXT_STATE_SHOWING=0;
-nsIAccessible.prototype.EXT_STATE_SINGLE_LINE=0;
-nsIAccessible.prototype.EXT_STATE_TRANSIENT=0;
-nsIAccessible.prototype.EXT_STATE_VERTICAL=0;
-nsIAccessible.prototype.RELATION_NUL="";
-nsIAccessible.prototype.RELATION_CONTROLLED_BY=0;
-nsIAccessible.prototype.RELATION_CONTROLLER_FOR=0;
-nsIAccessible.prototype.RELATION_LABEL_FOR=0;
-nsIAccessible.prototype.RELATION_LABELLED_BY=0;
-nsIAccessible.prototype.RELATION_MEMBER_OF=0;
-nsIAccessible.prototype.RELATION_NODE_CHILD_OF=0;
-nsIAccessible.prototype.RELATION_FLOWS_TO=0;
-nsIAccessible.prototype.RELATION_FLOWS_FROM=0;
-nsIAccessible.prototype.RELATION_SUBWINDOW_OF=0;
-nsIAccessible.prototype.RELATION_EMBEDS=0;
-nsIAccessible.prototype.RELATION_EMBEDDED_BY=0;
-nsIAccessible.prototype.RELATION_POPUP_FOR=0;
-nsIAccessible.prototype.RELATION_PARENT_WINDOW_OF=0;
-nsIAccessible.prototype.RELATION_DEFAULT_BUTTON=0;
-nsIAccessible.prototype.RELATION_DESCRIBED_BY=0;
-nsIAccessible.prototype.RELATION_DESCRIPTION_FOR=0;
-nsITransaction.prototype= new Array();
-function nsITransaction(){};
-nsIDOMHTMLOptionsCollection.prototype= new Array();
-function nsIDOMHTMLOptionsCollection(){};
-nsIDOMNSEvent.prototype= new Array();
-function nsIDOMNSEvent(){};
-nsIDOMNSEvent.prototype.MOUSEDOWN=0;
-nsIDOMNSEvent.prototype.MOUSEUP=0;
-nsIDOMNSEvent.prototype.MOUSEOVER=0;
-nsIDOMNSEvent.prototype.MOUSEOUT=0;
-nsIDOMNSEvent.prototype.MOUSEMOVE=0;
-nsIDOMNSEvent.prototype.MOUSEDRAG=0;
-nsIDOMNSEvent.prototype.CLICK=0;
-nsIDOMNSEvent.prototype.DBLCLICK=0;
-nsIDOMNSEvent.prototype.KEYDOWN=0;
-nsIDOMNSEvent.prototype.KEYUP=0;
-nsIDOMNSEvent.prototype.KEYPRESS=0;
-nsIDOMNSEvent.prototype.DRAGDROP=0;
-nsIDOMNSEvent.prototype.FOCUS=0;
-nsIDOMNSEvent.prototype.BLUR=0;
-nsIDOMNSEvent.prototype.SELECT=0;
-nsIDOMNSEvent.prototype.CHANGE=0;
-nsIDOMNSEvent.prototype.RESET=0;
-nsIDOMNSEvent.prototype.SUBMIT=0;
-nsIDOMNSEvent.prototype.SCROLL=0;
-nsIDOMNSEvent.prototype.LOAD=0;
-nsIDOMNSEvent.prototype.UNLOAD=0;
-nsIDOMNSEvent.prototype.XFER_DONE=0;
-nsIDOMNSEvent.prototype.ABORT=0;
-nsIDOMNSEvent.prototype.ERROR=0;
-nsIDOMNSEvent.prototype.LOCATE=0;
-nsIDOMNSEvent.prototype.MOVE=0;
-nsIDOMNSEvent.prototype.RESIZE=0;
-nsIDOMNSEvent.prototype.FORWARD=0;
-nsIDOMNSEvent.prototype.HELP=0;
-nsIDOMNSEvent.prototype.BACK=0;
-nsIDOMNSEvent.prototype.TEXT=0;
-nsIDOMNSEvent.prototype.ALT_MASK=0;
-nsIDOMNSEvent.prototype.CONTROL_MASK=0;
-nsIDOMNSEvent.prototype.SHIFT_MASK=0;
-nsIDOMNSEvent.prototype.META_MASK=0;
-nsIAutoCompleteInput.prototype= new Array();
-function nsIAutoCompleteInput(){};
-nsICertTree.prototype= new Array();
-function nsICertTree(){};
-nsICertTree.prototype.DROP_BEFORE=0;
-nsICertTree.prototype.DROP_ON="";
-nsICertTree.prototype.DROP_AFTER=0;
-nsICertTree.prototype.PROGRESS_NORMAL=0;
-nsICertTree.prototype.PROGRESS_UNDETERMINED=0;
-nsICertTree.prototype.PROGRESS_NONE=0;
-nsIComponentRegistrar.prototype= new Array();
-function nsIComponentRegistrar(){};
-nsIFileChannel.prototype= new Array();
-function nsIFileChannel(){};
-nsIFileChannel.prototype.LOAD_NORMAL="";
-nsIFileChannel.prototype.LOAD_BACKGROUND=0;
-nsIFileChannel.prototype.INHIBIT_CACHING=0;
-nsIFileChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIFileChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIFileChannel.prototype.LOAD_FROM_CACHE=0;
-nsIFileChannel.prototype.VALIDATE_ALWAYS=0;
-nsIFileChannel.prototype.VALIDATE_NEVER=0;
-nsIFileChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIFileChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIFileChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIFileChannel.prototype.LOAD_REPLACE=0;
-nsIFileChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIFileChannel.prototype.LOAD_TARGETED=0;
-nsIFileChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-jsdIExecutionHook.prototype= new Array();
-function jsdIExecutionHook(){};
-jsdIExecutionHook.prototype.TYPE_INTERRUPTED="";
-jsdIExecutionHook.prototype.TYPE_BREAKPOINT=0;
-jsdIExecutionHook.prototype.TYPE_DEBUG_REQUESTED=0;
-jsdIExecutionHook.prototype.TYPE_DEBUGGER_KEYWORD=0;
-jsdIExecutionHook.prototype.TYPE_THROW=0;
-jsdIExecutionHook.prototype.RETURN_HOOK_ERROR="";
-jsdIExecutionHook.prototype.RETURN_CONTINUE=0;
-jsdIExecutionHook.prototype.RETURN_ABORT=0;
-jsdIExecutionHook.prototype.RETURN_RET_WITH_VAL=0;
-jsdIExecutionHook.prototype.RETURN_THROW_WITH_VAL=0;
-jsdIExecutionHook.prototype.RETURN_CONTINUE_THROW=0;
-nsIAutoCompleteInput_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIAutoCompleteInput_MOZILLA_1_8_BRANCH(){};
-nsIBoxLayoutManager.prototype= new Array();
-function nsIBoxLayoutManager(){};
-nsIMicrosummary.prototype= new Array();
-function nsIMicrosummary(){};
-nsICacheListener.prototype= new Array();
-function nsICacheListener(){};
-nsISupportsPRBool.prototype= new Array();
-function nsISupportsPRBool(){};
-nsISupportsPRBool.prototype.TYPE_ID=0;
-nsISupportsPRBool.prototype.TYPE_CSTRING=0;
-nsISupportsPRBool.prototype.TYPE_STRING=0;
-nsISupportsPRBool.prototype.TYPE_PRBOOL=0;
-nsISupportsPRBool.prototype.TYPE_PRUINT8=0;
-nsISupportsPRBool.prototype.TYPE_PRUINT16=0;
-nsISupportsPRBool.prototype.TYPE_PRUINT32=0;
-nsISupportsPRBool.prototype.TYPE_PRUINT64=0;
-nsISupportsPRBool.prototype.TYPE_PRTIME=0;
-nsISupportsPRBool.prototype.TYPE_CHAR=0;
-nsISupportsPRBool.prototype.TYPE_PRINT16=0;
-nsISupportsPRBool.prototype.TYPE_PRINT32=0;
-nsISupportsPRBool.prototype.TYPE_PRINT64=0;
-nsISupportsPRBool.prototype.TYPE_FLOAT=0;
-nsISupportsPRBool.prototype.TYPE_DOUBLE=0;
-nsISupportsPRBool.prototype.TYPE_VOID=0;
-nsISupportsPRBool.prototype.TYPE_INTERFACE_POINTER=0;
-mozIStorageValueArray.prototype= new Array();
-function mozIStorageValueArray(){};
-mozIStorageValueArray.prototype.VALUE_TYPE_NULL="";
-mozIStorageValueArray.prototype.VALUE_TYPE_INTEGER=0;
-mozIStorageValueArray.prototype.VALUE_TYPE_FLOAT=0;
-mozIStorageValueArray.prototype.VALUE_TYPE_TEXT=0;
-mozIStorageValueArray.prototype.VALUE_TYPE_BLOB=0;
-nsIXPInstallManagerUI.prototype= new Array();
-function nsIXPInstallManagerUI(){};
-nsIXPInstallManagerUI.prototype.INSTALL_DOWNLOADING=0;
-nsIXPInstallManagerUI.prototype.INSTALL_INSTALLING=0;
-nsIXPInstallManagerUI.prototype.INSTALL_FINISHED=0;
-nsIXPInstallManagerUI.prototype.DOWNLOAD_TYPE_INSTALL=0;
-nsIDOMDocumentEvent.prototype= new Array();
-function nsIDOMDocumentEvent(){};
-nsIDOMXULCommandEvent.prototype= new Array();
-function nsIDOMXULCommandEvent(){};
-nsIDOMXULCommandEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMXULCommandEvent.prototype.AT_TARGET=0;
-nsIDOMXULCommandEvent.prototype.BUBBLING_PHASE=0;
-nsIContentSniffer_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIContentSniffer_MOZILLA_1_8_BRANCH(){};
-nsIXULAppInfo.prototype= new Array();
-function nsIXULAppInfo(){};
-nsIProxiedProtocolHandler.prototype= new Array();
-function nsIProxiedProtocolHandler(){};
-nsIProxiedProtocolHandler.prototype.URI_STD="";
-nsIProxiedProtocolHandler.prototype.URI_NORELATIVE=0;
-nsIProxiedProtocolHandler.prototype.URI_NOAUTH=0;
-nsIProxiedProtocolHandler.prototype.ALLOWS_PROXY=0;
-nsIProxiedProtocolHandler.prototype.ALLOWS_PROXY_HTTP=0;
-nsISupportsString.prototype= new Array();
-function nsISupportsString(){};
-nsISupportsString.prototype.TYPE_ID=0;
-nsISupportsString.prototype.TYPE_CSTRING=0;
-nsISupportsString.prototype.TYPE_STRING=0;
-nsISupportsString.prototype.TYPE_PRBOOL=0;
-nsISupportsString.prototype.TYPE_PRUINT8=0;
-nsISupportsString.prototype.TYPE_PRUINT16=0;
-nsISupportsString.prototype.TYPE_PRUINT32=0;
-nsISupportsString.prototype.TYPE_PRUINT64=0;
-nsISupportsString.prototype.TYPE_PRTIME=0;
-nsISupportsString.prototype.TYPE_CHAR=0;
-nsISupportsString.prototype.TYPE_PRINT16=0;
-nsISupportsString.prototype.TYPE_PRINT32=0;
-nsISupportsString.prototype.TYPE_PRINT64=0;
-nsISupportsString.prototype.TYPE_FLOAT=0;
-nsISupportsString.prototype.TYPE_DOUBLE=0;
-nsISupportsString.prototype.TYPE_VOID=0;
-nsISupportsString.prototype.TYPE_INTERFACE_POINTER=0;
-nsISafeOutputStream.prototype= new Array();
-function nsISafeOutputStream(){};
-inIDeepTreeWalker.prototype= new Array();
-function inIDeepTreeWalker(){};
-nsIDocShellTreeItem.prototype= new Array();
-function nsIDocShellTreeItem(){};
-nsIDocShellTreeItem.prototype.typeChrome="";
-nsIDocShellTreeItem.prototype.typeContent=0;
-nsIDocShellTreeItem.prototype.typeContentWrapper=0;
-nsIDocShellTreeItem.prototype.typeChromeWrapper=0;
-nsIDocShellTreeItem.prototype.typeAll=0;
-nsIDOMCSSFontFaceRule.prototype= new Array();
-function nsIDOMCSSFontFaceRule(){};
-nsIDOMCSSFontFaceRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSFontFaceRule.prototype.STYLE_RULE=0;
-nsIDOMCSSFontFaceRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSFontFaceRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSFontFaceRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSFontFaceRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSFontFaceRule.prototype.PAGE_RULE=0;
-nsIAlertsService.prototype= new Array();
-function nsIAlertsService(){};
-nsICMSMessageErrors.prototype= new Array();
-function nsICMSMessageErrors(){};
-nsICMSMessageErrors.prototype.SUCCESS="";
-nsICMSMessageErrors.prototype.GENERAL_ERROR=0;
-nsICMSMessageErrors.prototype.VERIFY_NOT_SIGNED=0;
-nsICMSMessageErrors.prototype.VERIFY_NO_CONTENT_INFO=0;
-nsICMSMessageErrors.prototype.VERIFY_BAD_DIGEST=0;
-nsICMSMessageErrors.prototype.VERIFY_NOCERT=0;
-nsICMSMessageErrors.prototype.VERIFY_UNTRUSTED=0;
-nsICMSMessageErrors.prototype.VERIFY_ERROR_UNVERIFIED=0;
-nsICMSMessageErrors.prototype.VERIFY_ERROR_PROCESSING=0;
-nsICMSMessageErrors.prototype.VERIFY_BAD_SIGNATURE=0;
-nsICMSMessageErrors.prototype.VERIFY_DIGEST_MISMATCH=0;
-nsICMSMessageErrors.prototype.VERIFY_UNKNOWN_ALGO=0;
-nsICMSMessageErrors.prototype.VERIFY_UNSUPPORTED_ALGO=0;
-nsICMSMessageErrors.prototype.VERIFY_MALFORMED_SIGNATURE=0;
-nsICMSMessageErrors.prototype.VERIFY_HEADER_MISMATCH=0;
-nsICMSMessageErrors.prototype.VERIFY_NOT_YET_ATTEMPTED=0;
-nsICMSMessageErrors.prototype.VERIFY_CERT_WITHOUT_ADDRESS=0;
-nsICMSMessageErrors.prototype.ENCRYPT_NO_BULK_ALG=0;
-nsIPrefBranch2.prototype= new Array();
-function nsIPrefBranch2(){};
-nsIPrefBranch2.prototype.PREF_INVALID="";
-nsIPrefBranch2.prototype.PREF_STRING=0;
-nsIPrefBranch2.prototype.PREF_INT=0;
-nsIPrefBranch2.prototype.PREF_BOOL=0;
-nsIXTFGenericElementWrapper.prototype= new Array();
-function nsIXTFGenericElementWrapper(){};
-inISearchObserver.prototype= new Array();
-function inISearchObserver(){};
-inISearchObserver.prototype.SUCCESS=0;
-inISearchObserver.prototype.INTERRUPTED=0;
-inISearchObserver.prototype.ERROR=0;
-nsIDOMSVGAnimatedLength.prototype= new Array();
-function nsIDOMSVGAnimatedLength(){};
-nsIUTF8StringEnumerator.prototype= new Array();
-function nsIUTF8StringEnumerator(){};
-nsICookieConsent.prototype= new Array();
-function nsICookieConsent(){};
-nsIResProtocolHandler.prototype= new Array();
-function nsIResProtocolHandler(){};
-nsIResProtocolHandler.prototype.URI_STD="";
-nsIResProtocolHandler.prototype.URI_NORELATIVE=0;
-nsIResProtocolHandler.prototype.URI_NOAUTH=0;
-nsIResProtocolHandler.prototype.ALLOWS_PROXY=0;
-nsIResProtocolHandler.prototype.ALLOWS_PROXY_HTTP=0;
-nsIServerSocketListener.prototype= new Array();
-function nsIServerSocketListener(){};
-nsIXTFBindableElement.prototype= new Array();
-function nsIXTFBindableElement(){};
-nsIXTFBindableElement.prototype.ELEMENT_TYPE_GENERIC_ELEMENT="";
-nsIXTFBindableElement.prototype.ELEMENT_TYPE_SVG_VISUAL=0;
-nsIXTFBindableElement.prototype.ELEMENT_TYPE_XML_VISUAL=0;
-nsIXTFBindableElement.prototype.ELEMENT_TYPE_XUL_VISUAL=0;
-nsIXTFBindableElement.prototype.ELEMENT_TYPE_BINDABLE=0;
-nsIXTFBindableElement.prototype.NOTIFY_WILL_CHANGE_DOCUMENT=0;
-nsIXTFBindableElement.prototype.NOTIFY_DOCUMENT_CHANGED=0;
-nsIXTFBindableElement.prototype.NOTIFY_WILL_CHANGE_PARENT=0;
-nsIXTFBindableElement.prototype.NOTIFY_PARENT_CHANGED=0;
-nsIXTFBindableElement.prototype.NOTIFY_WILL_INSERT_CHILD=0;
-nsIXTFBindableElement.prototype.NOTIFY_CHILD_INSERTED=0;
-nsIXTFBindableElement.prototype.NOTIFY_WILL_APPEND_CHILD=0;
-nsIXTFBindableElement.prototype.NOTIFY_CHILD_APPENDED=0;
-nsIXTFBindableElement.prototype.NOTIFY_WILL_REMOVE_CHILD=0;
-nsIXTFBindableElement.prototype.NOTIFY_CHILD_REMOVED=0;
-nsIXTFBindableElement.prototype.NOTIFY_WILL_SET_ATTRIBUTE=0;
-nsIXTFBindableElement.prototype.NOTIFY_ATTRIBUTE_SET=0;
-nsIXTFBindableElement.prototype.NOTIFY_WILL_REMOVE_ATTRIBUTE=0;
-nsIXTFBindableElement.prototype.NOTIFY_ATTRIBUTE_REMOVED=0;
-nsIXTFBindableElement.prototype.NOTIFY_BEGIN_ADDING_CHILDREN=0;
-nsIXTFBindableElement.prototype.NOTIFY_DONE_ADDING_CHILDREN=0;
-nsIXTFBindableElement.prototype.NOTIFY_HANDLE_DEFAULT=0;
-nsIAccessNode.prototype= new Array();
-function nsIAccessNode(){};
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoQuadraticAbs(){};
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsISupportsPRInt64.prototype= new Array();
-function nsISupportsPRInt64(){};
-nsISupportsPRInt64.prototype.TYPE_ID=0;
-nsISupportsPRInt64.prototype.TYPE_CSTRING=0;
-nsISupportsPRInt64.prototype.TYPE_STRING=0;
-nsISupportsPRInt64.prototype.TYPE_PRBOOL=0;
-nsISupportsPRInt64.prototype.TYPE_PRUINT8=0;
-nsISupportsPRInt64.prototype.TYPE_PRUINT16=0;
-nsISupportsPRInt64.prototype.TYPE_PRUINT32=0;
-nsISupportsPRInt64.prototype.TYPE_PRUINT64=0;
-nsISupportsPRInt64.prototype.TYPE_PRTIME=0;
-nsISupportsPRInt64.prototype.TYPE_CHAR=0;
-nsISupportsPRInt64.prototype.TYPE_PRINT16=0;
-nsISupportsPRInt64.prototype.TYPE_PRINT32=0;
-nsISupportsPRInt64.prototype.TYPE_PRINT64=0;
-nsISupportsPRInt64.prototype.TYPE_FLOAT=0;
-nsISupportsPRInt64.prototype.TYPE_DOUBLE=0;
-nsISupportsPRInt64.prototype.TYPE_VOID=0;
-nsISupportsPRInt64.prototype.TYPE_INTERFACE_POINTER=0;
-nsIDOMNSRange.prototype= new Array();
-function nsIDOMNSRange(){};
-nsIDOMNSRange.prototype.NODE_BEFORE="";
-nsIDOMNSRange.prototype.NODE_AFTER=0;
-nsIDOMNSRange.prototype.NODE_BEFORE_AND_AFTER=0;
-nsIDOMNSRange.prototype.NODE_INSIDE=0;
-nsIXPCComponents_ID.prototype= new Array();
-function nsIXPCComponents_ID(){};
-nsITooltipTextProvider.prototype= new Array();
-function nsITooltipTextProvider(){};
-nsIExternalHelperAppService.prototype= new Array();
-function nsIExternalHelperAppService(){};
-nsIFastLoadService.prototype= new Array();
-function nsIFastLoadService(){};
-nsIFastLoadService.prototype.NS_FASTLOAD_READ=0;
-nsIFastLoadService.prototype.NS_FASTLOAD_WRITE=0;
-nsIDOMDOMImplementationLS.prototype= new Array();
-function nsIDOMDOMImplementationLS(){};
-nsIDOMDOMImplementationLS.prototype.MODE_SYNCHRONOUS=0;
-nsIDOMDOMImplementationLS.prototype.MODE_ASYNCHRONOUS=0;
-nsIDOMHTMLDListElement.prototype= new Array();
-function nsIDOMHTMLDListElement(){};
-nsIDOMHTMLDListElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLDListElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLDListElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLDListElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLDListElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLDListElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLDListElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLDListElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLDListElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLDListElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLDListElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLDListElement.prototype.NOTATION_NODE=0;
-nsIWindowsRegKey.prototype= new Array();
-function nsIWindowsRegKey(){};
-nsIWindowsRegKey.prototype.ROOT_KEY_CLASSES_ROOT=0;
-nsIWindowsRegKey.prototype.ROOT_KEY_CURRENT_USER=0;
-nsIWindowsRegKey.prototype.ROOT_KEY_LOCAL_MACHINE=0;
-nsIWindowsRegKey.prototype.ACCESS_BASIC=0;
-nsIWindowsRegKey.prototype.ACCESS_QUERY_VALUE=0;
-nsIWindowsRegKey.prototype.ACCESS_SET_VALUE=0;
-nsIWindowsRegKey.prototype.ACCESS_CREATE_SUB_KEY=0;
-nsIWindowsRegKey.prototype.ACCESS_ENUMERATE_SUB_KEYS=0;
-nsIWindowsRegKey.prototype.ACCESS_NOTIFY=0;
-nsIWindowsRegKey.prototype.ACCESS_READ=0;
-nsIWindowsRegKey.prototype.ACCESS_WRITE=0;
-nsIWindowsRegKey.prototype.ACCESS_ALL=0;
-nsIWindowsRegKey.prototype.TYPE_NONE="";
-nsIWindowsRegKey.prototype.TYPE_STRING=0;
-nsIWindowsRegKey.prototype.TYPE_BINARY=0;
-nsIWindowsRegKey.prototype.TYPE_INT=0;
-nsIWindowsRegKey.prototype.TYPE_INT64=0;
-nsISchemaLoadListener.prototype= new Array();
-function nsISchemaLoadListener(){};
-nsII18nCompatibility.prototype= new Array();
-function nsII18nCompatibility(){};
-nsIWebScriptsAccessService.prototype= new Array();
-function nsIWebScriptsAccessService(){};
-nsIWindowCreator2.prototype= new Array();
-function nsIWindowCreator2(){};
-nsIWindowCreator2.prototype.PARENT_IS_LOADING_OR_RUNNING_TIMEOUT=0;
-nsIWebServiceErrorHandler.prototype= new Array();
-function nsIWebServiceErrorHandler(){};
-nsIBaseWindow.prototype= new Array();
-function nsIBaseWindow(){};
-nsIFastLoadFileControl.prototype= new Array();
-function nsIFastLoadFileControl(){};
-nsIPrefService.prototype= new Array();
-function nsIPrefService(){};
-nsIWritablePropertyBag.prototype= new Array();
-function nsIWritablePropertyBag(){};
-nsIDOMSVGException.prototype= new Array();
-function nsIDOMSVGException(){};
-nsIDOMSVGException.prototype.SVG_WRONG_TYPE_ERR="";
-nsIDOMSVGException.prototype.SVG_INVALID_VALUE_ERR=0;
-nsIDOMSVGException.prototype.SVG_MATRIX_NOT_INVERTABLE=0;
-nsIMicrosummaryGenerator.prototype= new Array();
-function nsIMicrosummaryGenerator(){};
-nsIDOMSVGPathSeg.prototype= new Array();
-function nsIDOMSVGPathSeg(){};
-nsIDOMSVGPathSeg.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSeg.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSeg.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsISOAPMessage.prototype= new Array();
-function nsISOAPMessage(){};
-nsISOAPMessage.prototype.VERSION_1_1="";
-nsISOAPMessage.prototype.VERSION_1_2=0;
-nsISOAPMessage.prototype.VERSION_UNKNOWN=0;
-nsIContextMenuInfo.prototype= new Array();
-function nsIContextMenuInfo(){};
-nsIHttpProtocolHandler.prototype= new Array();
-function nsIHttpProtocolHandler(){};
-nsIHttpProtocolHandler.prototype.URI_STD="";
-nsIHttpProtocolHandler.prototype.URI_NORELATIVE=0;
-nsIHttpProtocolHandler.prototype.URI_NOAUTH=0;
-nsIHttpProtocolHandler.prototype.ALLOWS_PROXY=0;
-nsIHttpProtocolHandler.prototype.ALLOWS_PROXY_HTTP=0;
-nsILocaleService.prototype= new Array();
-function nsILocaleService(){};
-nsIDOMBarProp.prototype= new Array();
-function nsIDOMBarProp(){};
-nsIProfileStartup.prototype= new Array();
-function nsIProfileStartup(){};
-nsICookiePromptService.prototype= new Array();
-function nsICookiePromptService(){};
-nsICookiePromptService.prototype.DENY_COOKIE="";
-nsICookiePromptService.prototype.ACCEPT_COOKIE=0;
-nsICookiePromptService.prototype.ACCEPT_SESSION_COOKIE=0;
-imgILoad.prototype= new Array();
-function imgILoad(){};
-nsIPrintSettingsService.prototype= new Array();
-function nsIPrintSettingsService(){};
-nsIDOMSVGPathElement.prototype= new Array();
-function nsIDOMSVGPathElement(){};
-nsIDOMSVGPathElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGPathElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGPathElement.prototype.TEXT_NODE=0;
-nsIDOMSVGPathElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGPathElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGPathElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGPathElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGPathElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGPathElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGPathElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGPathElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGPathElement.prototype.NOTATION_NODE=0;
-nsIObjectInputStream.prototype= new Array();
-function nsIObjectInputStream(){};
-nsISchemaAnyParticle.prototype= new Array();
-function nsISchemaAnyParticle(){};
-nsISchemaAnyParticle.prototype.PARTICLE_TYPE_ELEMENT=0;
-nsISchemaAnyParticle.prototype.PARTICLE_TYPE_MODEL_GROUP=0;
-nsISchemaAnyParticle.prototype.PARTICLE_TYPE_ANY=0;
-nsISchemaAnyParticle.prototype.OCCURRENCE_UNBOUNDED=0;
-nsISchemaAnyParticle.prototype.PROCESS_STRICT=0;
-nsISchemaAnyParticle.prototype.PROCESS_SKIP=0;
-nsISchemaAnyParticle.prototype.PROCESS_LAX=0;
-nsIDirIndex.prototype= new Array();
-function nsIDirIndex(){};
-nsIDirIndex.prototype.TYPE_UNKNOWN="";
-nsIDirIndex.prototype.TYPE_DIRECTORY=0;
-nsIDirIndex.prototype.TYPE_FILE=0;
-nsIDirIndex.prototype.TYPE_SYMLINK=0;
-nsPIExternalAppLauncher.prototype= new Array();
-function nsPIExternalAppLauncher(){};
-nsIDOMNSHTMLHRElement.prototype= new Array();
-function nsIDOMNSHTMLHRElement(){};
-nsIXTFSVGVisual.prototype= new Array();
-function nsIXTFSVGVisual(){};
-nsIXTFSVGVisual.prototype.ELEMENT_TYPE_GENERIC_ELEMENT="";
-nsIXTFSVGVisual.prototype.ELEMENT_TYPE_SVG_VISUAL=0;
-nsIXTFSVGVisual.prototype.ELEMENT_TYPE_XML_VISUAL=0;
-nsIXTFSVGVisual.prototype.ELEMENT_TYPE_XUL_VISUAL=0;
-nsIXTFSVGVisual.prototype.ELEMENT_TYPE_BINDABLE=0;
-nsIXTFSVGVisual.prototype.NOTIFY_WILL_CHANGE_DOCUMENT=0;
-nsIXTFSVGVisual.prototype.NOTIFY_DOCUMENT_CHANGED=0;
-nsIXTFSVGVisual.prototype.NOTIFY_WILL_CHANGE_PARENT=0;
-nsIXTFSVGVisual.prototype.NOTIFY_PARENT_CHANGED=0;
-nsIXTFSVGVisual.prototype.NOTIFY_WILL_INSERT_CHILD=0;
-nsIXTFSVGVisual.prototype.NOTIFY_CHILD_INSERTED=0;
-nsIXTFSVGVisual.prototype.NOTIFY_WILL_APPEND_CHILD=0;
-nsIXTFSVGVisual.prototype.NOTIFY_CHILD_APPENDED=0;
-nsIXTFSVGVisual.prototype.NOTIFY_WILL_REMOVE_CHILD=0;
-nsIXTFSVGVisual.prototype.NOTIFY_CHILD_REMOVED=0;
-nsIXTFSVGVisual.prototype.NOTIFY_WILL_SET_ATTRIBUTE=0;
-nsIXTFSVGVisual.prototype.NOTIFY_ATTRIBUTE_SET=0;
-nsIXTFSVGVisual.prototype.NOTIFY_WILL_REMOVE_ATTRIBUTE=0;
-nsIXTFSVGVisual.prototype.NOTIFY_ATTRIBUTE_REMOVED=0;
-nsIXTFSVGVisual.prototype.NOTIFY_BEGIN_ADDING_CHILDREN=0;
-nsIXTFSVGVisual.prototype.NOTIFY_DONE_ADDING_CHILDREN=0;
-nsIXTFSVGVisual.prototype.NOTIFY_HANDLE_DEFAULT=0;
-nsIXTFSVGVisual.prototype.NOTIFY_DID_LAYOUT=0;
-nsIFormFillController.prototype= new Array();
-function nsIFormFillController(){};
-nsIDOMSVGSVGElement.prototype= new Array();
-function nsIDOMSVGSVGElement(){};
-nsIDOMSVGSVGElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGSVGElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGSVGElement.prototype.TEXT_NODE=0;
-nsIDOMSVGSVGElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGSVGElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGSVGElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGSVGElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGSVGElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGSVGElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGSVGElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGSVGElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGSVGElement.prototype.NOTATION_NODE=0;
-nsIDOMXULMenuListElement.prototype= new Array();
-function nsIDOMXULMenuListElement(){};
-nsIDOMXULMenuListElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULMenuListElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULMenuListElement.prototype.TEXT_NODE=0;
-nsIDOMXULMenuListElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULMenuListElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULMenuListElement.prototype.ENTITY_NODE=0;
-nsIDOMXULMenuListElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULMenuListElement.prototype.COMMENT_NODE=0;
-nsIDOMXULMenuListElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULMenuListElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULMenuListElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULMenuListElement.prototype.NOTATION_NODE=0;
-nsISOAPTransportListener.prototype= new Array();
-function nsISOAPTransportListener(){};
-nsIDictionary.prototype= new Array();
-function nsIDictionary(){};
-nsIDOMNSHTMLElement_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIDOMNSHTMLElement_MOZILLA_1_8_BRANCH(){};
-nsISyncLoadDOMService.prototype= new Array();
-function nsISyncLoadDOMService(){};
-nsIDOMJSPluginArray.prototype= new Array();
-function nsIDOMJSPluginArray(){};
-nsIURL.prototype= new Array();
-function nsIURL(){};
-nsIDOMConstructor.prototype= new Array();
-function nsIDOMConstructor(){};
-nsIMultiplexInputStream.prototype= new Array();
-function nsIMultiplexInputStream(){};
-nsIClipboardCommands.prototype= new Array();
-function nsIClipboardCommands(){};
-nsIWebServiceProxyCreationListener.prototype= new Array();
-function nsIWebServiceProxyCreationListener(){};
-nsIDOMKeyEvent.prototype= new Array();
-function nsIDOMKeyEvent(){};
-nsIDOMKeyEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMKeyEvent.prototype.AT_TARGET=0;
-nsIDOMKeyEvent.prototype.BUBBLING_PHASE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_CANCEL=0;
-nsIDOMKeyEvent.prototype.DOM_VK_HELP=0;
-nsIDOMKeyEvent.prototype.DOM_VK_BACK_SPACE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_TAB=0;
-nsIDOMKeyEvent.prototype.DOM_VK_CLEAR=0;
-nsIDOMKeyEvent.prototype.DOM_VK_RETURN=0;
-nsIDOMKeyEvent.prototype.DOM_VK_ENTER=0;
-nsIDOMKeyEvent.prototype.DOM_VK_SHIFT=0;
-nsIDOMKeyEvent.prototype.DOM_VK_CONTROL=0;
-nsIDOMKeyEvent.prototype.DOM_VK_ALT=0;
-nsIDOMKeyEvent.prototype.DOM_VK_PAUSE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_CAPS_LOCK=0;
-nsIDOMKeyEvent.prototype.DOM_VK_ESCAPE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_SPACE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_PAGE_UP=0;
-nsIDOMKeyEvent.prototype.DOM_VK_PAGE_DOWN=0;
-nsIDOMKeyEvent.prototype.DOM_VK_END=0;
-nsIDOMKeyEvent.prototype.DOM_VK_HOME=0;
-nsIDOMKeyEvent.prototype.DOM_VK_LEFT=0;
-nsIDOMKeyEvent.prototype.DOM_VK_UP=0;
-nsIDOMKeyEvent.prototype.DOM_VK_RIGHT=0;
-nsIDOMKeyEvent.prototype.DOM_VK_DOWN=0;
-nsIDOMKeyEvent.prototype.DOM_VK_PRINTSCREEN=0;
-nsIDOMKeyEvent.prototype.DOM_VK_INSERT=0;
-nsIDOMKeyEvent.prototype.DOM_VK_DELETE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_0=0;
-nsIDOMKeyEvent.prototype.DOM_VK_1=0;
-nsIDOMKeyEvent.prototype.DOM_VK_2=0;
-nsIDOMKeyEvent.prototype.DOM_VK_3=0;
-nsIDOMKeyEvent.prototype.DOM_VK_4=0;
-nsIDOMKeyEvent.prototype.DOM_VK_5=0;
-nsIDOMKeyEvent.prototype.DOM_VK_6=0;
-nsIDOMKeyEvent.prototype.DOM_VK_7=0;
-nsIDOMKeyEvent.prototype.DOM_VK_8=0;
-nsIDOMKeyEvent.prototype.DOM_VK_9=0;
-nsIDOMKeyEvent.prototype.DOM_VK_SEMICOLON=0;
-nsIDOMKeyEvent.prototype.DOM_VK_EQUALS=0;
-nsIDOMKeyEvent.prototype.DOM_VK_A=0;
-nsIDOMKeyEvent.prototype.DOM_VK_B=0;
-nsIDOMKeyEvent.prototype.DOM_VK_C=0;
-nsIDOMKeyEvent.prototype.DOM_VK_D=0;
-nsIDOMKeyEvent.prototype.DOM_VK_E=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F=0;
-nsIDOMKeyEvent.prototype.DOM_VK_G=0;
-nsIDOMKeyEvent.prototype.DOM_VK_H=0;
-nsIDOMKeyEvent.prototype.DOM_VK_I=0;
-nsIDOMKeyEvent.prototype.DOM_VK_J=0;
-nsIDOMKeyEvent.prototype.DOM_VK_K=0;
-nsIDOMKeyEvent.prototype.DOM_VK_L=0;
-nsIDOMKeyEvent.prototype.DOM_VK_M=0;
-nsIDOMKeyEvent.prototype.DOM_VK_N=0;
-nsIDOMKeyEvent.prototype.DOM_VK_O=0;
-nsIDOMKeyEvent.prototype.DOM_VK_P=0;
-nsIDOMKeyEvent.prototype.DOM_VK_Q=0;
-nsIDOMKeyEvent.prototype.DOM_VK_R=0;
-nsIDOMKeyEvent.prototype.DOM_VK_S=0;
-nsIDOMKeyEvent.prototype.DOM_VK_T=0;
-nsIDOMKeyEvent.prototype.DOM_VK_U=0;
-nsIDOMKeyEvent.prototype.DOM_VK_V=0;
-nsIDOMKeyEvent.prototype.DOM_VK_W=0;
-nsIDOMKeyEvent.prototype.DOM_VK_X=0;
-nsIDOMKeyEvent.prototype.DOM_VK_Y=0;
-nsIDOMKeyEvent.prototype.DOM_VK_Z=0;
-nsIDOMKeyEvent.prototype.DOM_VK_CONTEXT_MENU=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD0=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD1=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD2=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD3=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD4=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD5=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD6=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD7=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD8=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUMPAD9=0;
-nsIDOMKeyEvent.prototype.DOM_VK_MULTIPLY=0;
-nsIDOMKeyEvent.prototype.DOM_VK_ADD=0;
-nsIDOMKeyEvent.prototype.DOM_VK_SEPARATOR=0;
-nsIDOMKeyEvent.prototype.DOM_VK_SUBTRACT=0;
-nsIDOMKeyEvent.prototype.DOM_VK_DECIMAL=0;
-nsIDOMKeyEvent.prototype.DOM_VK_DIVIDE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F1=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F2=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F3=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F4=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F5=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F6=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F7=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F8=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F9=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F10=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F11=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F12=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F13=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F14=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F15=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F16=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F17=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F18=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F19=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F20=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F21=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F22=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F23=0;
-nsIDOMKeyEvent.prototype.DOM_VK_F24=0;
-nsIDOMKeyEvent.prototype.DOM_VK_NUM_LOCK=0;
-nsIDOMKeyEvent.prototype.DOM_VK_SCROLL_LOCK=0;
-nsIDOMKeyEvent.prototype.DOM_VK_COMMA=0;
-nsIDOMKeyEvent.prototype.DOM_VK_PERIOD=0;
-nsIDOMKeyEvent.prototype.DOM_VK_SLASH=0;
-nsIDOMKeyEvent.prototype.DOM_VK_BACK_QUOTE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_OPEN_BRACKET=0;
-nsIDOMKeyEvent.prototype.DOM_VK_BACK_SLASH=0;
-nsIDOMKeyEvent.prototype.DOM_VK_CLOSE_BRACKET=0;
-nsIDOMKeyEvent.prototype.DOM_VK_QUOTE=0;
-nsIDOMKeyEvent.prototype.DOM_VK_META=0;
-nsIKeygenThread.prototype= new Array();
-function nsIKeygenThread(){};
-jsdIDebuggerService.prototype= new Array();
-function jsdIDebuggerService(){};
-jsdIDebuggerService.prototype.VERSION_1_0=0;
-jsdIDebuggerService.prototype.VERSION_1_1=0;
-jsdIDebuggerService.prototype.VERSION_1_2=0;
-jsdIDebuggerService.prototype.VERSION_1_3=0;
-jsdIDebuggerService.prototype.VERSION_1_4=0;
-jsdIDebuggerService.prototype.VERSION_1_5=0;
-jsdIDebuggerService.prototype.VERSION_DEFAULT="";
-jsdIDebuggerService.prototype.VERSION_UNKNOWN=0;
-jsdIDebuggerService.prototype.ENABLE_NATIVE_FRAMES=0;
-jsdIDebuggerService.prototype.PROFILE_WHEN_SET=0;
-jsdIDebuggerService.prototype.DEBUG_WHEN_SET=0;
-jsdIDebuggerService.prototype.COLLECT_PROFILE_DATA=0;
-jsdIDebuggerService.prototype.HIDE_DISABLED_FRAMES=0;
-jsdIDebuggerService.prototype.MASK_TOP_FRAME_ONLY=0;
-jsdIDebuggerService.prototype.DISABLE_OBJECT_TRACE=0;
-nsIDOMHTMLDocument.prototype= new Array();
-function nsIDOMHTMLDocument(){};
-nsIDOMHTMLDocument.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLDocument.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLDocument.prototype.TEXT_NODE=0;
-nsIDOMHTMLDocument.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLDocument.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLDocument.prototype.ENTITY_NODE=0;
-nsIDOMHTMLDocument.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLDocument.prototype.COMMENT_NODE=0;
-nsIDOMHTMLDocument.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLDocument.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLDocument.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLDocument.prototype.NOTATION_NODE=0;
-nsISchemaListType.prototype= new Array();
-function nsISchemaListType(){};
-nsISchemaListType.prototype.SCHEMA_TYPE_SIMPLE=0;
-nsISchemaListType.prototype.SCHEMA_TYPE_COMPLEX=0;
-nsISchemaListType.prototype.SCHEMA_TYPE_PLACEHOLDER=0;
-nsISchemaListType.prototype.SIMPLE_TYPE_BUILTIN=0;
-nsISchemaListType.prototype.SIMPLE_TYPE_LIST=0;
-nsISchemaListType.prototype.SIMPLE_TYPE_UNION=0;
-nsISchemaListType.prototype.SIMPLE_TYPE_RESTRICTION=0;
-inICSSValueSearch.prototype= new Array();
-function inICSSValueSearch(){};
-nsIAccessibleDocument.prototype= new Array();
-function nsIAccessibleDocument(){};
-nsIDocNavStartProgressCallback.prototype= new Array();
-function nsIDocNavStartProgressCallback(){};
-nsIPrintStatusFeedback.prototype= new Array();
-function nsIPrintStatusFeedback(){};
-nsIProfileInternal.prototype= new Array();
-function nsIProfileInternal(){};
-nsIProfileInternal.prototype.SHUTDOWN_PERSIST=0;
-nsIProfileInternal.prototype.SHUTDOWN_CLEANSE=0;
-nsIProfileInternal.prototype.LIST_ONLY_NEW=0;
-nsIProfileInternal.prototype.LIST_ONLY_OLD=0;
-nsIProfileInternal.prototype.LIST_ALL=0;
-nsIProfileInternal.prototype.LIST_FOR_IMPORT=0;
-nsIExceptionProvider.prototype= new Array();
-function nsIExceptionProvider(){};
-nsIDOMJSNavigator.prototype= new Array();
-function nsIDOMJSNavigator(){};
-nsIXULRuntime.prototype= new Array();
-function nsIXULRuntime(){};
-nsIDOM3EventTarget.prototype= new Array();
-function nsIDOM3EventTarget(){};
-nsIJVMConfig.prototype= new Array();
-function nsIJVMConfig(){};
-nsIDOMXPathNSResolver.prototype= new Array();
-function nsIDOMXPathNSResolver(){};
-nsIDOMHTMLAnchorElement.prototype= new Array();
-function nsIDOMHTMLAnchorElement(){};
-nsIDOMHTMLAnchorElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLAnchorElement.prototype.NOTATION_NODE=0;
-nsIFTPChannel.prototype= new Array();
-function nsIFTPChannel(){};
-nsIFTPChannel.prototype.LOAD_NORMAL="";
-nsIFTPChannel.prototype.LOAD_BACKGROUND=0;
-nsIFTPChannel.prototype.INHIBIT_CACHING=0;
-nsIFTPChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIFTPChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIFTPChannel.prototype.LOAD_FROM_CACHE=0;
-nsIFTPChannel.prototype.VALIDATE_ALWAYS=0;
-nsIFTPChannel.prototype.VALIDATE_NEVER=0;
-nsIFTPChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIFTPChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIFTPChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIFTPChannel.prototype.LOAD_REPLACE=0;
-nsIFTPChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIFTPChannel.prototype.LOAD_TARGETED=0;
-nsIFTPChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-nsIDOMCSSValueList.prototype= new Array();
-function nsIDOMCSSValueList(){};
-nsIDOMCSSValueList.prototype.CSS_INHERIT="";
-nsIDOMCSSValueList.prototype.CSS_PRIMITIVE_VALUE=0;
-nsIDOMCSSValueList.prototype.CSS_VALUE_LIST=0;
-nsIDOMCSSValueList.prototype.CSS_CUSTOM=0;
-nsIShellService.prototype= new Array();
-function nsIShellService(){};
-nsIShellService.prototype.BACKGROUND_TILE=0;
-nsIShellService.prototype.BACKGROUND_STRETCH=0;
-nsIShellService.prototype.BACKGROUND_CENTER=0;
-nsIShellService.prototype.BACKGROUND_FILL=0;
-nsIShellService.prototype.APPLICATION_MAIL="";
-nsIShellService.prototype.APPLICATION_NEWS=0;
-nsISchemaAttributeComponent.prototype= new Array();
-function nsISchemaAttributeComponent(){};
-nsISchemaAttributeComponent.prototype.COMPONENT_TYPE_ATTRIBUTE=0;
-nsISchemaAttributeComponent.prototype.COMPONENT_TYPE_GROUP=0;
-nsISchemaAttributeComponent.prototype.COMPONENT_TYPE_ANY=0;
-nsIJSConsoleService.prototype= new Array();
-function nsIJSConsoleService(){};
-nsIToolkitChromeRegistry.prototype= new Array();
-function nsIToolkitChromeRegistry(){};
-nsIToolkitChromeRegistry.prototype.NONE="";
-nsIToolkitChromeRegistry.prototype.PARTIAL=0;
-nsIToolkitChromeRegistry.prototype.FULL=0;
-nsILocaleDefinition.prototype= new Array();
-function nsILocaleDefinition(){};
-nsIProtocolProxyFilter.prototype= new Array();
-function nsIProtocolProxyFilter(){};
-nsIFeedElementBase.prototype= new Array();
-function nsIFeedElementBase(){};
-nsISOAPResponse.prototype= new Array();
-function nsISOAPResponse(){};
-nsISOAPResponse.prototype.VERSION_1_1="";
-nsISOAPResponse.prototype.VERSION_1_2=0;
-nsISOAPResponse.prototype.VERSION_UNKNOWN=0;
-nsIFormSigningDialog.prototype= new Array();
-function nsIFormSigningDialog(){};
-jsdIStackFrame.prototype= new Array();
-function jsdIStackFrame(){};
-nsIXTFElementWrapper.prototype= new Array();
-function nsIXTFElementWrapper(){};
-nsITypeAheadFind.prototype= new Array();
-function nsITypeAheadFind(){};
-nsITypeAheadFind.prototype.FIND_FOUND="";
-nsITypeAheadFind.prototype.FIND_NOTFOUND=0;
-nsITypeAheadFind.prototype.FIND_WRAPPED=0;
-nsIInlineSpellChecker.prototype= new Array();
-function nsIInlineSpellChecker(){};
-nsIAptanaDebugService.prototype= new Array();
-function nsIAptanaDebugService(){};
-nsIAptanaDebugService.prototype.STEP=0;
-nsIDownloadManager.prototype= new Array();
-function nsIDownloadManager(){};
-nsIDownloadManager.prototype.DOWNLOAD_NOTSTARTED=0;
-nsIDownloadManager.prototype.DOWNLOAD_DOWNLOADING="";
-nsIDownloadManager.prototype.DOWNLOAD_FINISHED=0;
-nsIDownloadManager.prototype.DOWNLOAD_FAILED=0;
-nsIDownloadManager.prototype.DOWNLOAD_CANCELED=0;
-nsIDownloadManager.prototype.DOWNLOAD_PAUSED=0;
-nsIDownloadManager.prototype.DOWNLOAD_TYPE_DOWNLOAD="";
-nsIProxyAutoConfig.prototype= new Array();
-function nsIProxyAutoConfig(){};
-nsIAsyncInputStream.prototype= new Array();
-function nsIAsyncInputStream(){};
-nsIAsyncInputStream.prototype.WAIT_CLOSURE_ONLY=0;
-nsIProfileChangeStatus.prototype= new Array();
-function nsIProfileChangeStatus(){};
-nsISupportsArray.prototype= new Array();
-function nsISupportsArray(){};
-nsIToolkitProfile.prototype= new Array();
-function nsIToolkitProfile(){};
-nsIDOMMediaList.prototype= new Array();
-function nsIDOMMediaList(){};
-nsIUrlClassifierCallback.prototype= new Array();
-function nsIUrlClassifierCallback(){};
-nsIWebBrowserPersist.prototype= new Array();
-function nsIWebBrowserPersist(){};
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_NONE="";
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_FROM_CACHE=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_BYPASS_CACHE=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_IGNORE_REDIRECTED_DATA=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_IGNORE_IFRAMES=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_NO_CONVERSION=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_REPLACE_EXISTING_FILES=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_NO_BASE_TAG_MODIFICATIONS=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_FIXUP_ORIGINAL_DOM=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_FIXUP_LINKS_TO_DESTINATION=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_DONT_FIXUP_LINKS=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_SERIALIZE_OUTPUT=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_DONT_CHANGE_FILENAMES=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_FAIL_ON_BROKEN_LINKS=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_CLEANUP_ON_FAILURE=0;
-nsIWebBrowserPersist.prototype.PERSIST_FLAGS_AUTODETECT_APPLY_CONVERSION=0;
-nsIWebBrowserPersist.prototype.PERSIST_STATE_READY=0;
-nsIWebBrowserPersist.prototype.PERSIST_STATE_SAVING=0;
-nsIWebBrowserPersist.prototype.PERSIST_STATE_FINISHED=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_SELECTION_ONLY=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_FORMATTED=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_RAW=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_BODY_ONLY=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_PREFORMATTED=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_WRAP=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_FORMAT_FLOWED=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_ABSOLUTE_LINKS=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_ENCODE_W3C_ENTITIES=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_CR_LINEBREAKS=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_LF_LINEBREAKS=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_NOSCRIPT_CONTENT=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_NOFRAMES_CONTENT=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_ENCODE_BASIC_ENTITIES=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_ENCODE_LATIN1_ENTITIES=0;
-nsIWebBrowserPersist.prototype.ENCODE_FLAGS_ENCODE_HTML_ENTITIES=0;
-nsIDirIndexParser.prototype= new Array();
-function nsIDirIndexParser(){};
-nsIProgrammingLanguage.prototype= new Array();
-function nsIProgrammingLanguage(){};
-nsIProgrammingLanguage.prototype.UNKNOWN="";
-nsIProgrammingLanguage.prototype.CPLUSPLUS=0;
-nsIProgrammingLanguage.prototype.JAVASCRIPT=0;
-nsIProgrammingLanguage.prototype.PYTHON=0;
-nsIProgrammingLanguage.prototype.PERL=0;
-nsIProgrammingLanguage.prototype.JAVA=0;
-nsIProgrammingLanguage.prototype.ZX81_BASIC=0;
-nsIProgrammingLanguage.prototype.JAVASCRIPT2=0;
-nsIXULTemplateBuilder.prototype= new Array();
-function nsIXULTemplateBuilder(){};
-nsISemanticUnitScanner.prototype= new Array();
-function nsISemanticUnitScanner(){};
-nsIStreamCipher.prototype= new Array();
-function nsIStreamCipher(){};
-nsIDOMSVGTextPathElement.prototype= new Array();
-function nsIDOMSVGTextPathElement(){};
-nsIDOMSVGTextPathElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGTextPathElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGTextPathElement.prototype.TEXT_NODE=0;
-nsIDOMSVGTextPathElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGTextPathElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGTextPathElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGTextPathElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGTextPathElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGTextPathElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGTextPathElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGTextPathElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGTextPathElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGTextPathElement.prototype.LENGTHADJUST_UNKNOWN="";
-nsIDOMSVGTextPathElement.prototype.LENGTHADJUST_SPACING=0;
-nsIDOMSVGTextPathElement.prototype.LENGTHADJUST_SPACINGANDGLYPHS=0;
-nsIDOMSVGTextPathElement.prototype.TEXTPATH_METHODTYPE_UNKNOWN="";
-nsIDOMSVGTextPathElement.prototype.TEXTPATH_METHODTYPE_ALIGN=0;
-nsIDOMSVGTextPathElement.prototype.TEXTPATH_METHODTYPE_STRETCH=0;
-nsIDOMSVGTextPathElement.prototype.TEXTPATH_SPACINGTYPE_UNKNOWN="";
-nsIDOMSVGTextPathElement.prototype.TEXTPATH_SPACINGTYPE_AUTO=0;
-nsIDOMSVGTextPathElement.prototype.TEXTPATH_SPACINGTYPE_EXACT=0;
-nsIDOMNSHTMLElement.prototype= new Array();
-function nsIDOMNSHTMLElement(){};
-nsIAtom.prototype= new Array();
-function nsIAtom(){};
-nsIDOMSVGTransformable.prototype= new Array();
-function nsIDOMSVGTransformable(){};
-nsIEnumerator.prototype= new Array();
-function nsIEnumerator(){};
-nsIFile.prototype= new Array();
-function nsIFile(){};
-nsIFile.prototype.NORMAL_FILE_TYPE="";
-nsIFile.prototype.DIRECTORY_TYPE=0;
-nsIDOMXULMultiSelectControlElement.prototype= new Array();
-function nsIDOMXULMultiSelectControlElement(){};
-nsIDOMXULMultiSelectControlElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.TEXT_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.ENTITY_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.COMMENT_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULMultiSelectControlElement.prototype.NOTATION_NODE=0;
-nsIDOMNSHTMLTextAreaElement.prototype= new Array();
-function nsIDOMNSHTMLTextAreaElement(){};
-nsIContextMenuListener2.prototype= new Array();
-function nsIContextMenuListener2(){};
-nsIContextMenuListener2.prototype.CONTEXT_NONE="";
-nsIContextMenuListener2.prototype.CONTEXT_LINK=0;
-nsIContextMenuListener2.prototype.CONTEXT_IMAGE=0;
-nsIContextMenuListener2.prototype.CONTEXT_DOCUMENT=0;
-nsIContextMenuListener2.prototype.CONTEXT_TEXT=0;
-nsIContextMenuListener2.prototype.CONTEXT_INPUT=0;
-nsIContextMenuListener2.prototype.CONTEXT_BACKGROUND_IMAGE=0;
-nsIDOMWindow2.prototype= new Array();
-function nsIDOMWindow2(){};
-nsIChromeRegistry.prototype= new Array();
-function nsIChromeRegistry(){};
-nsIChromeRegistry.prototype.NONE="";
-nsIChromeRegistry.prototype.PARTIAL=0;
-nsIChromeRegistry.prototype.FULL=0;
-nsIDOMNodeList.prototype= new Array();
-function nsIDOMNodeList(){};
-nsIInputStreamChannel.prototype= new Array();
-function nsIInputStreamChannel(){};
-nsIInputStreamChannel.prototype.LOAD_NORMAL="";
-nsIInputStreamChannel.prototype.LOAD_BACKGROUND=0;
-nsIInputStreamChannel.prototype.INHIBIT_CACHING=0;
-nsIInputStreamChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIInputStreamChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIInputStreamChannel.prototype.LOAD_FROM_CACHE=0;
-nsIInputStreamChannel.prototype.VALIDATE_ALWAYS=0;
-nsIInputStreamChannel.prototype.VALIDATE_NEVER=0;
-nsIInputStreamChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIInputStreamChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIInputStreamChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIInputStreamChannel.prototype.LOAD_REPLACE=0;
-nsIInputStreamChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIInputStreamChannel.prototype.LOAD_TARGETED=0;
-nsIInputStreamChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-nsISOAPEncoder.prototype= new Array();
-function nsISOAPEncoder(){};
-nsIDOMSVGForeignObjectElement.prototype= new Array();
-function nsIDOMSVGForeignObjectElement(){};
-nsIDOMSVGForeignObjectElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.TEXT_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGForeignObjectElement.prototype.NOTATION_NODE=0;
-nsIEventQueue.prototype= new Array();
-function nsIEventQueue(){};
-nsIThread.prototype= new Array();
-function nsIThread(){};
-nsIThread.prototype.PRIORITY_LOW="";
-nsIThread.prototype.PRIORITY_NORMAL=0;
-nsIThread.prototype.PRIORITY_HIGH=0;
-nsIThread.prototype.PRIORITY_URGENT=0;
-nsIThread.prototype.SCOPE_LOCAL="";
-nsIThread.prototype.SCOPE_GLOBAL=0;
-nsIThread.prototype.SCOPE_BOUND=0;
-nsIThread.prototype.STATE_JOINABLE="";
-nsIThread.prototype.STATE_UNJOINABLE=0;
-nsIIOService2.prototype= new Array();
-function nsIIOService2(){};
-nsIEditorBoxObject.prototype= new Array();
-function nsIEditorBoxObject(){};
-nsIUpdateChecker.prototype= new Array();
-function nsIUpdateChecker(){};
-nsIUpdateChecker.prototype.CURRENT_CHECK=0;
-nsIUpdateChecker.prototype.CURRENT_SESSION=0;
-nsIUpdateChecker.prototype.ANY_CHECKS=0;
-nsIStreamTransportService.prototype= new Array();
-function nsIStreamTransportService(){};
-nsIDOMHTMLTableRowElement.prototype= new Array();
-function nsIDOMHTMLTableRowElement(){};
-nsIDOMHTMLTableRowElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTableRowElement.prototype.NOTATION_NODE=0;
-nsIAccessibleProvider.prototype= new Array();
-function nsIAccessibleProvider(){};
-nsIDOMHTMLButtonElement.prototype= new Array();
-function nsIDOMHTMLButtonElement(){};
-nsIDOMHTMLButtonElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLButtonElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLButtonElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLButtonElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLButtonElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLButtonElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLButtonElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLButtonElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLButtonElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLButtonElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLButtonElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLButtonElement.prototype.NOTATION_NODE=0;
-nsIDOMNSHTMLInputElement.prototype= new Array();
-function nsIDOMNSHTMLInputElement(){};
-nsIDownload_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIDownload_MOZILLA_1_8_BRANCH(){};
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_START=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_REDIRECTING=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_TRANSFERRING=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_NEGOTIATING=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_STOP=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_IS_REQUEST=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_IS_DOCUMENT=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_IS_NETWORK=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_IS_WINDOW=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_RESTORING=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_IS_INSECURE=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_IS_BROKEN=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_IS_SECURE=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_SECURE_HIGH=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_SECURE_MED=0;
-nsIDownload_MOZILLA_1_8_BRANCH.prototype.STATE_SECURE_LOW=0;
-nsITransfer.prototype= new Array();
-function nsITransfer(){};
-nsITransfer.prototype.STATE_START=0;
-nsITransfer.prototype.STATE_REDIRECTING=0;
-nsITransfer.prototype.STATE_TRANSFERRING=0;
-nsITransfer.prototype.STATE_NEGOTIATING=0;
-nsITransfer.prototype.STATE_STOP=0;
-nsITransfer.prototype.STATE_IS_REQUEST=0;
-nsITransfer.prototype.STATE_IS_DOCUMENT=0;
-nsITransfer.prototype.STATE_IS_NETWORK=0;
-nsITransfer.prototype.STATE_IS_WINDOW=0;
-nsITransfer.prototype.STATE_RESTORING=0;
-nsITransfer.prototype.STATE_IS_INSECURE=0;
-nsITransfer.prototype.STATE_IS_BROKEN=0;
-nsITransfer.prototype.STATE_IS_SECURE=0;
-nsITransfer.prototype.STATE_SECURE_HIGH=0;
-nsITransfer.prototype.STATE_SECURE_MED=0;
-nsITransfer.prototype.STATE_SECURE_LOW=0;
-nsIWebBrowserStream.prototype= new Array();
-function nsIWebBrowserStream(){};
-nsIDOMHTMLTableColElement.prototype= new Array();
-function nsIDOMHTMLTableColElement(){};
-nsIDOMHTMLTableColElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTableColElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTableColElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTableColElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTableColElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTableColElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTableColElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTableColElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTableColElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTableColElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTableColElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTableColElement.prototype.NOTATION_NODE=0;
-nsIDOMCSSRuleList.prototype= new Array();
-function nsIDOMCSSRuleList(){};
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoQuadraticRel(){};
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-imgIEncoder_MOZILLA_1_8_BRANCH.prototype= new Array();
-function imgIEncoder_MOZILLA_1_8_BRANCH(){};
-imgIEncoder_MOZILLA_1_8_BRANCH.prototype.INPUT_FORMAT_RGB="";
-imgIEncoder_MOZILLA_1_8_BRANCH.prototype.INPUT_FORMAT_RGBA=0;
-imgIEncoder_MOZILLA_1_8_BRANCH.prototype.INPUT_FORMAT_HOSTARGB=0;
-nsIDOMSVGTSpanElement.prototype= new Array();
-function nsIDOMSVGTSpanElement(){};
-nsIDOMSVGTSpanElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGTSpanElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGTSpanElement.prototype.TEXT_NODE=0;
-nsIDOMSVGTSpanElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGTSpanElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGTSpanElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGTSpanElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGTSpanElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGTSpanElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGTSpanElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGTSpanElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGTSpanElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGTSpanElement.prototype.LENGTHADJUST_UNKNOWN="";
-nsIDOMSVGTSpanElement.prototype.LENGTHADJUST_SPACING=0;
-nsIDOMSVGTSpanElement.prototype.LENGTHADJUST_SPACINGANDGLYPHS=0;
-nsIControllerContext.prototype= new Array();
-function nsIControllerContext(){};
-nsIUrlClassifierStreamUpdater.prototype= new Array();
-function nsIUrlClassifierStreamUpdater(){};
-nsIDOMSVGClipPathElement.prototype= new Array();
-function nsIDOMSVGClipPathElement(){};
-nsIDOMSVGClipPathElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGClipPathElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGClipPathElement.prototype.TEXT_NODE=0;
-nsIDOMSVGClipPathElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGClipPathElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGClipPathElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGClipPathElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGClipPathElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGClipPathElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGClipPathElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGClipPathElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGClipPathElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGClipPathElement.prototype.SVG_CPUNITS_UNKNOWN="";
-nsIDOMSVGClipPathElement.prototype.SVG_CPUNITS_OBJECTBOUNDINGBOX=0;
-nsIDOMSVGClipPathElement.prototype.SVG_CPUNITS_USERSPACEONUSE=0;
-nsIDOMHTMLIsIndexElement.prototype= new Array();
-function nsIDOMHTMLIsIndexElement(){};
-nsIDOMHTMLIsIndexElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLIsIndexElement.prototype.NOTATION_NODE=0;
-nsIExpatSink.prototype= new Array();
-function nsIExpatSink(){};
-nsIWebBrowserSetup.prototype= new Array();
-function nsIWebBrowserSetup(){};
-nsIWebBrowserSetup.prototype.SETUP_ALLOW_PLUGINS=0;
-nsIWebBrowserSetup.prototype.SETUP_ALLOW_JAVASCRIPT=0;
-nsIWebBrowserSetup.prototype.SETUP_ALLOW_META_REDIRECTS=0;
-nsIWebBrowserSetup.prototype.SETUP_ALLOW_SUBFRAMES=0;
-nsIWebBrowserSetup.prototype.SETUP_ALLOW_IMAGES=0;
-nsIWebBrowserSetup.prototype.SETUP_FOCUS_DOC_BEFORE_CONTENT=0;
-nsIWebBrowserSetup.prototype.SETUP_USE_GLOBAL_HISTORY=0;
-nsIWebBrowserSetup.prototype.SETUP_IS_CHROME_WRAPPER=0;
-nsISOCKSSocketInfo.prototype= new Array();
-function nsISOCKSSocketInfo(){};
-nsIDOMEventListener.prototype= new Array();
-function nsIDOMEventListener(){};
-nsIPermission.prototype= new Array();
-function nsIPermission(){};
-nsIEditorObserver.prototype= new Array();
-function nsIEditorObserver(){};
-nsIScriptableMethodInfo.prototype= new Array();
-function nsIScriptableMethodInfo(){};
-nsIScriptSecurityManager.prototype= new Array();
-function nsIScriptSecurityManager(){};
-nsIScriptSecurityManager.prototype.HOOK_CREATE_WRAPPER=0;
-nsIScriptSecurityManager.prototype.HOOK_CREATE_INSTANCE=0;
-nsIScriptSecurityManager.prototype.HOOK_GET_SERVICE=0;
-nsIScriptSecurityManager.prototype.HOOK_CALL_METHOD=0;
-nsIScriptSecurityManager.prototype.HOOK_GET_PROPERTY=0;
-nsIScriptSecurityManager.prototype.HOOK_SET_PROPERTY=0;
-nsIScriptSecurityManager.prototype.HOOK_ALL=0;
-nsIScriptSecurityManager.prototype.ACCESS_CALL_METHOD="";
-nsIScriptSecurityManager.prototype.ACCESS_GET_PROPERTY=0;
-nsIScriptSecurityManager.prototype.ACCESS_SET_PROPERTY=0;
-nsIScriptSecurityManager.prototype.STANDARD="";
-nsIScriptSecurityManager.prototype.DISALLOW_FROM_MAIL=0;
-nsIScriptSecurityManager.prototype.ALLOW_CHROME=0;
-nsIScriptSecurityManager.prototype.DISALLOW_SCRIPT_OR_DATA=0;
-nsIScriptSecurityManager.prototype.DISALLOW_SCRIPT=0;
-nsIDOMEventGroup.prototype= new Array();
-function nsIDOMEventGroup(){};
-nsIURIFixup_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIURIFixup_MOZILLA_1_8_BRANCH(){};
-nsIURIFixup_MOZILLA_1_8_BRANCH.prototype.FIXUP_FLAG_NONE="";
-nsIURIFixup_MOZILLA_1_8_BRANCH.prototype.FIXUP_FLAG_ALLOW_KEYWORD_LOOKUP=0;
-nsIURIFixup_MOZILLA_1_8_BRANCH.prototype.FIXUP_FLAGS_MAKE_ALTERNATE_URI=0;
-nsITooltipListener.prototype= new Array();
-function nsITooltipListener(){};
-nsIDOMStyleSheetList.prototype= new Array();
-function nsIDOMStyleSheetList(){};
-nsIDOMSVGNumberList.prototype= new Array();
-function nsIDOMSVGNumberList(){};
-nsIPermissionManager.prototype= new Array();
-function nsIPermissionManager(){};
-nsIPermissionManager.prototype.UNKNOWN_ACTION="";
-nsIPermissionManager.prototype.ALLOW_ACTION=0;
-nsIPermissionManager.prototype.DENY_ACTION=0;
-nsIDOMNSFeatureFactory.prototype= new Array();
-function nsIDOMNSFeatureFactory(){};
-nsIUpdate_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIUpdate_MOZILLA_1_8_BRANCH(){};
-nsISAXLexicalHandler.prototype= new Array();
-function nsISAXLexicalHandler(){};
-nsISMimeCert.prototype= new Array();
-function nsISMimeCert(){};
-nsISidebarExternal.prototype= new Array();
-function nsISidebarExternal(){};
-nsIDOMSVGPathSegArcRel.prototype= new Array();
-function nsIDOMSVGPathSegArcRel(){};
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegArcRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIEventQueueService.prototype= new Array();
-function nsIEventQueueService(){};
-nsIEventQueueService.prototype.CURRENT_THREAD_EVENT_QUEUE="";
-nsIEventQueueService.prototype.UI_THREAD_EVENT_QUEUE=0;
-nsISaveAsCharset.prototype= new Array();
-function nsISaveAsCharset(){};
-nsISaveAsCharset.prototype.mask_Fallback=0;
-nsISaveAsCharset.prototype.mask_Entity=0;
-nsISaveAsCharset.prototype.mask_CharsetFallback=0;
-nsISaveAsCharset.prototype.mask_IgnorableFallback=0;
-nsISaveAsCharset.prototype.attr_FallbackNone="";
-nsISaveAsCharset.prototype.attr_FallbackQuestionMark=0;
-nsISaveAsCharset.prototype.attr_FallbackEscapeU=0;
-nsISaveAsCharset.prototype.attr_FallbackDecimalNCR=0;
-nsISaveAsCharset.prototype.attr_FallbackHexNCR=0;
-nsISaveAsCharset.prototype.attr_EntityNone="";
-nsISaveAsCharset.prototype.attr_EntityBeforeCharsetConv=0;
-nsISaveAsCharset.prototype.attr_EntityAfterCharsetConv=0;
-nsISaveAsCharset.prototype.attr_CharsetFallback=0;
-nsISaveAsCharset.prototype.attr_IgnoreIgnorables=0;
-nsISaveAsCharset.prototype.attr_plainTextDefault="";
-nsISaveAsCharset.prototype.attr_htmlTextDefault=0;
-nsICMSSecureMessage.prototype= new Array();
-function nsICMSSecureMessage(){};
-nsIStringBundleService.prototype= new Array();
-function nsIStringBundleService(){};
-nsIXULOverlayProvider.prototype= new Array();
-function nsIXULOverlayProvider(){};
-nsIDOMSVGTransformList.prototype= new Array();
-function nsIDOMSVGTransformList(){};
-nsIDOMDOMException.prototype= new Array();
-function nsIDOMDOMException(){};
-nsIDOMDOMException.prototype.INDEX_SIZE_ERR=0;
-nsIDOMDOMException.prototype.DOMSTRING_SIZE_ERR=0;
-nsIDOMDOMException.prototype.HIERARCHY_REQUEST_ERR=0;
-nsIDOMDOMException.prototype.WRONG_DOCUMENT_ERR=0;
-nsIDOMDOMException.prototype.INVALID_CHARACTER_ERR=0;
-nsIDOMDOMException.prototype.NO_DATA_ALLOWED_ERR=0;
-nsIDOMDOMException.prototype.NO_MODIFICATION_ALLOWED_ERR=0;
-nsIDOMDOMException.prototype.NOT_FOUND_ERR=0;
-nsIDOMDOMException.prototype.NOT_SUPPORTED_ERR=0;
-nsIDOMDOMException.prototype.INUSE_ATTRIBUTE_ERR=0;
-nsIDOMDOMException.prototype.INVALID_STATE_ERR=0;
-nsIDOMDOMException.prototype.SYNTAX_ERR=0;
-nsIDOMDOMException.prototype.INVALID_MODIFICATION_ERR=0;
-nsIDOMDOMException.prototype.NAMESPACE_ERR=0;
-nsIDOMDOMException.prototype.INVALID_ACCESS_ERR=0;
-nsIDOMDOMException.prototype.VALIDATION_ERR=0;
-nsIDOMDOMException.prototype.TYPE_MISMATCH_ERR=0;
-nsIScriptableUnicodeConverter.prototype= new Array();
-function nsIScriptableUnicodeConverter(){};
-nsIFastLoadFileIO.prototype= new Array();
-function nsIFastLoadFileIO(){};
-nsICollation.prototype= new Array();
-function nsICollation(){};
-nsICollation.prototype.kCollationStrengthDefault="";
-nsICollation.prototype.kCollationCaseInsensitiveAscii=0;
-nsICollation.prototype.kCollationAccentInsenstive=0;
-nsICollation.prototype.kCollationCaseSensitive="";
-nsICollation.prototype.kCollationCaseInSensitive=0;
-nsIComponentManager.prototype= new Array();
-function nsIComponentManager(){};
-nsIBrowserSearchService.prototype= new Array();
-function nsIBrowserSearchService(){};
-nsIXSLTProcessorObsolete.prototype= new Array();
-function nsIXSLTProcessorObsolete(){};
-nsIUUIDGenerator.prototype= new Array();
-function nsIUUIDGenerator(){};
-nsIControllerCommandGroup.prototype= new Array();
-function nsIControllerCommandGroup(){};
-nsIDOMLocation.prototype= new Array();
-function nsIDOMLocation(){};
-nsITXTToHTMLConv.prototype= new Array();
-function nsITXTToHTMLConv(){};
-nsISessionStore.prototype= new Array();
-function nsISessionStore(){};
-nsIRDFBlob.prototype= new Array();
-function nsIRDFBlob(){};
-nsIDOMHTMLHeadElement.prototype= new Array();
-function nsIDOMHTMLHeadElement(){};
-nsIDOMHTMLHeadElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLHeadElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLHeadElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLHeadElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLHeadElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLHeadElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLHeadElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLHeadElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLHeadElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLHeadElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLHeadElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLHeadElement.prototype.NOTATION_NODE=0;
-nsIXPCComponents_Exception.prototype= new Array();
-function nsIXPCComponents_Exception(){};
-nsIASN1PrintableItem.prototype= new Array();
-function nsIASN1PrintableItem(){};
-nsIASN1PrintableItem.prototype.ASN1_END_CONTENTS="";
-nsIASN1PrintableItem.prototype.ASN1_BOOLEAN=0;
-nsIASN1PrintableItem.prototype.ASN1_INTEGER=0;
-nsIASN1PrintableItem.prototype.ASN1_BIT_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_OCTET_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_NULL=0;
-nsIASN1PrintableItem.prototype.ASN1_OBJECT_ID=0;
-nsIASN1PrintableItem.prototype.ASN1_ENUMERATED=0;
-nsIASN1PrintableItem.prototype.ASN1_UTF8_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_SEQUENCE=0;
-nsIASN1PrintableItem.prototype.ASN1_SET=0;
-nsIASN1PrintableItem.prototype.ASN1_PRINTABLE_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_T61_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_IA5_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_UTC_TIME=0;
-nsIASN1PrintableItem.prototype.ASN1_GEN_TIME=0;
-nsIASN1PrintableItem.prototype.ASN1_VISIBLE_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_UNIVERSAL_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_BMP_STRING=0;
-nsIASN1PrintableItem.prototype.ASN1_HIGH_TAG_NUMBER=0;
-nsIASN1PrintableItem.prototype.ASN1_CONTEXT_SPECIFIC=0;
-nsIASN1PrintableItem.prototype.ASN1_APPLICATION=0;
-nsIASN1PrintableItem.prototype.ASN1_PRIVATE=0;
-nsIEditorStyleSheets.prototype= new Array();
-function nsIEditorStyleSheets(){};
-nsIDOMNSHTMLButtonElement.prototype= new Array();
-function nsIDOMNSHTMLButtonElement(){};
-nsIDOMHTMLMapElement.prototype= new Array();
-function nsIDOMHTMLMapElement(){};
-nsIDOMHTMLMapElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLMapElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLMapElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLMapElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLMapElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLMapElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLMapElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLMapElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLMapElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLMapElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLMapElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLMapElement.prototype.NOTATION_NODE=0;
-nsIDOMHTMLBRElement.prototype= new Array();
-function nsIDOMHTMLBRElement(){};
-nsIDOMHTMLBRElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLBRElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLBRElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLBRElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLBRElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLBRElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLBRElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLBRElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLBRElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLBRElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLBRElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLBRElement.prototype.NOTATION_NODE=0;
-nsISupportsDouble.prototype= new Array();
-function nsISupportsDouble(){};
-nsISupportsDouble.prototype.TYPE_ID=0;
-nsISupportsDouble.prototype.TYPE_CSTRING=0;
-nsISupportsDouble.prototype.TYPE_STRING=0;
-nsISupportsDouble.prototype.TYPE_PRBOOL=0;
-nsISupportsDouble.prototype.TYPE_PRUINT8=0;
-nsISupportsDouble.prototype.TYPE_PRUINT16=0;
-nsISupportsDouble.prototype.TYPE_PRUINT32=0;
-nsISupportsDouble.prototype.TYPE_PRUINT64=0;
-nsISupportsDouble.prototype.TYPE_PRTIME=0;
-nsISupportsDouble.prototype.TYPE_CHAR=0;
-nsISupportsDouble.prototype.TYPE_PRINT16=0;
-nsISupportsDouble.prototype.TYPE_PRINT32=0;
-nsISupportsDouble.prototype.TYPE_PRINT64=0;
-nsISupportsDouble.prototype.TYPE_FLOAT=0;
-nsISupportsDouble.prototype.TYPE_DOUBLE=0;
-nsISupportsDouble.prototype.TYPE_VOID=0;
-nsISupportsDouble.prototype.TYPE_INTERFACE_POINTER=0;
-nsIProtocolProxyCallback.prototype= new Array();
-function nsIProtocolProxyCallback(){};
-nsIDOMHTMLLinkElement.prototype= new Array();
-function nsIDOMHTMLLinkElement(){};
-nsIDOMHTMLLinkElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLLinkElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLLinkElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLLinkElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLLinkElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLLinkElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLLinkElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLLinkElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLLinkElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLLinkElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLLinkElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLLinkElement.prototype.NOTATION_NODE=0;
-nsIXULSortService.prototype= new Array();
-function nsIXULSortService(){};
-nsIDOMNSHTMLOptionCollection.prototype= new Array();
-function nsIDOMNSHTMLOptionCollection(){};
-nsIXULTreeBuilder.prototype= new Array();
-function nsIXULTreeBuilder(){};
-nsIDOMSVGNumber.prototype= new Array();
-function nsIDOMSVGNumber(){};
-nsIHistoryEntry.prototype= new Array();
-function nsIHistoryEntry(){};
-nsIDOMXULImageElement.prototype= new Array();
-function nsIDOMXULImageElement(){};
-nsIDOMXULImageElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULImageElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULImageElement.prototype.TEXT_NODE=0;
-nsIDOMXULImageElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULImageElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULImageElement.prototype.ENTITY_NODE=0;
-nsIDOMXULImageElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULImageElement.prototype.COMMENT_NODE=0;
-nsIDOMXULImageElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULImageElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULImageElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULImageElement.prototype.NOTATION_NODE=0;
-nsIFileURL.prototype= new Array();
-function nsIFileURL(){};
-nsIFindService.prototype= new Array();
-function nsIFindService(){};
-nsIDOMLSLoadEvent.prototype= new Array();
-function nsIDOMLSLoadEvent(){};
-nsIDOMLSLoadEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMLSLoadEvent.prototype.AT_TARGET=0;
-nsIDOMLSLoadEvent.prototype.BUBBLING_PHASE=0;
-nsINetworkLinkService.prototype= new Array();
-function nsINetworkLinkService(){};
-nsIClipboardHelper.prototype= new Array();
-function nsIClipboardHelper(){};
-nsIPref.prototype= new Array();
-function nsIPref(){};
-nsIPref.prototype.ePrefInvalid="";
-nsIPref.prototype.ePrefLocked=0;
-nsIPref.prototype.ePrefUserset=0;
-nsIPref.prototype.ePrefConfig=0;
-nsIPref.prototype.ePrefRemote=0;
-nsIPref.prototype.ePrefLilocal=0;
-nsIPref.prototype.ePrefString=0;
-nsIPref.prototype.ePrefInt=0;
-nsIPref.prototype.ePrefBool=0;
-nsIPref.prototype.ePrefValuetypeMask=0;
-nsIWebProgressListener.prototype= new Array();
-function nsIWebProgressListener(){};
-nsIWebProgressListener.prototype.STATE_START=0;
-nsIWebProgressListener.prototype.STATE_REDIRECTING=0;
-nsIWebProgressListener.prototype.STATE_TRANSFERRING=0;
-nsIWebProgressListener.prototype.STATE_NEGOTIATING=0;
-nsIWebProgressListener.prototype.STATE_STOP=0;
-nsIWebProgressListener.prototype.STATE_IS_REQUEST=0;
-nsIWebProgressListener.prototype.STATE_IS_DOCUMENT=0;
-nsIWebProgressListener.prototype.STATE_IS_NETWORK=0;
-nsIWebProgressListener.prototype.STATE_IS_WINDOW=0;
-nsIWebProgressListener.prototype.STATE_RESTORING=0;
-nsIWebProgressListener.prototype.STATE_IS_INSECURE=0;
-nsIWebProgressListener.prototype.STATE_IS_BROKEN=0;
-nsIWebProgressListener.prototype.STATE_IS_SECURE=0;
-nsIWebProgressListener.prototype.STATE_SECURE_HIGH=0;
-nsIWebProgressListener.prototype.STATE_SECURE_MED=0;
-nsIWebProgressListener.prototype.STATE_SECURE_LOW=0;
-nsIDragService.prototype= new Array();
-function nsIDragService(){};
-nsIDragService.prototype.DRAGDROP_ACTION_NONE="";
-nsIDragService.prototype.DRAGDROP_ACTION_COPY=0;
-nsIDragService.prototype.DRAGDROP_ACTION_MOVE=0;
-nsIDragService.prototype.DRAGDROP_ACTION_LINK=0;
-nsIDOMNSDocumentStyle.prototype= new Array();
-function nsIDOMNSDocumentStyle(){};
-nsIDOMHTMLStyleElement.prototype= new Array();
-function nsIDOMHTMLStyleElement(){};
-nsIDOMHTMLStyleElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLStyleElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLStyleElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLStyleElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLStyleElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLStyleElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLStyleElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLStyleElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLStyleElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLStyleElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLStyleElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLStyleElement.prototype.NOTATION_NODE=0;
-nsIOCSPResponder.prototype= new Array();
-function nsIOCSPResponder(){};
-nsILocale.prototype= new Array();
-function nsILocale(){};
-nsIUpdateItem.prototype= new Array();
-function nsIUpdateItem(){};
-nsIUpdateItem.prototype.TYPE_APP=0;
-nsIUpdateItem.prototype.TYPE_EXTENSION=0;
-nsIUpdateItem.prototype.TYPE_THEME=0;
-nsIUpdateItem.prototype.TYPE_LOCALE=0;
-nsIUpdateItem.prototype.TYPE_PLUGIN=0;
-nsIUpdateItem.prototype.TYPE_MULTI_XPI=0;
-nsIUpdateItem.prototype.TYPE_ADDON=0;
-nsIUpdateItem.prototype.TYPE_ANY=0;
-nsICiter.prototype= new Array();
-function nsICiter(){};
-nsISchemaRestrictionType.prototype= new Array();
-function nsISchemaRestrictionType(){};
-nsISchemaRestrictionType.prototype.SCHEMA_TYPE_SIMPLE=0;
-nsISchemaRestrictionType.prototype.SCHEMA_TYPE_COMPLEX=0;
-nsISchemaRestrictionType.prototype.SCHEMA_TYPE_PLACEHOLDER=0;
-nsISchemaRestrictionType.prototype.SIMPLE_TYPE_BUILTIN=0;
-nsISchemaRestrictionType.prototype.SIMPLE_TYPE_LIST=0;
-nsISchemaRestrictionType.prototype.SIMPLE_TYPE_UNION=0;
-nsISchemaRestrictionType.prototype.SIMPLE_TYPE_RESTRICTION=0;
-nsIXSLTException.prototype= new Array();
-function nsIXSLTException(){};
-nsIFormHistoryImporter.prototype= new Array();
-function nsIFormHistoryImporter(){};
-nsISAXDTDHandler.prototype= new Array();
-function nsISAXDTDHandler(){};
-nsIRequestObserverProxy.prototype= new Array();
-function nsIRequestObserverProxy(){};
-nsIDOMSVGDocument.prototype= new Array();
-function nsIDOMSVGDocument(){};
-nsIDOMSVGDocument.prototype.ELEMENT_NODE=0;
-nsIDOMSVGDocument.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGDocument.prototype.TEXT_NODE=0;
-nsIDOMSVGDocument.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGDocument.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGDocument.prototype.ENTITY_NODE=0;
-nsIDOMSVGDocument.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGDocument.prototype.COMMENT_NODE=0;
-nsIDOMSVGDocument.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGDocument.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGDocument.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGDocument.prototype.NOTATION_NODE=0;
-nsIDOM3Node.prototype= new Array();
-function nsIDOM3Node(){};
-nsIDOM3Node.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-nsIDOM3Node.prototype.DOCUMENT_POSITION_PRECEDING=0;
-nsIDOM3Node.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-nsIDOM3Node.prototype.DOCUMENT_POSITION_CONTAINS=0;
-nsIDOM3Node.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-nsIDOM3Node.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-nsIDOMHTMLUListElement.prototype= new Array();
-function nsIDOMHTMLUListElement(){};
-nsIDOMHTMLUListElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLUListElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLUListElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLUListElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLUListElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLUListElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLUListElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLUListElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLUListElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLUListElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLUListElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLUListElement.prototype.NOTATION_NODE=0;
-nsIActiveXSecurityPolicy.prototype= new Array();
-function nsIActiveXSecurityPolicy(){};
-nsIActiveXSecurityPolicy.prototype.HOSTING_FLAGS_HOST_NOTHING="";
-nsIActiveXSecurityPolicy.prototype.HOSTING_FLAGS_HOST_SAFE_OBJECTS=0;
-nsIActiveXSecurityPolicy.prototype.HOSTING_FLAGS_HOST_ALL_OBJECTS=0;
-nsIActiveXSecurityPolicy.prototype.HOSTING_FLAGS_DOWNLOAD_CONTROLS=0;
-nsIActiveXSecurityPolicy.prototype.HOSTING_FLAGS_SCRIPT_SAFE_OBJECTS=0;
-nsIActiveXSecurityPolicy.prototype.HOSTING_FLAGS_SCRIPT_ALL_OBJECTS=0;
-nsIUnicodeNormalizer.prototype= new Array();
-function nsIUnicodeNormalizer(){};
-nsIDOMHTMLObjectElement.prototype= new Array();
-function nsIDOMHTMLObjectElement(){};
-nsIDOMHTMLObjectElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLObjectElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLObjectElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLObjectElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLObjectElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLObjectElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLObjectElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLObjectElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLObjectElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLObjectElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLObjectElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLObjectElement.prototype.NOTATION_NODE=0;
-nsIXULChromeRegistry.prototype= new Array();
-function nsIXULChromeRegistry(){};
-nsIXULChromeRegistry.prototype.NONE="";
-nsIXULChromeRegistry.prototype.PARTIAL=0;
-nsIXULChromeRegistry.prototype.FULL=0;
-nsIXPointerResult.prototype= new Array();
-function nsIXPointerResult(){};
-nsIDOMCRMFObject.prototype= new Array();
-function nsIDOMCRMFObject(){};
-nsIURI.prototype= new Array();
-function nsIURI(){};
-nsIDOMSVGMatrix.prototype= new Array();
-function nsIDOMSVGMatrix(){};
-nsIDOMHTMLTableElement.prototype= new Array();
-function nsIDOMHTMLTableElement(){};
-nsIDOMHTMLTableElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTableElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTableElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTableElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTableElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTableElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTableElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTableElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTableElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTableElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTableElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTableElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGEvent.prototype= new Array();
-function nsIDOMSVGEvent(){};
-nsIDOMSVGEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMSVGEvent.prototype.AT_TARGET=0;
-nsIDOMSVGEvent.prototype.BUBBLING_PHASE=0;
-nsIDOMDocumentType.prototype= new Array();
-function nsIDOMDocumentType(){};
-nsIDOMDocumentType.prototype.ELEMENT_NODE=0;
-nsIDOMDocumentType.prototype.ATTRIBUTE_NODE=0;
-nsIDOMDocumentType.prototype.TEXT_NODE=0;
-nsIDOMDocumentType.prototype.CDATA_SECTION_NODE=0;
-nsIDOMDocumentType.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMDocumentType.prototype.ENTITY_NODE=0;
-nsIDOMDocumentType.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMDocumentType.prototype.COMMENT_NODE=0;
-nsIDOMDocumentType.prototype.DOCUMENT_NODE=0;
-nsIDOMDocumentType.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMDocumentType.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMDocumentType.prototype.NOTATION_NODE=0;
-nsIQTScriptablePlugin.prototype= new Array();
-function nsIQTScriptablePlugin(){};
-nsIDOMWindowUtils.prototype= new Array();
-function nsIDOMWindowUtils(){};
-nsIDOMXULPopupElement.prototype= new Array();
-function nsIDOMXULPopupElement(){};
-nsIDOMXULPopupElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULPopupElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULPopupElement.prototype.TEXT_NODE=0;
-nsIDOMXULPopupElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULPopupElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULPopupElement.prototype.ENTITY_NODE=0;
-nsIDOMXULPopupElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULPopupElement.prototype.COMMENT_NODE=0;
-nsIDOMXULPopupElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULPopupElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULPopupElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULPopupElement.prototype.NOTATION_NODE=0;
-nsIDOMXULPopupElement.prototype.BEFORE_START=0;
-nsIDOMXULPopupElement.prototype.BEFORE_END=0;
-nsIDOMXULPopupElement.prototype.AFTER_START=0;
-nsIDOMXULPopupElement.prototype.AFTER_END=0;
-nsIDOMXULPopupElement.prototype.START_BEFORE=0;
-nsIDOMXULPopupElement.prototype.START_AFTER=0;
-nsIDOMXULPopupElement.prototype.END_BEFORE=0;
-nsIDOMXULPopupElement.prototype.END_AFTER=0;
-nsIDOMXULPopupElement.prototype.OVERLAP=0;
-nsIDOMXULPopupElement.prototype.AT_POINTER=0;
-nsIDOMXULPopupElement.prototype.AFTER_POINTER=0;
-nsISchemaComplexType.prototype= new Array();
-function nsISchemaComplexType(){};
-nsISchemaComplexType.prototype.SCHEMA_TYPE_SIMPLE=0;
-nsISchemaComplexType.prototype.SCHEMA_TYPE_COMPLEX=0;
-nsISchemaComplexType.prototype.SCHEMA_TYPE_PLACEHOLDER=0;
-nsISchemaComplexType.prototype.CONTENT_MODEL_EMPTY=0;
-nsISchemaComplexType.prototype.CONTENT_MODEL_SIMPLE=0;
-nsISchemaComplexType.prototype.CONTENT_MODEL_ELEMENT_ONLY=0;
-nsISchemaComplexType.prototype.CONTENT_MODEL_MIXED=0;
-nsISchemaComplexType.prototype.DERIVATION_EXTENSION_SIMPLE=0;
-nsISchemaComplexType.prototype.DERIVATION_RESTRICTION_SIMPLE=0;
-nsISchemaComplexType.prototype.DERIVATION_EXTENSION_COMPLEX=0;
-nsISchemaComplexType.prototype.DERIVATION_RESTRICTION_COMPLEX=0;
-nsISchemaComplexType.prototype.DERIVATION_SELF_CONTAINED=0;
-nsIOSChromeItem.prototype= new Array();
-function nsIOSChromeItem(){};
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype= new Array();
-function nsIDOMSVGPathSegLinetoHorizontalAbs(){};
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoHorizontalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIDialogParamBlock.prototype= new Array();
-function nsIDialogParamBlock(){};
-nsIDOMHTMLInputElement.prototype= new Array();
-function nsIDOMHTMLInputElement(){};
-nsIDOMHTMLInputElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLInputElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLInputElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLInputElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLInputElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLInputElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLInputElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLInputElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLInputElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLInputElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLInputElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLInputElement.prototype.NOTATION_NODE=0;
-imgIRequest.prototype= new Array();
-function imgIRequest(){};
-imgIRequest.prototype.LOAD_NORMAL="";
-imgIRequest.prototype.LOAD_BACKGROUND=0;
-imgIRequest.prototype.INHIBIT_CACHING=0;
-imgIRequest.prototype.INHIBIT_PERSISTENT_CACHING=0;
-imgIRequest.prototype.LOAD_BYPASS_CACHE=0;
-imgIRequest.prototype.LOAD_FROM_CACHE=0;
-imgIRequest.prototype.VALIDATE_ALWAYS=0;
-imgIRequest.prototype.VALIDATE_NEVER=0;
-imgIRequest.prototype.VALIDATE_ONCE_PER_SESSION=0;
-imgIRequest.prototype.STATUS_NONE="";
-imgIRequest.prototype.STATUS_SIZE_AVAILABLE=0;
-imgIRequest.prototype.STATUS_LOAD_PARTIAL=0;
-imgIRequest.prototype.STATUS_LOAD_COMPLETE=0;
-imgIRequest.prototype.STATUS_ERROR=0;
-imgIRequest.prototype.STATUS_FRAME_COMPLETE=0;
-nsIContextMenuListener.prototype= new Array();
-function nsIContextMenuListener(){};
-nsIContextMenuListener.prototype.CONTEXT_NONE="";
-nsIContextMenuListener.prototype.CONTEXT_LINK=0;
-nsIContextMenuListener.prototype.CONTEXT_IMAGE=0;
-nsIContextMenuListener.prototype.CONTEXT_DOCUMENT=0;
-nsIContextMenuListener.prototype.CONTEXT_TEXT=0;
-nsIContextMenuListener.prototype.CONTEXT_INPUT=0;
-nsIExceptionManager.prototype= new Array();
-function nsIExceptionManager(){};
-nsITimerInternal.prototype= new Array();
-function nsITimerInternal(){};
-nsISOAPTransport.prototype= new Array();
-function nsISOAPTransport(){};
-nsIDOMComment.prototype= new Array();
-function nsIDOMComment(){};
-nsIDOMComment.prototype.ELEMENT_NODE=0;
-nsIDOMComment.prototype.ATTRIBUTE_NODE=0;
-nsIDOMComment.prototype.TEXT_NODE=0;
-nsIDOMComment.prototype.CDATA_SECTION_NODE=0;
-nsIDOMComment.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMComment.prototype.ENTITY_NODE=0;
-nsIDOMComment.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMComment.prototype.COMMENT_NODE=0;
-nsIDOMComment.prototype.DOCUMENT_NODE=0;
-nsIDOMComment.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMComment.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMComment.prototype.NOTATION_NODE=0;
-nsIRegistry.prototype= new Array();
-function nsIRegistry(){};
-nsIRegistry.prototype.None="";
-nsIRegistry.prototype.Users=0;
-nsIRegistry.prototype.Common=0;
-nsIRegistry.prototype.CurrentUser=0;
-nsIRegistry.prototype.ApplicationComponentRegistry=0;
-nsIRegistry.prototype.ApplicationRegistry=0;
-nsIRegistry.prototype.ApplicationCustomRegistry=0;
-nsIRegistry.prototype.String=0;
-nsIRegistry.prototype.Int32=0;
-nsIRegistry.prototype.Bytes=0;
-nsIRegistry.prototype.File=0;
-nsIHelperAppLauncherDialog.prototype= new Array();
-function nsIHelperAppLauncherDialog(){};
-nsIHelperAppLauncherDialog.prototype.REASON_CANTHANDLE="";
-nsIHelperAppLauncherDialog.prototype.REASON_SERVERREQUEST=0;
-nsIHelperAppLauncherDialog.prototype.REASON_TYPESNIFFED=0;
-jsdIProperty.prototype= new Array();
-function jsdIProperty(){};
-jsdIProperty.prototype.FLAG_ENUMERATE=0;
-jsdIProperty.prototype.FLAG_READONLY=0;
-jsdIProperty.prototype.FLAG_PERMANENT=0;
-jsdIProperty.prototype.FLAG_ALIAS=0;
-jsdIProperty.prototype.FLAG_ARGUMENT=0;
-jsdIProperty.prototype.FLAG_VARIABLE=0;
-jsdIProperty.prototype.FLAG_EXCEPTION=0;
-jsdIProperty.prototype.FLAG_ERROR=0;
-jsdIProperty.prototype.FLAG_HINTED=0;
-nsICookieService.prototype= new Array();
-function nsICookieService(){};
-nsIRDFInferDataSource.prototype= new Array();
-function nsIRDFInferDataSource(){};
-nsIDOMSVGCircleElement.prototype= new Array();
-function nsIDOMSVGCircleElement(){};
-nsIDOMSVGCircleElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGCircleElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGCircleElement.prototype.TEXT_NODE=0;
-nsIDOMSVGCircleElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGCircleElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGCircleElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGCircleElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGCircleElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGCircleElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGCircleElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGCircleElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGCircleElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype= new Array();
-function nsIDOMSVGPathSegLinetoVerticalAbs(){};
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIProperty.prototype= new Array();
-function nsIProperty(){};
-nsIDocShellTreeNode.prototype= new Array();
-function nsIDocShellTreeNode(){};
-nsIChromeEventHandler.prototype= new Array();
-function nsIChromeEventHandler(){};
-nsIConsoleService_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIConsoleService_MOZILLA_1_8_BRANCH(){};
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoCubicSmoothRel(){};
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicSmoothRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIDOMCSSCharsetRule.prototype= new Array();
-function nsIDOMCSSCharsetRule(){};
-nsIDOMCSSCharsetRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSCharsetRule.prototype.STYLE_RULE=0;
-nsIDOMCSSCharsetRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSCharsetRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSCharsetRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSCharsetRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSCharsetRule.prototype.PAGE_RULE=0;
-nsIPrefetchService.prototype= new Array();
-function nsIPrefetchService(){};
-nsIAccessibleWin32Object.prototype= new Array();
-function nsIAccessibleWin32Object(){};
-nsIObjectOutputStream.prototype= new Array();
-function nsIObjectOutputStream(){};
-nsIDOMSVGAnimatedRect.prototype= new Array();
-function nsIDOMSVGAnimatedRect(){};
-nsIDOMHTMLLabelElement.prototype= new Array();
-function nsIDOMHTMLLabelElement(){};
-nsIDOMHTMLLabelElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLLabelElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLLabelElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLLabelElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLLabelElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLLabelElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLLabelElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLLabelElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLLabelElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLLabelElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLLabelElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLLabelElement.prototype.NOTATION_NODE=0;
-nsIResumableChannel.prototype= new Array();
-function nsIResumableChannel(){};
-nsIScriptLoaderObserver.prototype= new Array();
-function nsIScriptLoaderObserver(){};
-nsIHttpChannelInternal.prototype= new Array();
-function nsIHttpChannelInternal(){};
-nsICollationFactory.prototype= new Array();
-function nsICollationFactory(){};
-nsIScriptableRegion.prototype= new Array();
-function nsIScriptableRegion(){};
-jsdINestCallback.prototype= new Array();
-function jsdINestCallback(){};
-nsPIAccessible.prototype= new Array();
-function nsPIAccessible(){};
-nsISchemaBuiltinType.prototype= new Array();
-function nsISchemaBuiltinType(){};
-nsISchemaBuiltinType.prototype.SCHEMA_TYPE_SIMPLE=0;
-nsISchemaBuiltinType.prototype.SCHEMA_TYPE_COMPLEX=0;
-nsISchemaBuiltinType.prototype.SCHEMA_TYPE_PLACEHOLDER=0;
-nsISchemaBuiltinType.prototype.SIMPLE_TYPE_BUILTIN=0;
-nsISchemaBuiltinType.prototype.SIMPLE_TYPE_LIST=0;
-nsISchemaBuiltinType.prototype.SIMPLE_TYPE_UNION=0;
-nsISchemaBuiltinType.prototype.SIMPLE_TYPE_RESTRICTION=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_ANYTYPE=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_STRING=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NORMALIZED_STRING=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_TOKEN=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_BYTE=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_UNSIGNEDBYTE=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_BASE64BINARY=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_HEXBINARY=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_INTEGER=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_POSITIVEINTEGER=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NEGATIVEINTEGER=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NONNEGATIVEINTEGER=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NONPOSITIVEINTEGER=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_INT=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_UNSIGNEDINT=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_LONG=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_UNSIGNEDLONG=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_SHORT=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_UNSIGNEDSHORT=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_DECIMAL=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_FLOAT=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_DOUBLE=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_BOOLEAN=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_TIME=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_DATETIME=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_DURATION=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_DATE=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_GMONTH=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_GYEAR=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_GYEARMONTH=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_GDAY=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_GMONTHDAY=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NAME=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_QNAME=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NCNAME=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_ANYURI=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_LANGUAGE=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_ID=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_IDREF=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_IDREFS=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_ENTITY=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_ENTITIES=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NOTATION=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NMTOKEN=0;
-nsISchemaBuiltinType.prototype.BUILTIN_TYPE_NMTOKENS=0;
-nsIAptanaBreakpointProperties.prototype= new Array();
-function nsIAptanaBreakpointProperties(){};
-nsIAptanaDebugger.prototype= new Array();
-function nsIAptanaDebugger(){};
-nsIDOMRange.prototype= new Array();
-function nsIDOMRange(){};
-nsIDOMRange.prototype.START_TO_START="";
-nsIDOMRange.prototype.START_TO_END=0;
-nsIDOMRange.prototype.END_TO_END=0;
-nsIDOMRange.prototype.END_TO_START=0;
-nsIEditor_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIEditor_MOZILLA_1_8_BRANCH(){};
-nsIEditor_MOZILLA_1_8_BRANCH.prototype.eNone="";
-nsIEditor_MOZILLA_1_8_BRANCH.prototype.eNext=0;
-nsIEditor_MOZILLA_1_8_BRANCH.prototype.ePrevious=0;
-nsIEditor_MOZILLA_1_8_BRANCH.prototype.eNextWord=0;
-nsIEditor_MOZILLA_1_8_BRANCH.prototype.ePreviousWord=0;
-nsIEditor_MOZILLA_1_8_BRANCH.prototype.eToBeginningOfLine=0;
-nsIEditor_MOZILLA_1_8_BRANCH.prototype.eToEndOfLine=0;
-nsIListBoxObject.prototype= new Array();
-function nsIListBoxObject(){};
-nsIDOMCharacterData.prototype= new Array();
-function nsIDOMCharacterData(){};
-nsIDOMCharacterData.prototype.ELEMENT_NODE=0;
-nsIDOMCharacterData.prototype.ATTRIBUTE_NODE=0;
-nsIDOMCharacterData.prototype.TEXT_NODE=0;
-nsIDOMCharacterData.prototype.CDATA_SECTION_NODE=0;
-nsIDOMCharacterData.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMCharacterData.prototype.ENTITY_NODE=0;
-nsIDOMCharacterData.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMCharacterData.prototype.COMMENT_NODE=0;
-nsIDOMCharacterData.prototype.DOCUMENT_NODE=0;
-nsIDOMCharacterData.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMCharacterData.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMCharacterData.prototype.NOTATION_NODE=0;
-nsIDOM3Document.prototype= new Array();
-function nsIDOM3Document(){};
-nsIDOM3Document.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-nsIDOM3Document.prototype.DOCUMENT_POSITION_PRECEDING=0;
-nsIDOM3Document.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-nsIDOM3Document.prototype.DOCUMENT_POSITION_CONTAINS=0;
-nsIDOM3Document.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-nsIDOM3Document.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-nsIByteRangeRequest.prototype= new Array();
-function nsIByteRangeRequest(){};
-nsIArray.prototype= new Array();
-function nsIArray(){};
-nsIDOMDocumentView.prototype= new Array();
-function nsIDOMDocumentView(){};
-rdfIDataSource.prototype= new Array();
-function rdfIDataSource(){};
-nsIXPCWrappedJSObjectGetter.prototype= new Array();
-function nsIXPCWrappedJSObjectGetter(){};
-mozIJSSubScriptLoader.prototype= new Array();
-function mozIJSSubScriptLoader(){};
-nsISOAPAttachments.prototype= new Array();
-function nsISOAPAttachments(){};
-nsIPKCS11Slot.prototype= new Array();
-function nsIPKCS11Slot(){};
-nsIPKCS11Slot.prototype.SLOT_DISABLED="";
-nsIPKCS11Slot.prototype.SLOT_NOT_PRESENT=0;
-nsIPKCS11Slot.prototype.SLOT_UNINITIALIZED=0;
-nsIPKCS11Slot.prototype.SLOT_NOT_LOGGED_IN=0;
-nsIPKCS11Slot.prototype.SLOT_LOGGED_IN=0;
-nsIPKCS11Slot.prototype.SLOT_READY=0;
-nsIDirectoryEnumerator.prototype= new Array();
-function nsIDirectoryEnumerator(){};
-nsIMutableArray.prototype= new Array();
-function nsIMutableArray(){};
-nsIWebServiceCallContext.prototype= new Array();
-function nsIWebServiceCallContext(){};
-nsIWebServiceCallContext.prototype.PENDING="";
-nsIWebServiceCallContext.prototype.SUCCEEDED=0;
-nsIWebServiceCallContext.prototype.FAILED=0;
-nsIWebServiceCallContext.prototype.ABORTED=0;
-nsIDOMNSUIEvent.prototype= new Array();
-function nsIDOMNSUIEvent(){};
-nsIDOMNSUIEvent.prototype.SCROLL_PAGE_UP=0;
-nsIDOMNSUIEvent.prototype.SCROLL_PAGE_DOWN=0;
-nsIDOMSVGMarkerElement.prototype= new Array();
-function nsIDOMSVGMarkerElement(){};
-nsIDOMSVGMarkerElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGMarkerElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGMarkerElement.prototype.TEXT_NODE=0;
-nsIDOMSVGMarkerElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGMarkerElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGMarkerElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGMarkerElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGMarkerElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGMarkerElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGMarkerElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGMarkerElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGMarkerElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGMarkerElement.prototype.SVG_MARKERUNITS_UNKNOWN="";
-nsIDOMSVGMarkerElement.prototype.SVG_MARKERUNITS_USERSPACEONUSE=0;
-nsIDOMSVGMarkerElement.prototype.SVG_MARKERUNITS_STROKEWIDTH=0;
-nsIDOMSVGMarkerElement.prototype.SVG_MARKER_ORIENT_UNKNOWN="";
-nsIDOMSVGMarkerElement.prototype.SVG_MARKER_ORIENT_AUTO=0;
-nsIDOMSVGMarkerElement.prototype.SVG_MARKER_ORIENT_ANGLE=0;
-nsIDOMXULLabelElement.prototype= new Array();
-function nsIDOMXULLabelElement(){};
-nsIDOMXULLabelElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULLabelElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULLabelElement.prototype.TEXT_NODE=0;
-nsIDOMXULLabelElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULLabelElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULLabelElement.prototype.ENTITY_NODE=0;
-nsIDOMXULLabelElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULLabelElement.prototype.COMMENT_NODE=0;
-nsIDOMXULLabelElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULLabelElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULLabelElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULLabelElement.prototype.NOTATION_NODE=0;
-nsIDOMUIEvent.prototype= new Array();
-function nsIDOMUIEvent(){};
-nsIDOMUIEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMUIEvent.prototype.AT_TARGET=0;
-nsIDOMUIEvent.prototype.BUBBLING_PHASE=0;
-nsIRDFResource.prototype= new Array();
-function nsIRDFResource(){};
-nsIDOMSVGLength.prototype= new Array();
-function nsIDOMSVGLength(){};
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_UNKNOWN="";
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_NUMBER=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_PERCENTAGE=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_EMS=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_EXS=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_PX=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_CM=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_MM=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_IN=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_PT=0;
-nsIDOMSVGLength.prototype.SVG_LENGTHTYPE_PC=0;
-nsISidebar.prototype= new Array();
-function nsISidebar(){};
-nsIDOMSVGPreserveAspectRatio.prototype= new Array();
-function nsIDOMSVGPreserveAspectRatio(){};
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_UNKNOWN="";
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_NONE=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMINYMIN=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMIDYMIN=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMAXYMIN=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMINYMID=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMIDYMID=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMAXYMID=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMINYMAX=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMIDYMAX=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_PRESERVEASPECTRATIO_XMAXYMAX=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_MEETORSLICE_UNKNOWN="";
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_MEETORSLICE_MEET=0;
-nsIDOMSVGPreserveAspectRatio.prototype.SVG_MEETORSLICE_SLICE=0;
-nsIEditorDocShell.prototype= new Array();
-function nsIEditorDocShell(){};
-nsIProgressDialog.prototype= new Array();
-function nsIProgressDialog(){};
-nsIProgressDialog.prototype.STATE_START=0;
-nsIProgressDialog.prototype.STATE_REDIRECTING=0;
-nsIProgressDialog.prototype.STATE_TRANSFERRING=0;
-nsIProgressDialog.prototype.STATE_NEGOTIATING=0;
-nsIProgressDialog.prototype.STATE_STOP=0;
-nsIProgressDialog.prototype.STATE_IS_REQUEST=0;
-nsIProgressDialog.prototype.STATE_IS_DOCUMENT=0;
-nsIProgressDialog.prototype.STATE_IS_NETWORK=0;
-nsIProgressDialog.prototype.STATE_IS_WINDOW=0;
-nsIProgressDialog.prototype.STATE_RESTORING=0;
-nsIProgressDialog.prototype.STATE_IS_INSECURE=0;
-nsIProgressDialog.prototype.STATE_IS_BROKEN=0;
-nsIProgressDialog.prototype.STATE_IS_SECURE=0;
-nsIProgressDialog.prototype.STATE_SECURE_HIGH=0;
-nsIProgressDialog.prototype.STATE_SECURE_MED=0;
-nsIProgressDialog.prototype.STATE_SECURE_LOW=0;
-nsIURIChecker.prototype= new Array();
-function nsIURIChecker(){};
-nsIURIChecker.prototype.LOAD_NORMAL="";
-nsIURIChecker.prototype.LOAD_BACKGROUND=0;
-nsIURIChecker.prototype.INHIBIT_CACHING=0;
-nsIURIChecker.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIURIChecker.prototype.LOAD_BYPASS_CACHE=0;
-nsIURIChecker.prototype.LOAD_FROM_CACHE=0;
-nsIURIChecker.prototype.VALIDATE_ALWAYS=0;
-nsIURIChecker.prototype.VALIDATE_NEVER=0;
-nsIURIChecker.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIAccessibleTreeCache.prototype= new Array();
-function nsIAccessibleTreeCache(){};
-nsIConsoleListener.prototype= new Array();
-function nsIConsoleListener(){};
-nsIDOMNSHTMLImageElement.prototype= new Array();
-function nsIDOMNSHTMLImageElement(){};
-nsIDOMDocumentStyle.prototype= new Array();
-function nsIDOMDocumentStyle(){};
-nsIFeedProgressListener.prototype= new Array();
-function nsIFeedProgressListener(){};
-nsIXPCException.prototype= new Array();
-function nsIXPCException(){};
-nsIWebPageDescriptor.prototype= new Array();
-function nsIWebPageDescriptor(){};
-nsIWebPageDescriptor.prototype.DISPLAY_AS_SOURCE=0;
-nsIWebPageDescriptor.prototype.DISPLAY_NORMAL=0;
-nsIKeyObject.prototype= new Array();
-function nsIKeyObject(){};
-nsIKeyObject.prototype.SYM_KEY=0;
-nsIKeyObject.prototype.PRIVATE_KEY=0;
-nsIKeyObject.prototype.PUBLIC_KEY=0;
-nsIKeyObject.prototype.RC4=0;
-nsIKeyObject.prototype.AES_CBC=0;
-nsIDOMHTMLQuoteElement.prototype= new Array();
-function nsIDOMHTMLQuoteElement(){};
-nsIDOMHTMLQuoteElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLQuoteElement.prototype.NOTATION_NODE=0;
-nsIBidiKeyboard.prototype= new Array();
-function nsIBidiKeyboard(){};
-nsIXPCComponents_Utils.prototype= new Array();
-function nsIXPCComponents_Utils(){};
-nsPISocketTransportService.prototype= new Array();
-function nsPISocketTransportService(){};
-nsIPipe.prototype= new Array();
-function nsIPipe(){};
-nsIURLFormatter.prototype= new Array();
-function nsIURLFormatter(){};
-nsISearchableInputStream.prototype= new Array();
-function nsISearchableInputStream(){};
-imgIContainer.prototype= new Array();
-function imgIContainer(){};
-imgIContainer.prototype.kNormalAnimMode="";
-imgIContainer.prototype.kDontAnimMode=0;
-imgIContainer.prototype.kLoopOnceAnimMode=0;
-nsIDOMSVGPolylineElement.prototype= new Array();
-function nsIDOMSVGPolylineElement(){};
-nsIDOMSVGPolylineElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGPolylineElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGPolylineElement.prototype.TEXT_NODE=0;
-nsIDOMSVGPolylineElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGPolylineElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGPolylineElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGPolylineElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGPolylineElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGPolylineElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGPolylineElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGPolylineElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGPolylineElement.prototype.NOTATION_NODE=0;
-nsIPluginElement.prototype= new Array();
-function nsIPluginElement(){};
-nsIStringBundleOverride.prototype= new Array();
-function nsIStringBundleOverride(){};
-mozIStorageStatementParams.prototype= new Array();
-function mozIStorageStatementParams(){};
-nsIJVMPluginInstance.prototype= new Array();
-function nsIJVMPluginInstance(){};
-nsICipherInfoService.prototype= new Array();
-function nsICipherInfoService(){};
-nsISocketTransport.prototype= new Array();
-function nsISocketTransport(){};
-nsISocketTransport.prototype.OPEN_BLOCKING=0;
-nsISocketTransport.prototype.OPEN_UNBUFFERED=0;
-nsISocketTransport.prototype.STATUS_READING=0;
-nsISocketTransport.prototype.STATUS_WRITING=0;
-nsISocketTransport.prototype.TIMEOUT_CONNECT="";
-nsISocketTransport.prototype.TIMEOUT_READ_WRITE=0;
-nsISocketTransport.prototype.STATUS_RESOLVING=0;
-nsISocketTransport.prototype.STATUS_CONNECTING_TO=0;
-nsISocketTransport.prototype.STATUS_CONNECTED_TO=0;
-nsISocketTransport.prototype.STATUS_SENDING_TO=0;
-nsISocketTransport.prototype.STATUS_WAITING_FOR=0;
-nsISocketTransport.prototype.STATUS_RECEIVING_FROM=0;
-nsIOutputIterator.prototype= new Array();
-function nsIOutputIterator(){};
-nsIDOMSVGTextContentElement.prototype= new Array();
-function nsIDOMSVGTextContentElement(){};
-nsIDOMSVGTextContentElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGTextContentElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGTextContentElement.prototype.TEXT_NODE=0;
-nsIDOMSVGTextContentElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGTextContentElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGTextContentElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGTextContentElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGTextContentElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGTextContentElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGTextContentElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGTextContentElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGTextContentElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGTextContentElement.prototype.LENGTHADJUST_UNKNOWN="";
-nsIDOMSVGTextContentElement.prototype.LENGTHADJUST_SPACING=0;
-nsIDOMSVGTextContentElement.prototype.LENGTHADJUST_SPACINGANDGLYPHS=0;
-nsIHttpHeaderVisitor.prototype= new Array();
-function nsIHttpHeaderVisitor(){};
-nsITimerManager.prototype= new Array();
-function nsITimerManager(){};
-nsIWSDLMessage.prototype= new Array();
-function nsIWSDLMessage(){};
-nsINetUtil.prototype= new Array();
-function nsINetUtil(){};
-nsIWebContentConverterService.prototype= new Array();
-function nsIWebContentConverterService(){};
-jsdIValue.prototype= new Array();
-function jsdIValue(){};
-jsdIValue.prototype.TYPE_BOOLEAN="";
-jsdIValue.prototype.TYPE_DOUBLE=0;
-jsdIValue.prototype.TYPE_INT=0;
-jsdIValue.prototype.TYPE_FUNCTION=0;
-jsdIValue.prototype.TYPE_NULL=0;
-jsdIValue.prototype.TYPE_OBJECT=0;
-jsdIValue.prototype.TYPE_STRING=0;
-jsdIValue.prototype.TYPE_VOID=0;
-jsdIScript.prototype= new Array();
-function jsdIScript(){};
-jsdIScript.prototype.FLAG_PROFILE=0;
-jsdIScript.prototype.FLAG_DEBUG=0;
-jsdIScript.prototype.PCMAP_SOURCETEXT=0;
-jsdIScript.prototype.PCMAP_PRETTYPRINT=0;
-nsIDOMNSEditableElement.prototype= new Array();
-function nsIDOMNSEditableElement(){};
-nsIClassInfo.prototype= new Array();
-function nsIClassInfo(){};
-nsIClassInfo.prototype.SINGLETON=0;
-nsIClassInfo.prototype.THREADSAFE=0;
-nsIClassInfo.prototype.MAIN_THREAD_ONLY=0;
-nsIClassInfo.prototype.DOM_OBJECT=0;
-nsIClassInfo.prototype.PLUGIN_OBJECT=0;
-nsIClassInfo.prototype.EAGER_CLASSINFO=0;
-nsIClassInfo.prototype.CONTENT_NODE=0;
-nsIClassInfo.prototype.RESERVED=0;
-nsIRDFService.prototype= new Array();
-function nsIRDFService(){};
-nsISupportsPriority.prototype= new Array();
-function nsISupportsPriority(){};
-nsISupportsPriority.prototype.PRIORITY_HIGHEST=0;
-nsISupportsPriority.prototype.PRIORITY_HIGH=0;
-nsISupportsPriority.prototype.PRIORITY_NORMAL="";
-nsISupportsPriority.prototype.PRIORITY_LOW=0;
-nsISupportsPriority.prototype.PRIORITY_LOWEST=0;
-nsIKeyObjectFactory.prototype= new Array();
-function nsIKeyObjectFactory(){};
-nsIDirectoryIterator.prototype= new Array();
-function nsIDirectoryIterator(){};
-nsIInputStream.prototype= new Array();
-function nsIInputStream(){};
-nsISecurityCheckedComponent.prototype= new Array();
-function nsISecurityCheckedComponent(){};
-nsIDOMHTMLFormElement.prototype= new Array();
-function nsIDOMHTMLFormElement(){};
-nsIDOMHTMLFormElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLFormElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLFormElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLFormElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLFormElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLFormElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLFormElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLFormElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLFormElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLFormElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLFormElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLFormElement.prototype.NOTATION_NODE=0;
-mozIPersonalDictionary.prototype= new Array();
-function mozIPersonalDictionary(){};
-nsIUnicharStreamLoader.prototype= new Array();
-function nsIUnicharStreamLoader(){};
-nsIUnicharStreamLoader.prototype.DEFAULT_SEGMENT_SIZE=0;
-nsIDocShell.prototype= new Array();
-function nsIDocShell(){};
-nsIDocShell.prototype.INTERNAL_LOAD_FLAGS_NONE="";
-nsIDocShell.prototype.INTERNAL_LOAD_FLAGS_INHERIT_OWNER=0;
-nsIDocShell.prototype.INTERNAL_LOAD_FLAGS_DONT_SEND_REFERRER=0;
-nsIDocShell.prototype.INTERNAL_LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP=0;
-nsIDocShell.prototype.INTERNAL_LOAD_FLAGS_FIRST_LOAD=0;
-nsIDocShell.prototype.ENUMERATE_FORWARDS="";
-nsIDocShell.prototype.ENUMERATE_BACKWARDS=0;
-nsIDocShell.prototype.APP_TYPE_UNKNOWN="";
-nsIDocShell.prototype.APP_TYPE_MAIL=0;
-nsIDocShell.prototype.APP_TYPE_EDITOR=0;
-nsIDocShell.prototype.BUSY_FLAGS_NONE="";
-nsIDocShell.prototype.BUSY_FLAGS_BUSY=0;
-nsIDocShell.prototype.BUSY_FLAGS_BEFORE_PAGE_LOAD=0;
-nsIDocShell.prototype.BUSY_FLAGS_PAGE_LOADING=0;
-nsIDocShell.prototype.LOAD_CMD_NORMAL=0;
-nsIDocShell.prototype.LOAD_CMD_RELOAD=0;
-nsIDocShell.prototype.LOAD_CMD_HISTORY=0;
-nsIDOMViewCSS.prototype= new Array();
-function nsIDOMViewCSS(){};
-nsISAXXMLFilter.prototype= new Array();
-function nsISAXXMLFilter(){};
-nsIJVMManager.prototype= new Array();
-function nsIJVMManager(){};
-nsITreeColumns.prototype= new Array();
-function nsITreeColumns(){};
-nsIDOMHTMLHtmlElement.prototype= new Array();
-function nsIDOMHTMLHtmlElement(){};
-nsIDOMHTMLHtmlElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLHtmlElement.prototype.NOTATION_NODE=0;
-nsIDOMCanvasGradient.prototype= new Array();
-function nsIDOMCanvasGradient(){};
-nsIDOMSVGAnimatedPoints.prototype= new Array();
-function nsIDOMSVGAnimatedPoints(){};
-nsIRDFXMLSerializer.prototype= new Array();
-function nsIRDFXMLSerializer(){};
-nsIDOMNSHTMLAnchorElement.prototype= new Array();
-function nsIDOMNSHTMLAnchorElement(){};
-nsIDOMCSS2Properties.prototype= new Array();
-function nsIDOMCSS2Properties(){};
-nsIProfileStartupListener.prototype= new Array();
-function nsIProfileStartupListener(){};
-nsIFontPackageHandler.prototype= new Array();
-function nsIFontPackageHandler(){};
-nsIWSDLBinding.prototype= new Array();
-function nsIWSDLBinding(){};
-nsIProxyCreateInstance.prototype= new Array();
-function nsIProxyCreateInstance(){};
-nsISecurityEventSink.prototype= new Array();
-function nsISecurityEventSink(){};
-nsICommandHandler.prototype= new Array();
-function nsICommandHandler(){};
-nsIDOMLinkStyle.prototype= new Array();
-function nsIDOMLinkStyle(){};
-nsIDOMSVGPoint.prototype= new Array();
-function nsIDOMSVGPoint(){};
-nsIAccessibleEvent.prototype= new Array();
-function nsIAccessibleEvent(){};
-nsIAccessibleEvent.prototype.EVENT_CREATE=0;
-nsIAccessibleEvent.prototype.EVENT_DESTROY=0;
-nsIAccessibleEvent.prototype.EVENT_SHOW=0;
-nsIAccessibleEvent.prototype.EVENT_HIDE=0;
-nsIAccessibleEvent.prototype.EVENT_REORDER=0;
-nsIAccessibleEvent.prototype.EVENT_FOCUS=0;
-nsIAccessibleEvent.prototype.EVENT_STATE_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_LOCATION_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_NAME_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_DESCRIPTIONCHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_VALUE_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_PARENTCHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_HELPCHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_DEFACTIONCHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_ACCELERATORCHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_SELECTION=0;
-nsIAccessibleEvent.prototype.EVENT_SELECTION_ADD=0;
-nsIAccessibleEvent.prototype.EVENT_SELECTION_REMOVE=0;
-nsIAccessibleEvent.prototype.EVENT_SELECTION_WITHIN=0;
-nsIAccessibleEvent.prototype.EVENT_ALERT=0;
-nsIAccessibleEvent.prototype.EVENT_FOREGROUND=0;
-nsIAccessibleEvent.prototype.EVENT_MENUSTART=0;
-nsIAccessibleEvent.prototype.EVENT_MENUEND=0;
-nsIAccessibleEvent.prototype.EVENT_MENUPOPUPSTART=0;
-nsIAccessibleEvent.prototype.EVENT_MENUPOPUPEND=0;
-nsIAccessibleEvent.prototype.EVENT_CAPTURESTART=0;
-nsIAccessibleEvent.prototype.EVENT_CAPTUREEND=0;
-nsIAccessibleEvent.prototype.EVENT_MOVESIZESTART=0;
-nsIAccessibleEvent.prototype.EVENT_MOVESIZEEND=0;
-nsIAccessibleEvent.prototype.EVENT_CONTEXTHELPSTART=0;
-nsIAccessibleEvent.prototype.EVENT_CONTEXTHELPEND=0;
-nsIAccessibleEvent.prototype.EVENT_DRAGDROPSTART=0;
-nsIAccessibleEvent.prototype.EVENT_DRAGDROPEND=0;
-nsIAccessibleEvent.prototype.EVENT_DIALOGSTART=0;
-nsIAccessibleEvent.prototype.EVENT_DIALOGEND=0;
-nsIAccessibleEvent.prototype.EVENT_SCROLLINGSTART=0;
-nsIAccessibleEvent.prototype.EVENT_SCROLLINGEND=0;
-nsIAccessibleEvent.prototype.EVENT_MINIMIZESTART=0;
-nsIAccessibleEvent.prototype.EVENT_MINIMIZEEND=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_PROPERTY_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_SELECTION_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TEXT_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TEXT_SELECTION_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TEXT_CARET_MOVE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_VISIBLE_DATA_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TABLE_MODEL_CHANGE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TABLE_ROW_INSERT=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TABLE_ROW_DELETE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TABLE_ROW_REORDER=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TABLE_COLUMN_INSERT=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TABLE_COLUMN_DELETE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_TABLE_COLUMN_REORDER=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_LINK_SELECTED=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_ACTIVATE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_CREATE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_DEACTIVATE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_DESTROY=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_MAXIMIZE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_MINIMIZE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_RESIZE=0;
-nsIAccessibleEvent.prototype.EVENT_ATK_WINDOW_RESTORE=0;
-nsISupportsCString.prototype= new Array();
-function nsISupportsCString(){};
-nsISupportsCString.prototype.TYPE_ID=0;
-nsISupportsCString.prototype.TYPE_CSTRING=0;
-nsISupportsCString.prototype.TYPE_STRING=0;
-nsISupportsCString.prototype.TYPE_PRBOOL=0;
-nsISupportsCString.prototype.TYPE_PRUINT8=0;
-nsISupportsCString.prototype.TYPE_PRUINT16=0;
-nsISupportsCString.prototype.TYPE_PRUINT32=0;
-nsISupportsCString.prototype.TYPE_PRUINT64=0;
-nsISupportsCString.prototype.TYPE_PRTIME=0;
-nsISupportsCString.prototype.TYPE_CHAR=0;
-nsISupportsCString.prototype.TYPE_PRINT16=0;
-nsISupportsCString.prototype.TYPE_PRINT32=0;
-nsISupportsCString.prototype.TYPE_PRINT64=0;
-nsISupportsCString.prototype.TYPE_FLOAT=0;
-nsISupportsCString.prototype.TYPE_DOUBLE=0;
-nsISupportsCString.prototype.TYPE_VOID=0;
-nsISupportsCString.prototype.TYPE_INTERFACE_POINTER=0;
-nsISupportsID.prototype= new Array();
-function nsISupportsID(){};
-nsISupportsID.prototype.TYPE_ID=0;
-nsISupportsID.prototype.TYPE_CSTRING=0;
-nsISupportsID.prototype.TYPE_STRING=0;
-nsISupportsID.prototype.TYPE_PRBOOL=0;
-nsISupportsID.prototype.TYPE_PRUINT8=0;
-nsISupportsID.prototype.TYPE_PRUINT16=0;
-nsISupportsID.prototype.TYPE_PRUINT32=0;
-nsISupportsID.prototype.TYPE_PRUINT64=0;
-nsISupportsID.prototype.TYPE_PRTIME=0;
-nsISupportsID.prototype.TYPE_CHAR=0;
-nsISupportsID.prototype.TYPE_PRINT16=0;
-nsISupportsID.prototype.TYPE_PRINT32=0;
-nsISupportsID.prototype.TYPE_PRINT64=0;
-nsISupportsID.prototype.TYPE_FLOAT=0;
-nsISupportsID.prototype.TYPE_DOUBLE=0;
-nsISupportsID.prototype.TYPE_VOID=0;
-nsISupportsID.prototype.TYPE_INTERFACE_POINTER=0;
-IDispatch.prototype= new Array();
-function IDispatch(){};
-nsIXPInstallManager.prototype= new Array();
-function nsIXPInstallManager(){};
-nsIXTFXMLVisualWrapper.prototype= new Array();
-function nsIXTFXMLVisualWrapper(){};
-nsIFeedResultListener.prototype= new Array();
-function nsIFeedResultListener(){};
-nsIDOMTreeWalker.prototype= new Array();
-function nsIDOMTreeWalker(){};
-nsIDOMUserDataHandler.prototype= new Array();
-function nsIDOMUserDataHandler(){};
-nsIDOMUserDataHandler.prototype.NODE_CLONED=0;
-nsIDOMUserDataHandler.prototype.NODE_IMPORTED=0;
-nsIDOMUserDataHandler.prototype.NODE_DELETED=0;
-nsIDOMUserDataHandler.prototype.NODE_RENAMED=0;
-nsIProcess.prototype= new Array();
-function nsIProcess(){};
-nsIWindowCreator.prototype= new Array();
-function nsIWindowCreator(){};
-nsITreeView.prototype= new Array();
-function nsITreeView(){};
-nsITreeView.prototype.DROP_BEFORE=0;
-nsITreeView.prototype.DROP_ON="";
-nsITreeView.prototype.DROP_AFTER=0;
-nsITreeView.prototype.PROGRESS_NORMAL=0;
-nsITreeView.prototype.PROGRESS_UNDETERMINED=0;
-nsITreeView.prototype.PROGRESS_NONE=0;
-nsIDOMDocumentXBL.prototype= new Array();
-function nsIDOMDocumentXBL(){};
-nsIXTFBindableElementWrapper.prototype= new Array();
-function nsIXTFBindableElementWrapper(){};
-nsIObserverService.prototype= new Array();
-function nsIObserverService(){};
-nsISAXContentHandler.prototype= new Array();
-function nsISAXContentHandler(){};
-nsIScriptableConstant.prototype= new Array();
-function nsIScriptableConstant(){};
-nsIDOMHTMLFrameSetElement.prototype= new Array();
-function nsIDOMHTMLFrameSetElement(){};
-nsIDOMHTMLFrameSetElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLFrameSetElement.prototype.NOTATION_NODE=0;
-nsISchemaSimpleType.prototype= new Array();
-function nsISchemaSimpleType(){};
-nsISchemaSimpleType.prototype.SCHEMA_TYPE_SIMPLE=0;
-nsISchemaSimpleType.prototype.SCHEMA_TYPE_COMPLEX=0;
-nsISchemaSimpleType.prototype.SCHEMA_TYPE_PLACEHOLDER=0;
-nsISchemaSimpleType.prototype.SIMPLE_TYPE_BUILTIN=0;
-nsISchemaSimpleType.prototype.SIMPLE_TYPE_LIST=0;
-nsISchemaSimpleType.prototype.SIMPLE_TYPE_UNION=0;
-nsISchemaSimpleType.prototype.SIMPLE_TYPE_RESTRICTION=0;
-nsIFactory.prototype= new Array();
-function nsIFactory(){};
-nsIDragDropHandler.prototype= new Array();
-function nsIDragDropHandler(){};
-nsIAptanaError.prototype= new Array();
-function nsIAptanaError(){};
-nsISOAPServiceRegistry.prototype= new Array();
-function nsISOAPServiceRegistry(){};
-nsIDOMSVGStopElement.prototype= new Array();
-function nsIDOMSVGStopElement(){};
-nsIDOMSVGStopElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGStopElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGStopElement.prototype.TEXT_NODE=0;
-nsIDOMSVGStopElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGStopElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGStopElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGStopElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGStopElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGStopElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGStopElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGStopElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGStopElement.prototype.NOTATION_NODE=0;
-nsIWebBrowserFindInFrames.prototype= new Array();
-function nsIWebBrowserFindInFrames(){};
-nsIConsoleService.prototype= new Array();
-function nsIConsoleService(){};
-inISearchProcess.prototype= new Array();
-function inISearchProcess(){};
-nsICacheService.prototype= new Array();
-function nsICacheService(){};
-nsIFeedTextConstruct.prototype= new Array();
-function nsIFeedTextConstruct(){};
-nsIIncrementalDownload.prototype= new Array();
-function nsIIncrementalDownload(){};
-nsIIncrementalDownload.prototype.LOAD_NORMAL="";
-nsIIncrementalDownload.prototype.LOAD_BACKGROUND=0;
-nsIIncrementalDownload.prototype.INHIBIT_CACHING=0;
-nsIIncrementalDownload.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIIncrementalDownload.prototype.LOAD_BYPASS_CACHE=0;
-nsIIncrementalDownload.prototype.LOAD_FROM_CACHE=0;
-nsIIncrementalDownload.prototype.VALIDATE_ALWAYS=0;
-nsIIncrementalDownload.prototype.VALIDATE_NEVER=0;
-nsIIncrementalDownload.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIDocShellHistory.prototype= new Array();
-function nsIDocShellHistory(){};
-nsICacheSession.prototype= new Array();
-function nsICacheSession(){};
-nsIDOMHTMLEmbedElement.prototype= new Array();
-function nsIDOMHTMLEmbedElement(){};
-nsIDOMHTMLEmbedElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLEmbedElement.prototype.NOTATION_NODE=0;
-nsIASN1Tree.prototype= new Array();
-function nsIASN1Tree(){};
-nsIASN1Tree.prototype.DROP_BEFORE=0;
-nsIASN1Tree.prototype.DROP_ON="";
-nsIASN1Tree.prototype.DROP_AFTER=0;
-nsIASN1Tree.prototype.PROGRESS_NORMAL=0;
-nsIASN1Tree.prototype.PROGRESS_UNDETERMINED=0;
-nsIASN1Tree.prototype.PROGRESS_NONE=0;
-nsIUserCertPicker.prototype= new Array();
-function nsIUserCertPicker(){};
-nsIProfileMigrator.prototype= new Array();
-function nsIProfileMigrator(){};
-nsIDocShellTreeOwner.prototype= new Array();
-function nsIDocShellTreeOwner(){};
-mozISpellI18NUtil.prototype= new Array();
-function mozISpellI18NUtil(){};
-mozISpellI18NUtil.prototype.kCheck="";
-mozISpellI18NUtil.prototype.kSuggest=0;
-nsIXTFGenericElement.prototype= new Array();
-function nsIXTFGenericElement(){};
-nsIXTFGenericElement.prototype.ELEMENT_TYPE_GENERIC_ELEMENT="";
-nsIXTFGenericElement.prototype.ELEMENT_TYPE_SVG_VISUAL=0;
-nsIXTFGenericElement.prototype.ELEMENT_TYPE_XML_VISUAL=0;
-nsIXTFGenericElement.prototype.ELEMENT_TYPE_XUL_VISUAL=0;
-nsIXTFGenericElement.prototype.ELEMENT_TYPE_BINDABLE=0;
-nsIXTFGenericElement.prototype.NOTIFY_WILL_CHANGE_DOCUMENT=0;
-nsIXTFGenericElement.prototype.NOTIFY_DOCUMENT_CHANGED=0;
-nsIXTFGenericElement.prototype.NOTIFY_WILL_CHANGE_PARENT=0;
-nsIXTFGenericElement.prototype.NOTIFY_PARENT_CHANGED=0;
-nsIXTFGenericElement.prototype.NOTIFY_WILL_INSERT_CHILD=0;
-nsIXTFGenericElement.prototype.NOTIFY_CHILD_INSERTED=0;
-nsIXTFGenericElement.prototype.NOTIFY_WILL_APPEND_CHILD=0;
-nsIXTFGenericElement.prototype.NOTIFY_CHILD_APPENDED=0;
-nsIXTFGenericElement.prototype.NOTIFY_WILL_REMOVE_CHILD=0;
-nsIXTFGenericElement.prototype.NOTIFY_CHILD_REMOVED=0;
-nsIXTFGenericElement.prototype.NOTIFY_WILL_SET_ATTRIBUTE=0;
-nsIXTFGenericElement.prototype.NOTIFY_ATTRIBUTE_SET=0;
-nsIXTFGenericElement.prototype.NOTIFY_WILL_REMOVE_ATTRIBUTE=0;
-nsIXTFGenericElement.prototype.NOTIFY_ATTRIBUTE_REMOVED=0;
-nsIXTFGenericElement.prototype.NOTIFY_BEGIN_ADDING_CHILDREN=0;
-nsIXTFGenericElement.prototype.NOTIFY_DONE_ADDING_CHILDREN=0;
-nsIXTFGenericElement.prototype.NOTIFY_HANDLE_DEFAULT=0;
-nsIDOMChromeWindow.prototype= new Array();
-function nsIDOMChromeWindow(){};
-nsIDOMChromeWindow.prototype.STATE_MAXIMIZED=0;
-nsIDOMChromeWindow.prototype.STATE_MINIMIZED=0;
-nsIDOMChromeWindow.prototype.STATE_NORMAL=0;
-nsISSLSocketControl.prototype= new Array();
-function nsISSLSocketControl(){};
-nsIHttpEventSink.prototype= new Array();
-function nsIHttpEventSink(){};
-nsIGlobalHistory3.prototype= new Array();
-function nsIGlobalHistory3(){};
-nsIMicrosummarySet.prototype= new Array();
-function nsIMicrosummarySet(){};
-nsIFeedEntry.prototype= new Array();
-function nsIFeedEntry(){};
-nsIDOMSVGAnimatedAngle.prototype= new Array();
-function nsIDOMSVGAnimatedAngle(){};
-nsIDOMXULDocument_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIDOMXULDocument_MOZILLA_1_8_BRANCH(){};
-nsIXPCComponents_Constructor.prototype= new Array();
-function nsIXPCComponents_Constructor(){};
-nsIUTF8ConverterService.prototype= new Array();
-function nsIUTF8ConverterService(){};
-nsIDOMLSSerializer.prototype= new Array();
-function nsIDOMLSSerializer(){};
-nsIBufferedInputStream.prototype= new Array();
-function nsIBufferedInputStream(){};
-nsIHTMLInlineTableEditor.prototype= new Array();
-function nsIHTMLInlineTableEditor(){};
-nsIDOMMimeType.prototype= new Array();
-function nsIDOMMimeType(){};
-nsIDOMHTMLParamElement.prototype= new Array();
-function nsIDOMHTMLParamElement(){};
-nsIDOMHTMLParamElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLParamElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLParamElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLParamElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLParamElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLParamElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLParamElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLParamElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLParamElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLParamElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLParamElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLParamElement.prototype.NOTATION_NODE=0;
-nsIFeedResultService.prototype= new Array();
-function nsIFeedResultService(){};
-nsIRequestObserver.prototype= new Array();
-function nsIRequestObserver(){};
-nsIXPCConstructor.prototype= new Array();
-function nsIXPCConstructor(){};
-nsIDOMSVGPathSegMovetoAbs.prototype= new Array();
-function nsIDOMSVGPathSegMovetoAbs(){};
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegMovetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIScriptableInputStream.prototype= new Array();
-function nsIScriptableInputStream(){};
-nsIAddonUpdateCheckListener.prototype= new Array();
-function nsIAddonUpdateCheckListener(){};
-nsIAddonUpdateCheckListener.prototype.STATUS_NONE="";
-nsIAddonUpdateCheckListener.prototype.STATUS_UPDATE=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_VERSIONINFO=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_DATA_FOUND=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_FAILURE=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_NO_UPDATE=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_DISABLED=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_APP_MANAGED=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_READ_ONLY=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_PENDING_OP=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_NOT_MANAGED=0;
-nsIAddonUpdateCheckListener.prototype.STATUS_DISALLOWED=0;
-nsIControllerCommandTable.prototype= new Array();
-function nsIControllerCommandTable(){};
-nsIDNSRecord.prototype= new Array();
-function nsIDNSRecord(){};
-nsIAutoCompleteResult.prototype= new Array();
-function nsIAutoCompleteResult(){};
-nsIAutoCompleteResult.prototype.RESULT_IGNORED=0;
-nsIAutoCompleteResult.prototype.RESULT_FAILURE=0;
-nsIAutoCompleteResult.prototype.RESULT_NOMATCH=0;
-nsIAutoCompleteResult.prototype.RESULT_SUCCESS=0;
-nsIAsyncOutputStream.prototype= new Array();
-function nsIAsyncOutputStream(){};
-nsIAsyncOutputStream.prototype.WAIT_CLOSURE_ONLY=0;
-nsIDirectoryServiceProvider2.prototype= new Array();
-function nsIDirectoryServiceProvider2(){};
-nsIEditorIMESupport.prototype= new Array();
-function nsIEditorIMESupport(){};
-nsISelection2.prototype= new Array();
-function nsISelection2(){};
-nsIDOMHTMLHeadingElement.prototype= new Array();
-function nsIDOMHTMLHeadingElement(){};
-nsIDOMHTMLHeadingElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLHeadingElement.prototype.NOTATION_NODE=0;
-nsIDOMText.prototype= new Array();
-function nsIDOMText(){};
-nsIDOMText.prototype.ELEMENT_NODE=0;
-nsIDOMText.prototype.ATTRIBUTE_NODE=0;
-nsIDOMText.prototype.TEXT_NODE=0;
-nsIDOMText.prototype.CDATA_SECTION_NODE=0;
-nsIDOMText.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMText.prototype.ENTITY_NODE=0;
-nsIDOMText.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMText.prototype.COMMENT_NODE=0;
-nsIDOMText.prototype.DOCUMENT_NODE=0;
-nsIDOMText.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMText.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMText.prototype.NOTATION_NODE=0;
-nsIDOMClientInformation.prototype= new Array();
-function nsIDOMClientInformation(){};
-nsIDOMCanvasRenderingContext2D.prototype= new Array();
-function nsIDOMCanvasRenderingContext2D(){};
-nsIStreamListener.prototype= new Array();
-function nsIStreamListener(){};
-nsIOutputStreamCallback.prototype= new Array();
-function nsIOutputStreamCallback(){};
-jsdIScriptEnumerator.prototype= new Array();
-function jsdIScriptEnumerator(){};
-nsIClipboardImage.prototype= new Array();
-function nsIClipboardImage(){};
-nsIBoxObject.prototype= new Array();
-function nsIBoxObject(){};
-nsICloseAllWindows.prototype= new Array();
-function nsICloseAllWindows(){};
-nsIScreenManager.prototype= new Array();
-function nsIScreenManager(){};
-nsIUpdateTimerManager.prototype= new Array();
-function nsIUpdateTimerManager(){};
-nsIDOMSVGAnimatedPreserveAspectRatio.prototype= new Array();
-function nsIDOMSVGAnimatedPreserveAspectRatio(){};
-nsIHttpChannel.prototype= new Array();
-function nsIHttpChannel(){};
-nsIHttpChannel.prototype.LOAD_NORMAL="";
-nsIHttpChannel.prototype.LOAD_BACKGROUND=0;
-nsIHttpChannel.prototype.INHIBIT_CACHING=0;
-nsIHttpChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIHttpChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIHttpChannel.prototype.LOAD_FROM_CACHE=0;
-nsIHttpChannel.prototype.VALIDATE_ALWAYS=0;
-nsIHttpChannel.prototype.VALIDATE_NEVER=0;
-nsIHttpChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIHttpChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIHttpChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIHttpChannel.prototype.LOAD_REPLACE=0;
-nsIHttpChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIHttpChannel.prototype.LOAD_TARGETED=0;
-nsIHttpChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-nsIDOMXULDescriptionElement.prototype= new Array();
-function nsIDOMXULDescriptionElement(){};
-nsIDOMXULDescriptionElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULDescriptionElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULDescriptionElement.prototype.TEXT_NODE=0;
-nsIDOMXULDescriptionElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULDescriptionElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULDescriptionElement.prototype.ENTITY_NODE=0;
-nsIDOMXULDescriptionElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULDescriptionElement.prototype.COMMENT_NODE=0;
-nsIDOMXULDescriptionElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULDescriptionElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULDescriptionElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULDescriptionElement.prototype.NOTATION_NODE=0;
-nsISupportsPRTime.prototype= new Array();
-function nsISupportsPRTime(){};
-nsISupportsPRTime.prototype.TYPE_ID=0;
-nsISupportsPRTime.prototype.TYPE_CSTRING=0;
-nsISupportsPRTime.prototype.TYPE_STRING=0;
-nsISupportsPRTime.prototype.TYPE_PRBOOL=0;
-nsISupportsPRTime.prototype.TYPE_PRUINT8=0;
-nsISupportsPRTime.prototype.TYPE_PRUINT16=0;
-nsISupportsPRTime.prototype.TYPE_PRUINT32=0;
-nsISupportsPRTime.prototype.TYPE_PRUINT64=0;
-nsISupportsPRTime.prototype.TYPE_PRTIME=0;
-nsISupportsPRTime.prototype.TYPE_CHAR=0;
-nsISupportsPRTime.prototype.TYPE_PRINT16=0;
-nsISupportsPRTime.prototype.TYPE_PRINT32=0;
-nsISupportsPRTime.prototype.TYPE_PRINT64=0;
-nsISupportsPRTime.prototype.TYPE_FLOAT=0;
-nsISupportsPRTime.prototype.TYPE_DOUBLE=0;
-nsISupportsPRTime.prototype.TYPE_VOID=0;
-nsISupportsPRTime.prototype.TYPE_INTERFACE_POINTER=0;
-nsIBookmarkTransactionManager.prototype= new Array();
-function nsIBookmarkTransactionManager(){};
-nsIBookmarkTransactionManager.prototype.IMPORT="";
-nsIBookmarkTransactionManager.prototype.INSERT=0;
-nsIBookmarkTransactionManager.prototype.REMOVE=0;
-nsIClientAuthDialogs.prototype= new Array();
-function nsIClientAuthDialogs(){};
-nsISelection.prototype= new Array();
-function nsISelection(){};
-nsIRDFInt.prototype= new Array();
-function nsIRDFInt(){};
-nsIDOMSVGLengthList.prototype= new Array();
-function nsIDOMSVGLengthList(){};
-nsIDOMCSSStyleRule.prototype= new Array();
-function nsIDOMCSSStyleRule(){};
-nsIDOMCSSStyleRule.prototype.UNKNOWN_RULE="";
-nsIDOMCSSStyleRule.prototype.STYLE_RULE=0;
-nsIDOMCSSStyleRule.prototype.CHARSET_RULE=0;
-nsIDOMCSSStyleRule.prototype.IMPORT_RULE=0;
-nsIDOMCSSStyleRule.prototype.MEDIA_RULE=0;
-nsIDOMCSSStyleRule.prototype.FONT_FACE_RULE=0;
-nsIDOMCSSStyleRule.prototype.PAGE_RULE=0;
-nsIServiceManager.prototype= new Array();
-function nsIServiceManager(){};
-nsIShellService_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIShellService_MOZILLA_1_8_BRANCH(){};
-nsILoadGroup.prototype= new Array();
-function nsILoadGroup(){};
-nsILoadGroup.prototype.LOAD_NORMAL="";
-nsILoadGroup.prototype.LOAD_BACKGROUND=0;
-nsILoadGroup.prototype.INHIBIT_CACHING=0;
-nsILoadGroup.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsILoadGroup.prototype.LOAD_BYPASS_CACHE=0;
-nsILoadGroup.prototype.LOAD_FROM_CACHE=0;
-nsILoadGroup.prototype.VALIDATE_ALWAYS=0;
-nsILoadGroup.prototype.VALIDATE_NEVER=0;
-nsILoadGroup.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIExtensionManager.prototype= new Array();
-function nsIExtensionManager(){};
-nsICharsetResolver.prototype= new Array();
-function nsICharsetResolver(){};
-nsICookieManager2.prototype= new Array();
-function nsICookieManager2(){};
-nsIScriptableDataType.prototype= new Array();
-function nsIScriptableDataType(){};
-nsIMIMEInfo.prototype= new Array();
-function nsIMIMEInfo(){};
-nsIMIMEInfo.prototype.saveToDisk="";
-nsIMIMEInfo.prototype.alwaysAsk=0;
-nsIMIMEInfo.prototype.useHelperApp=0;
-nsIMIMEInfo.prototype.handleInternally=0;
-nsIMIMEInfo.prototype.useSystemDefault=0;
-nsIDOMSVGAnimatedPathData.prototype= new Array();
-function nsIDOMSVGAnimatedPathData(){};
-nsIDOMSVGTransform.prototype= new Array();
-function nsIDOMSVGTransform(){};
-nsIDOMSVGTransform.prototype.SVG_TRANSFORM_UNKNOWN="";
-nsIDOMSVGTransform.prototype.SVG_TRANSFORM_MATRIX=0;
-nsIDOMSVGTransform.prototype.SVG_TRANSFORM_TRANSLATE=0;
-nsIDOMSVGTransform.prototype.SVG_TRANSFORM_SCALE=0;
-nsIDOMSVGTransform.prototype.SVG_TRANSFORM_ROTATE=0;
-nsIDOMSVGTransform.prototype.SVG_TRANSFORM_SKEWX=0;
-nsIDOMSVGTransform.prototype.SVG_TRANSFORM_SKEWY=0;
-nsIWebNavigation.prototype= new Array();
-function nsIWebNavigation(){};
-nsIWebNavigation.prototype.LOAD_FLAGS_MASK=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_NONE="";
-nsIWebNavigation.prototype.LOAD_FLAGS_IS_REFRESH=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_IS_LINK=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_BYPASS_HISTORY=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_REPLACE_HISTORY=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_BYPASS_CACHE=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_BYPASS_PROXY=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_CHARSET_CHANGE=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_STOP_CONTENT=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_FROM_EXTERNAL=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP=0;
-nsIWebNavigation.prototype.LOAD_FLAGS_FIRST_LOAD=0;
-nsIWebNavigation.prototype.STOP_NETWORK=0;
-nsIWebNavigation.prototype.STOP_CONTENT=0;
-nsIWebNavigation.prototype.STOP_ALL=0;
-nsIDOMDocument.prototype= new Array();
-function nsIDOMDocument(){};
-nsIDOMDocument.prototype.ELEMENT_NODE=0;
-nsIDOMDocument.prototype.ATTRIBUTE_NODE=0;
-nsIDOMDocument.prototype.TEXT_NODE=0;
-nsIDOMDocument.prototype.CDATA_SECTION_NODE=0;
-nsIDOMDocument.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMDocument.prototype.ENTITY_NODE=0;
-nsIDOMDocument.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMDocument.prototype.COMMENT_NODE=0;
-nsIDOMDocument.prototype.DOCUMENT_NODE=0;
-nsIDOMDocument.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMDocument.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMDocument.prototype.NOTATION_NODE=0;
-nsIDOMProcessingInstruction.prototype= new Array();
-function nsIDOMProcessingInstruction(){};
-nsIDOMProcessingInstruction.prototype.ELEMENT_NODE=0;
-nsIDOMProcessingInstruction.prototype.ATTRIBUTE_NODE=0;
-nsIDOMProcessingInstruction.prototype.TEXT_NODE=0;
-nsIDOMProcessingInstruction.prototype.CDATA_SECTION_NODE=0;
-nsIDOMProcessingInstruction.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMProcessingInstruction.prototype.ENTITY_NODE=0;
-nsIDOMProcessingInstruction.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMProcessingInstruction.prototype.COMMENT_NODE=0;
-nsIDOMProcessingInstruction.prototype.DOCUMENT_NODE=0;
-nsIDOMProcessingInstruction.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMProcessingInstruction.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMProcessingInstruction.prototype.NOTATION_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype= new Array();
-function nsIDOMHTMLTextAreaElement(){};
-nsIDOMHTMLTextAreaElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTextAreaElement.prototype.NOTATION_NODE=0;
-nsIRDFLiteral.prototype= new Array();
-function nsIRDFLiteral(){};
-nsIDOMSVGAngle.prototype= new Array();
-function nsIDOMSVGAngle(){};
-nsIDOMSVGAngle.prototype.SVG_ANGLETYPE_UNKNOWN="";
-nsIDOMSVGAngle.prototype.SVG_ANGLETYPE_UNSPECIFIED=0;
-nsIDOMSVGAngle.prototype.SVG_ANGLETYPE_DEG=0;
-nsIDOMSVGAngle.prototype.SVG_ANGLETYPE_RAD=0;
-nsIDOMSVGAngle.prototype.SVG_ANGLETYPE_GRAD=0;
-nsIDOMXPathEvaluator.prototype= new Array();
-function nsIDOMXPathEvaluator(){};
-nsITableEditor.prototype= new Array();
-function nsITableEditor(){};
-nsITableEditor.prototype.eNoSearch="";
-nsITableEditor.prototype.ePreviousColumn=0;
-nsITableEditor.prototype.ePreviousRow=0;
-nsIPrintOptions.prototype= new Array();
-function nsIPrintOptions(){};
-nsIPrintOptions.prototype.kNativeDataPrintRecord="";
-nsIDOMSVGPathSegLinetoAbs.prototype= new Array();
-function nsIDOMSVGPathSegLinetoAbs(){};
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsISchemaAttribute.prototype= new Array();
-function nsISchemaAttribute(){};
-nsISchemaAttribute.prototype.COMPONENT_TYPE_ATTRIBUTE=0;
-nsISchemaAttribute.prototype.COMPONENT_TYPE_GROUP=0;
-nsISchemaAttribute.prototype.COMPONENT_TYPE_ANY=0;
-nsISchemaAttribute.prototype.USE_OPTIONAL=0;
-nsISchemaAttribute.prototype.USE_PROHIBITED=0;
-nsISchemaAttribute.prototype.USE_REQUIRED=0;
-nsIBrowserBoxObject.prototype= new Array();
-function nsIBrowserBoxObject(){};
-nsIPrintingPromptService.prototype= new Array();
-function nsIPrintingPromptService(){};
-nsISOAPOperationBinding.prototype= new Array();
-function nsISOAPOperationBinding(){};
-nsISOAPOperationBinding.prototype.STYLE_RPC=0;
-nsISOAPOperationBinding.prototype.STYLE_DOCUMENT=0;
-nsIDOMElementCSSInlineStyle.prototype= new Array();
-function nsIDOMElementCSSInlineStyle(){};
-nsIWritableVariant.prototype= new Array();
-function nsIWritableVariant(){};
-nsICommandLine.prototype= new Array();
-function nsICommandLine(){};
-nsICommandLine.prototype.STATE_INITIAL_LAUNCH="";
-nsICommandLine.prototype.STATE_REMOTE_AUTO=0;
-nsICommandLine.prototype.STATE_REMOTE_EXPLICIT=0;
-nsIBookmarksService_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIBookmarksService_MOZILLA_1_8_BRANCH(){};
-nsIBookmarksService_MOZILLA_1_8_BRANCH.prototype.BOOKMARK_DEFAULT_TYPE="";
-nsIBookmarksService_MOZILLA_1_8_BRANCH.prototype.BOOKMARK_SEARCH_TYPE=0;
-nsIBookmarksService_MOZILLA_1_8_BRANCH.prototype.BOOKMARK_FIND_TYPE=0;
-nsIRDFXMLParser.prototype= new Array();
-function nsIRDFXMLParser(){};
-nsISchemaCollection.prototype= new Array();
-function nsISchemaCollection(){};
-nsIURIRefObject.prototype= new Array();
-function nsIURIRefObject(){};
-nsIDOMNSHTMLFormElement.prototype= new Array();
-function nsIDOMNSHTMLFormElement(){};
-nsIXTFXULVisualWrapper.prototype= new Array();
-function nsIXTFXULVisualWrapper(){};
-nsICollection.prototype= new Array();
-function nsICollection(){};
-nsISAXAttributes.prototype= new Array();
-function nsISAXAttributes(){};
-nsIJSXMLHttpRequest.prototype= new Array();
-function nsIJSXMLHttpRequest(){};
-nsIProgressEventSink.prototype= new Array();
-function nsIProgressEventSink(){};
-nsIDataChannel.prototype= new Array();
-function nsIDataChannel(){};
-nsIDataChannel.prototype.LOAD_NORMAL="";
-nsIDataChannel.prototype.LOAD_BACKGROUND=0;
-nsIDataChannel.prototype.INHIBIT_CACHING=0;
-nsIDataChannel.prototype.INHIBIT_PERSISTENT_CACHING=0;
-nsIDataChannel.prototype.LOAD_BYPASS_CACHE=0;
-nsIDataChannel.prototype.LOAD_FROM_CACHE=0;
-nsIDataChannel.prototype.VALIDATE_ALWAYS=0;
-nsIDataChannel.prototype.VALIDATE_NEVER=0;
-nsIDataChannel.prototype.VALIDATE_ONCE_PER_SESSION=0;
-nsIDataChannel.prototype.LOAD_DOCUMENT_URI=0;
-nsIDataChannel.prototype.LOAD_RETARGETED_DOCUMENT_URI=0;
-nsIDataChannel.prototype.LOAD_REPLACE=0;
-nsIDataChannel.prototype.LOAD_INITIAL_DOCUMENT_URI=0;
-nsIDataChannel.prototype.LOAD_TARGETED=0;
-nsIDataChannel.prototype.LOAD_CALL_CONTENT_SNIFFERS=0;
-nsIAuthPromptProvider.prototype= new Array();
-function nsIAuthPromptProvider(){};
-nsIAuthPromptProvider.prototype.PROMPT_NORMAL="";
-nsIAuthPromptProvider.prototype.PROMPT_PROXY=0;
-nsIContentViewerFile.prototype= new Array();
-function nsIContentViewerFile(){};
-nsITreeContentView.prototype= new Array();
-function nsITreeContentView(){};
-nsIConverterInputStream.prototype= new Array();
-function nsIConverterInputStream(){};
-nsIConverterInputStream.prototype.DEFAULT_REPLACEMENT_CHARACTER=0;
-nsIScreen.prototype= new Array();
-function nsIScreen(){};
-nsIDocCharset.prototype= new Array();
-function nsIDocCharset(){};
-nsISOAPPropertyBagMutator.prototype= new Array();
-function nsISOAPPropertyBagMutator(){};
-nsIDOMXULTextBoxElement.prototype= new Array();
-function nsIDOMXULTextBoxElement(){};
-nsIDOMXULTextBoxElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULTextBoxElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULTextBoxElement.prototype.TEXT_NODE=0;
-nsIDOMXULTextBoxElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULTextBoxElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULTextBoxElement.prototype.ENTITY_NODE=0;
-nsIDOMXULTextBoxElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULTextBoxElement.prototype.COMMENT_NODE=0;
-nsIDOMXULTextBoxElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULTextBoxElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULTextBoxElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULTextBoxElement.prototype.NOTATION_NODE=0;
-nsIDOMRGBColor.prototype= new Array();
-function nsIDOMRGBColor(){};
-nsIDOMHTMLTableCaptionElement.prototype= new Array();
-function nsIDOMHTMLTableCaptionElement(){};
-nsIDOMHTMLTableCaptionElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLTableCaptionElement.prototype.NOTATION_NODE=0;
-nsIIFrameBoxObject.prototype= new Array();
-function nsIIFrameBoxObject(){};
-nsIPopupWindowManager.prototype= new Array();
-function nsIPopupWindowManager(){};
-nsIPopupWindowManager.prototype.ALLOW_POPUP=0;
-nsIPopupWindowManager.prototype.DENY_POPUP=0;
-nsIPopupWindowManager.prototype.ALLOW_POPUP_WITH_PREJUDICE=0;
-nsISupportsInterfacePointer.prototype= new Array();
-function nsISupportsInterfacePointer(){};
-nsISupportsInterfacePointer.prototype.TYPE_ID=0;
-nsISupportsInterfacePointer.prototype.TYPE_CSTRING=0;
-nsISupportsInterfacePointer.prototype.TYPE_STRING=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRBOOL=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRUINT8=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRUINT16=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRUINT32=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRUINT64=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRTIME=0;
-nsISupportsInterfacePointer.prototype.TYPE_CHAR=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRINT16=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRINT32=0;
-nsISupportsInterfacePointer.prototype.TYPE_PRINT64=0;
-nsISupportsInterfacePointer.prototype.TYPE_FLOAT=0;
-nsISupportsInterfacePointer.prototype.TYPE_DOUBLE=0;
-nsISupportsInterfacePointer.prototype.TYPE_VOID=0;
-nsISupportsInterfacePointer.prototype.TYPE_INTERFACE_POINTER=0;
-nsIUpdateCheckListener.prototype= new Array();
-function nsIUpdateCheckListener(){};
-nsIByteArrayInputStream.prototype= new Array();
-function nsIByteArrayInputStream(){};
-nsISOAPEncoding.prototype= new Array();
-function nsISOAPEncoding(){};
-nsIDOMSVGViewSpec.prototype= new Array();
-function nsIDOMSVGViewSpec(){};
-nsIDOMSVGViewSpec.prototype.SVG_ZOOMANDPAN_UNKNOWN="";
-nsIDOMSVGViewSpec.prototype.SVG_ZOOMANDPAN_DISABLE=0;
-nsIDOMSVGViewSpec.prototype.SVG_ZOOMANDPAN_MAGNIFY=0;
-nsIWebContentHandlerInfo.prototype= new Array();
-function nsIWebContentHandlerInfo(){};
-nsIDOMNSHTMLFormControlList.prototype= new Array();
-function nsIDOMNSHTMLFormControlList(){};
-nsIDOMXULTreeElement.prototype= new Array();
-function nsIDOMXULTreeElement(){};
-nsIDOMXULTreeElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULTreeElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULTreeElement.prototype.TEXT_NODE=0;
-nsIDOMXULTreeElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULTreeElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULTreeElement.prototype.ENTITY_NODE=0;
-nsIDOMXULTreeElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULTreeElement.prototype.COMMENT_NODE=0;
-nsIDOMXULTreeElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULTreeElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULTreeElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULTreeElement.prototype.NOTATION_NODE=0;
-nsIFrameLoaderOwner.prototype= new Array();
-function nsIFrameLoaderOwner(){};
-nsIDOMNSHistory.prototype= new Array();
-function nsIDOMNSHistory(){};
-nsISessionRoaming.prototype= new Array();
-function nsISessionRoaming(){};
-nsIDOMNSXPathExpression.prototype= new Array();
-function nsIDOMNSXPathExpression(){};
-nsIDragSession.prototype= new Array();
-function nsIDragSession(){};
-nsITransactionList.prototype= new Array();
-function nsITransactionList(){};
-nsIDOMSVGPathSegCurvetoCubicRel.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoCubicRel(){};
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoCubicRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIClipboardDragDropHookList.prototype= new Array();
-function nsIClipboardDragDropHookList(){};
-nsIScrollable.prototype= new Array();
-function nsIScrollable(){};
-nsIScrollable.prototype.ScrollOrientation_X=0;
-nsIScrollable.prototype.ScrollOrientation_Y=0;
-nsIScrollable.prototype.Scrollbar_Auto=0;
-nsIScrollable.prototype.Scrollbar_Never=0;
-nsIScrollable.prototype.Scrollbar_Always=0;
-gfxIFormats.prototype= new Array();
-function gfxIFormats(){};
-gfxIFormats.prototype.RGB="";
-gfxIFormats.prototype.BGR=0;
-gfxIFormats.prototype.RGB_A1=0;
-gfxIFormats.prototype.BGR_A1=0;
-gfxIFormats.prototype.RGB_A8=0;
-gfxIFormats.prototype.BGR_A8=0;
-gfxIFormats.prototype.RGBA=0;
-gfxIFormats.prototype.BGRA=0;
-nsIWinAppHelper.prototype= new Array();
-function nsIWinAppHelper(){};
-nsIDOMNodeFilter.prototype= new Array();
-function nsIDOMNodeFilter(){};
-nsIDOMNodeFilter.prototype.FILTER_ACCEPT=0;
-nsIDOMNodeFilter.prototype.FILTER_REJECT=0;
-nsIDOMNodeFilter.prototype.FILTER_SKIP=0;
-nsIDOMNodeFilter.prototype.SHOW_ALL=0;
-nsIDOMNodeFilter.prototype.SHOW_ELEMENT=0;
-nsIDOMNodeFilter.prototype.SHOW_ATTRIBUTE=0;
-nsIDOMNodeFilter.prototype.SHOW_TEXT=0;
-nsIDOMNodeFilter.prototype.SHOW_CDATA_SECTION=0;
-nsIDOMNodeFilter.prototype.SHOW_ENTITY_REFERENCE=0;
-nsIDOMNodeFilter.prototype.SHOW_ENTITY=0;
-nsIDOMNodeFilter.prototype.SHOW_PROCESSING_INSTRUCTION=0;
-nsIDOMNodeFilter.prototype.SHOW_COMMENT=0;
-nsIDOMNodeFilter.prototype.SHOW_DOCUMENT=0;
-nsIDOMNodeFilter.prototype.SHOW_DOCUMENT_TYPE=0;
-nsIDOMNodeFilter.prototype.SHOW_DOCUMENT_FRAGMENT=0;
-nsIDOMNodeFilter.prototype.SHOW_NOTATION=0;
-nsISocketTransportService.prototype= new Array();
-function nsISocketTransportService(){};
-nsISelectionDisplay.prototype= new Array();
-function nsISelectionDisplay(){};
-nsISelectionDisplay.prototype.DISPLAY_TEXT=0;
-nsISelectionDisplay.prototype.DISPLAY_IMAGES=0;
-nsISelectionDisplay.prototype.DISPLAY_FRAMES=0;
-nsISelectionDisplay.prototype.DISPLAY_ALL=0;
-nsIJSCID.prototype= new Array();
-function nsIJSCID(){};
-nsIObserver.prototype= new Array();
-function nsIObserver(){};
-nsIJSID.prototype= new Array();
-function nsIJSID(){};
-nsISupportsChar.prototype= new Array();
-function nsISupportsChar(){};
-nsISupportsChar.prototype.TYPE_ID=0;
-nsISupportsChar.prototype.TYPE_CSTRING=0;
-nsISupportsChar.prototype.TYPE_STRING=0;
-nsISupportsChar.prototype.TYPE_PRBOOL=0;
-nsISupportsChar.prototype.TYPE_PRUINT8=0;
-nsISupportsChar.prototype.TYPE_PRUINT16=0;
-nsISupportsChar.prototype.TYPE_PRUINT32=0;
-nsISupportsChar.prototype.TYPE_PRUINT64=0;
-nsISupportsChar.prototype.TYPE_PRTIME=0;
-nsISupportsChar.prototype.TYPE_CHAR=0;
-nsISupportsChar.prototype.TYPE_PRINT16=0;
-nsISupportsChar.prototype.TYPE_PRINT32=0;
-nsISupportsChar.prototype.TYPE_PRINT64=0;
-nsISupportsChar.prototype.TYPE_FLOAT=0;
-nsISupportsChar.prototype.TYPE_DOUBLE=0;
-nsISupportsChar.prototype.TYPE_VOID=0;
-nsISupportsChar.prototype.TYPE_INTERFACE_POINTER=0;
-nsIPrintProgressParams.prototype= new Array();
-function nsIPrintProgressParams(){};
-nsIDocShell_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIDocShell_MOZILLA_1_8_BRANCH(){};
-nsIProtocolHandler.prototype= new Array();
-function nsIProtocolHandler(){};
-nsIProtocolHandler.prototype.URI_STD="";
-nsIProtocolHandler.prototype.URI_NORELATIVE=0;
-nsIProtocolHandler.prototype.URI_NOAUTH=0;
-nsIProtocolHandler.prototype.ALLOWS_PROXY=0;
-nsIProtocolHandler.prototype.ALLOWS_PROXY_HTTP=0;
-nsIDOMDOMImplementation.prototype= new Array();
-function nsIDOMDOMImplementation(){};
-nsPIXPIProxy.prototype= new Array();
-function nsPIXPIProxy(){};
-nsITreeBoxObject.prototype= new Array();
-function nsITreeBoxObject(){};
-nsIPersistentProperties.prototype= new Array();
-function nsIPersistentProperties(){};
-nsIXPCComponents_utils_Sandbox.prototype= new Array();
-function nsIXPCComponents_utils_Sandbox(){};
-nsIAccessibleRetrieval.prototype= new Array();
-function nsIAccessibleRetrieval(){};
-nsIExtensionManager_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIExtensionManager_MOZILLA_1_8_BRANCH(){};
-nsIScriptableUnescapeHTML.prototype= new Array();
-function nsIScriptableUnescapeHTML(){};
-nsIStreamConverter.prototype= new Array();
-function nsIStreamConverter(){};
-nsIIOService.prototype= new Array();
-function nsIIOService(){};
-nsIDOMNSHTMLOptionElement.prototype= new Array();
-function nsIDOMNSHTMLOptionElement(){};
-imgIDecoderObserver.prototype= new Array();
-function imgIDecoderObserver(){};
-nsIPrinterEnumerator.prototype= new Array();
-function nsIPrinterEnumerator(){};
-nsIDOMEventTarget.prototype= new Array();
-function nsIDOMEventTarget(){};
-nsIRegistryValue.prototype= new Array();
-function nsIRegistryValue(){};
-nsIDOMSVGScriptElement.prototype= new Array();
-function nsIDOMSVGScriptElement(){};
-nsIDOMSVGScriptElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGScriptElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGScriptElement.prototype.TEXT_NODE=0;
-nsIDOMSVGScriptElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGScriptElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGScriptElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGScriptElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGScriptElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGScriptElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGScriptElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGScriptElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGScriptElement.prototype.NOTATION_NODE=0;
-nsIMarkupDocumentViewer.prototype= new Array();
-function nsIMarkupDocumentViewer(){};
-nsIFTPEventSink.prototype= new Array();
-function nsIFTPEventSink(){};
-nsIPluginManager.prototype= new Array();
-function nsIPluginManager(){};
-nsIBrowserProfileMigrator.prototype= new Array();
-function nsIBrowserProfileMigrator(){};
-nsIBrowserProfileMigrator.prototype.ALL="";
-nsIBrowserProfileMigrator.prototype.SETTINGS=0;
-nsIBrowserProfileMigrator.prototype.COOKIES=0;
-nsIBrowserProfileMigrator.prototype.HISTORY=0;
-nsIBrowserProfileMigrator.prototype.FORMDATA=0;
-nsIBrowserProfileMigrator.prototype.PASSWORDS=0;
-nsIBrowserProfileMigrator.prototype.BOOKMARKS=0;
-nsIBrowserProfileMigrator.prototype.OTHERDATA=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype= new Array();
-function nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs(){};
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsIDOMHTMLBaseElement.prototype= new Array();
-function nsIDOMHTMLBaseElement(){};
-nsIDOMHTMLBaseElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLBaseElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLBaseElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLBaseElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLBaseElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLBaseElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLBaseElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLBaseElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLBaseElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLBaseElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLBaseElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLBaseElement.prototype.NOTATION_NODE=0;
-nsIFileInputStream.prototype= new Array();
-function nsIFileInputStream(){};
-nsIFileInputStream.prototype.DELETE_ON_CLOSE=0;
-nsIFileInputStream.prototype.CLOSE_ON_EOF=0;
-nsIFileInputStream.prototype.REOPEN_ON_REWIND=0;
-nsIDOMHTMLMenuElement.prototype= new Array();
-function nsIDOMHTMLMenuElement(){};
-nsIDOMHTMLMenuElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLMenuElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLMenuElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLMenuElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLMenuElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLMenuElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLMenuElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLMenuElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLMenuElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLMenuElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLMenuElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLMenuElement.prototype.NOTATION_NODE=0;
-nsIDOMHTMLDivElement.prototype= new Array();
-function nsIDOMHTMLDivElement(){};
-nsIDOMHTMLDivElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLDivElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLDivElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLDivElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLDivElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLDivElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLDivElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLDivElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLDivElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLDivElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLDivElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLDivElement.prototype.NOTATION_NODE=0;
-nsIUpdate.prototype= new Array();
-function nsIUpdate(){};
-nsIXSLTProcessor.prototype= new Array();
-function nsIXSLTProcessor(){};
-nsIDOMBeforeUnloadEvent.prototype= new Array();
-function nsIDOMBeforeUnloadEvent(){};
-nsIDOMBeforeUnloadEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMBeforeUnloadEvent.prototype.AT_TARGET=0;
-nsIDOMBeforeUnloadEvent.prototype.BUBBLING_PHASE=0;
-nsISOAPPartBinding.prototype= new Array();
-function nsISOAPPartBinding(){};
-nsISOAPPartBinding.prototype.STYLE_RPC=0;
-nsISOAPPartBinding.prototype.STYLE_DOCUMENT=0;
-nsISOAPPartBinding.prototype.LOCATION_BODY=0;
-nsISOAPPartBinding.prototype.LOCATION_HEADER=0;
-nsISOAPPartBinding.prototype.LOCATION_FAULT=0;
-nsISOAPPartBinding.prototype.USE_LITERAL=0;
-nsISOAPPartBinding.prototype.USE_ENCODED=0;
-nsIDOMHTMLMetaElement.prototype= new Array();
-function nsIDOMHTMLMetaElement(){};
-nsIDOMHTMLMetaElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLMetaElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLMetaElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLMetaElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLMetaElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLMetaElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLMetaElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLMetaElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLMetaElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLMetaElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLMetaElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLMetaElement.prototype.NOTATION_NODE=0;
-nsIXTFStyledElementWrapper.prototype= new Array();
-function nsIXTFStyledElementWrapper(){};
-nsIDOMSVGLocatable.prototype= new Array();
-function nsIDOMSVGLocatable(){};
-nsISAXMutableAttributes.prototype= new Array();
-function nsISAXMutableAttributes(){};
-nsISchemaElement.prototype= new Array();
-function nsISchemaElement(){};
-nsISchemaElement.prototype.PARTICLE_TYPE_ELEMENT=0;
-nsISchemaElement.prototype.PARTICLE_TYPE_MODEL_GROUP=0;
-nsISchemaElement.prototype.PARTICLE_TYPE_ANY=0;
-nsISchemaElement.prototype.OCCURRENCE_UNBOUNDED=0;
-nsIDOMXULSelectControlItemElement.prototype= new Array();
-function nsIDOMXULSelectControlItemElement(){};
-nsIDOMXULSelectControlItemElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.TEXT_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.ENTITY_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.COMMENT_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULSelectControlItemElement.prototype.NOTATION_NODE=0;
-nsIPrefBranchInternal.prototype= new Array();
-function nsIPrefBranchInternal(){};
-nsIPrefBranchInternal.prototype.PREF_INVALID="";
-nsIPrefBranchInternal.prototype.PREF_STRING=0;
-nsIPrefBranchInternal.prototype.PREF_INT=0;
-nsIPrefBranchInternal.prototype.PREF_BOOL=0;
-nsIDOMSVGPathSegList.prototype= new Array();
-function nsIDOMSVGPathSegList(){};
-mozIStorageStatement.prototype= new Array();
-function mozIStorageStatement(){};
-mozIStorageStatement.prototype.VALUE_TYPE_NULL="";
-mozIStorageStatement.prototype.VALUE_TYPE_INTEGER=0;
-mozIStorageStatement.prototype.VALUE_TYPE_FLOAT=0;
-mozIStorageStatement.prototype.VALUE_TYPE_TEXT=0;
-mozIStorageStatement.prototype.VALUE_TYPE_BLOB=0;
-mozIStorageStatement.prototype.MOZ_STORAGE_STATEMENT_INVALID="";
-mozIStorageStatement.prototype.MOZ_STORAGE_STATEMENT_READY=0;
-mozIStorageStatement.prototype.MOZ_STORAGE_STATEMENT_EXECUTING=0;
-nsIStringBundle.prototype= new Array();
-function nsIStringBundle(){};
-nsISHEntry.prototype= new Array();
-function nsISHEntry(){};
-nsIDOMNavigator.prototype= new Array();
-function nsIDOMNavigator(){};
-nsIXPCComponents_Classes.prototype= new Array();
-function nsIXPCComponents_Classes(){};
-nsPIEditorTransaction.prototype= new Array();
-function nsPIEditorTransaction(){};
-nsISearchSubmission.prototype= new Array();
-function nsISearchSubmission(){};
-nsIDOMWindowInternal.prototype= new Array();
-function nsIDOMWindowInternal(){};
-nsITreeSelection.prototype= new Array();
-function nsITreeSelection(){};
-nsIPropertyBag.prototype= new Array();
-function nsIPropertyBag(){};
-nsIPrintSettings.prototype= new Array();
-function nsIPrintSettings(){};
-nsIPrintSettings.prototype.kInitSaveOddEvenPages=0;
-nsIPrintSettings.prototype.kInitSaveHeaderLeft=0;
-nsIPrintSettings.prototype.kInitSaveHeaderCenter=0;
-nsIPrintSettings.prototype.kInitSaveHeaderRight=0;
-nsIPrintSettings.prototype.kInitSaveFooterLeft=0;
-nsIPrintSettings.prototype.kInitSaveFooterCenter=0;
-nsIPrintSettings.prototype.kInitSaveFooterRight=0;
-nsIPrintSettings.prototype.kInitSaveBGColors=0;
-nsIPrintSettings.prototype.kInitSaveBGImages=0;
-nsIPrintSettings.prototype.kInitSavePaperSize=0;
-nsIPrintSettings.prototype.kInitSavePaperName=0;
-nsIPrintSettings.prototype.kInitSavePaperSizeUnit=0;
-nsIPrintSettings.prototype.kInitSavePaperSizeType=0;
-nsIPrintSettings.prototype.kInitSavePaperData=0;
-nsIPrintSettings.prototype.kInitSavePaperWidth=0;
-nsIPrintSettings.prototype.kInitSavePaperHeight=0;
-nsIPrintSettings.prototype.kInitSaveReversed=0;
-nsIPrintSettings.prototype.kInitSaveInColor=0;
-nsIPrintSettings.prototype.kInitSaveOrientation=0;
-nsIPrintSettings.prototype.kInitSavePrintCommand=0;
-nsIPrintSettings.prototype.kInitSavePrinterName=0;
-nsIPrintSettings.prototype.kInitSavePrintToFile=0;
-nsIPrintSettings.prototype.kInitSaveToFileName=0;
-nsIPrintSettings.prototype.kInitSavePageDelay=0;
-nsIPrintSettings.prototype.kInitSaveMargins=0;
-nsIPrintSettings.prototype.kInitSaveNativeData=0;
-nsIPrintSettings.prototype.kInitSavePlexName=0;
-nsIPrintSettings.prototype.kInitSaveShrinkToFit=0;
-nsIPrintSettings.prototype.kInitSaveScaling=0;
-nsIPrintSettings.prototype.kInitSaveColorspace=0;
-nsIPrintSettings.prototype.kInitSaveResolutionName=0;
-nsIPrintSettings.prototype.kInitSaveDownloadFonts=0;
-nsIPrintSettings.prototype.kInitSaveAll=0;
-nsIPrintSettings.prototype.kPrintOddPages=0;
-nsIPrintSettings.prototype.kPrintEvenPages=0;
-nsIPrintSettings.prototype.kEnableSelectionRB=0;
-nsIPrintSettings.prototype.kRangeAllPages="";
-nsIPrintSettings.prototype.kRangeSpecifiedPageRange=0;
-nsIPrintSettings.prototype.kRangeSelection=0;
-nsIPrintSettings.prototype.kRangeFocusFrame=0;
-nsIPrintSettings.prototype.kJustLeft="";
-nsIPrintSettings.prototype.kJustCenter=0;
-nsIPrintSettings.prototype.kJustRight=0;
-nsIPrintSettings.prototype.kUseInternalDefault="";
-nsIPrintSettings.prototype.kUseSettingWhenPossible=0;
-nsIPrintSettings.prototype.kPaperSizeNativeData="";
-nsIPrintSettings.prototype.kPaperSizeDefined=0;
-nsIPrintSettings.prototype.kPaperSizeInches="";
-nsIPrintSettings.prototype.kPaperSizeMillimeters=0;
-nsIPrintSettings.prototype.kPortraitOrientation="";
-nsIPrintSettings.prototype.kLandscapeOrientation=0;
-nsIPrintSettings.prototype.kNoFrames="";
-nsIPrintSettings.prototype.kFramesAsIs=0;
-nsIPrintSettings.prototype.kSelectedFrame=0;
-nsIPrintSettings.prototype.kEachFrameSep=0;
-nsIPrintSettings.prototype.kFrameEnableNone="";
-nsIPrintSettings.prototype.kFrameEnableAll=0;
-nsIPrintSettings.prototype.kFrameEnableAsIsAndEach=0;
-nsIFastLoadWriteControl.prototype= new Array();
-function nsIFastLoadWriteControl(){};
-nsIDOMSVGSymbolElement.prototype= new Array();
-function nsIDOMSVGSymbolElement(){};
-nsIDOMSVGSymbolElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGSymbolElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGSymbolElement.prototype.TEXT_NODE=0;
-nsIDOMSVGSymbolElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGSymbolElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGSymbolElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGSymbolElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGSymbolElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGSymbolElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGSymbolElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGSymbolElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGSymbolElement.prototype.NOTATION_NODE=0;
-mozIStorageFunction.prototype= new Array();
-function mozIStorageFunction(){};
-nsIDebug.prototype= new Array();
-function nsIDebug(){};
-nsIServerSocket.prototype= new Array();
-function nsIServerSocket(){};
-nsIDOMXULDocument.prototype= new Array();
-function nsIDOMXULDocument(){};
-nsIDOMPopupBlockedEvent.prototype= new Array();
-function nsIDOMPopupBlockedEvent(){};
-nsIDOMPopupBlockedEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMPopupBlockedEvent.prototype.AT_TARGET=0;
-nsIDOMPopupBlockedEvent.prototype.BUBBLING_PHASE=0;
-nsIEditorSpellCheck.prototype= new Array();
-function nsIEditorSpellCheck(){};
-nsIDOMHTMLScriptElement.prototype= new Array();
-function nsIDOMHTMLScriptElement(){};
-nsIDOMHTMLScriptElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLScriptElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLScriptElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLScriptElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLScriptElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLScriptElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLScriptElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLScriptElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLScriptElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLScriptElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLScriptElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLScriptElement.prototype.NOTATION_NODE=0;
-nsIWebBrowserChromeFocus.prototype= new Array();
-function nsIWebBrowserChromeFocus(){};
-nsIEntityConverter.prototype= new Array();
-function nsIEntityConverter(){};
-nsIEntityConverter.prototype.entityNone="";
-nsIEntityConverter.prototype.html40Latin1=0;
-nsIEntityConverter.prototype.html40Symbols=0;
-nsIEntityConverter.prototype.html40Special=0;
-nsIEntityConverter.prototype.transliterate=0;
-nsIEntityConverter.prototype.mathml20=0;
-nsIEntityConverter.prototype.html32=0;
-nsIEntityConverter.prototype.html40=0;
-nsIEntityConverter.prototype.entityW3C=0;
-nsISimpleEnumerator.prototype= new Array();
-function nsISimpleEnumerator(){};
-nsIEmbeddingSiteWindow2.prototype= new Array();
-function nsIEmbeddingSiteWindow2(){};
-nsIEmbeddingSiteWindow2.prototype.DIM_FLAGS_POSITION=0;
-nsIEmbeddingSiteWindow2.prototype.DIM_FLAGS_SIZE_INNER=0;
-nsIEmbeddingSiteWindow2.prototype.DIM_FLAGS_SIZE_OUTER=0;
-nsIDOMHTMLBodyElement.prototype= new Array();
-function nsIDOMHTMLBodyElement(){};
-nsIDOMHTMLBodyElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLBodyElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLBodyElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLBodyElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLBodyElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLBodyElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLBodyElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLBodyElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLBodyElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLBodyElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLBodyElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLBodyElement.prototype.NOTATION_NODE=0;
-nsIChannelEventSink.prototype= new Array();
-function nsIChannelEventSink(){};
-nsIChannelEventSink.prototype.REDIRECT_TEMPORARY=0;
-nsIChannelEventSink.prototype.REDIRECT_PERMANENT=0;
-nsIChannelEventSink.prototype.REDIRECT_INTERNAL=0;
-nsICookie.prototype= new Array();
-function nsICookie(){};
-nsICookie.prototype.STATUS_UNKNOWN="";
-nsICookie.prototype.STATUS_ACCEPTED=0;
-nsICookie.prototype.STATUS_DOWNGRADED=0;
-nsICookie.prototype.STATUS_FLAGGED=0;
-nsICookie.prototype.STATUS_REJECTED=0;
-nsICookie.prototype.POLICY_UNKNOWN="";
-nsICookie.prototype.POLICY_NONE=0;
-nsICookie.prototype.POLICY_NO_CONSENT=0;
-nsICookie.prototype.POLICY_IMPLICIT_CONSENT=0;
-nsICookie.prototype.POLICY_EXPLICIT_CONSENT=0;
-nsICookie.prototype.POLICY_NO_II=0;
-nsIPrintingPrompt.prototype= new Array();
-function nsIPrintingPrompt(){};
-nsIDOMHTMLOptionElement.prototype= new Array();
-function nsIDOMHTMLOptionElement(){};
-nsIDOMHTMLOptionElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLOptionElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLOptionElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLOptionElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLOptionElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLOptionElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLOptionElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLOptionElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLOptionElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLOptionElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLOptionElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLOptionElement.prototype.NOTATION_NODE=0;
-nsIXPCComponents_ClassesByID.prototype= new Array();
-function nsIXPCComponents_ClassesByID(){};
-nsIMultiPartChannel.prototype= new Array();
-function nsIMultiPartChannel(){};
-nsIFrameLoader.prototype= new Array();
-function nsIFrameLoader(){};
-nsIAccessibleCaret.prototype= new Array();
-function nsIAccessibleCaret(){};
-nsIFeedWriter.prototype= new Array();
-function nsIFeedWriter(){};
-nsIMIMEService.prototype= new Array();
-function nsIMIMEService(){};
-nsIDOMXULCommandDispatcher.prototype= new Array();
-function nsIDOMXULCommandDispatcher(){};
-nsICommandParams.prototype= new Array();
-function nsICommandParams(){};
-nsICommandParams.prototype.eNoType="";
-nsICommandParams.prototype.eBooleanType=0;
-nsICommandParams.prototype.eLongType=0;
-nsICommandParams.prototype.eDoubleType=0;
-nsICommandParams.prototype.eWStringType=0;
-nsICommandParams.prototype.eISupportsType=0;
-nsICommandParams.prototype.eStringType=0;
-nsIX509CertDB.prototype= new Array();
-function nsIX509CertDB(){};
-nsIX509CertDB.prototype.UNTRUSTED="";
-nsIX509CertDB.prototype.TRUSTED_SSL=0;
-nsIX509CertDB.prototype.TRUSTED_EMAIL=0;
-nsIX509CertDB.prototype.TRUSTED_OBJSIGN=0;
-nsIDOMRangeException.prototype= new Array();
-function nsIDOMRangeException(){};
-nsIDOMRangeException.prototype.BAD_BOUNDARYPOINTS_ERR=0;
-nsIDOMRangeException.prototype.INVALID_NODE_TYPE_ERR=0;
-nsIRDFCompositeDataSource.prototype= new Array();
-function nsIRDFCompositeDataSource(){};
-nsIScriptableInterfaces.prototype= new Array();
-function nsIScriptableInterfaces(){};
-nsILineInputStream.prototype= new Array();
-function nsILineInputStream(){};
-nsIWeakReference.prototype= new Array();
-function nsIWeakReference(){};
-nsITypeAheadFind_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsITypeAheadFind_MOZILLA_1_8_BRANCH(){};
-nsITypeAheadFind_MOZILLA_1_8_BRANCH.prototype.FIND_FOUND="";
-nsITypeAheadFind_MOZILLA_1_8_BRANCH.prototype.FIND_NOTFOUND=0;
-nsITypeAheadFind_MOZILLA_1_8_BRANCH.prototype.FIND_WRAPPED=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype= new Array();
-function nsIDOMSVGPathSegLinetoVerticalRel(){};
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_UNKNOWN="";
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CLOSEPATH=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_MOVETO_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_MOVETO_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_LINETO_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_LINETO_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_CUBIC_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_CUBIC_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_QUADRATIC_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_QUADRATIC_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_ARC_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_ARC_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_LINETO_HORIZONTAL_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_LINETO_HORIZONTAL_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_LINETO_VERTICAL_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_LINETO_VERTICAL_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_CUBIC_SMOOTH_REL=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS=0;
-nsIDOMSVGPathSegLinetoVerticalRel.prototype.PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL=0;
-nsISupports.prototype= new Array();
-function nsISupports(){};
-nsIWebProgress.prototype= new Array();
-function nsIWebProgress(){};
-nsIWebProgress.prototype.NOTIFY_STATE_REQUEST=0;
-nsIWebProgress.prototype.NOTIFY_STATE_DOCUMENT=0;
-nsIWebProgress.prototype.NOTIFY_STATE_NETWORK=0;
-nsIWebProgress.prototype.NOTIFY_STATE_WINDOW=0;
-nsIWebProgress.prototype.NOTIFY_STATE_ALL=0;
-nsIWebProgress.prototype.NOTIFY_PROGRESS=0;
-nsIWebProgress.prototype.NOTIFY_STATUS=0;
-nsIWebProgress.prototype.NOTIFY_SECURITY=0;
-nsIWebProgress.prototype.NOTIFY_LOCATION=0;
-nsIWebProgress.prototype.NOTIFY_ALL=0;
-nsIDOMGetSVGDocument.prototype= new Array();
-function nsIDOMGetSVGDocument(){};
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype= new Array();
-function nsIAutoCompleteController_MOZILLA_1_8_BRANCH(){};
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.STATUS_NONE=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.STATUS_SEARCHING=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.STATUS_COMPLETE_NO_MATCH=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.STATUS_COMPLETE_MATCH=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_UP=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_DOWN=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_LEFT=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_RIGHT=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_PAGE_UP=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_PAGE_DOWN=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_HOME=0;
-nsIAutoCompleteController_MOZILLA_1_8_BRANCH.prototype.KEY_END=0;
-nsISSLStatus.prototype= new Array();
-function nsISSLStatus(){};
-nsIDOMSmartCardEvent.prototype= new Array();
-function nsIDOMSmartCardEvent(){};
-nsIDOMSmartCardEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMSmartCardEvent.prototype.AT_TARGET=0;
-nsIDOMSmartCardEvent.prototype.BUBBLING_PHASE=0;
-nsIDOMXULElement.prototype= new Array();
-function nsIDOMXULElement(){};
-nsIDOMXULElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULElement.prototype.TEXT_NODE=0;
-nsIDOMXULElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULElement.prototype.ENTITY_NODE=0;
-nsIDOMXULElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULElement.prototype.COMMENT_NODE=0;
-nsIDOMXULElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULElement.prototype.NOTATION_NODE=0;
-nsIClipboardOwner.prototype= new Array();
-function nsIClipboardOwner(){};
-nsIAuthPromptWrapper.prototype= new Array();
-function nsIAuthPromptWrapper(){};
-nsIAuthPromptWrapper.prototype.SAVE_PASSWORD_NEVER="";
-nsIAuthPromptWrapper.prototype.SAVE_PASSWORD_FOR_SESSION=0;
-nsIAuthPromptWrapper.prototype.SAVE_PASSWORD_PERMANENTLY=0;
-nsIWebBrowserChrome.prototype= new Array();
-function nsIWebBrowserChrome(){};
-nsIWebBrowserChrome.prototype.STATUS_SCRIPT=0;
-nsIWebBrowserChrome.prototype.STATUS_SCRIPT_DEFAULT=0;
-nsIWebBrowserChrome.prototype.STATUS_LINK=0;
-nsIWebBrowserChrome.prototype.CHROME_DEFAULT=0;
-nsIWebBrowserChrome.prototype.CHROME_WINDOW_BORDERS=0;
-nsIWebBrowserChrome.prototype.CHROME_WINDOW_CLOSE=0;
-nsIWebBrowserChrome.prototype.CHROME_WINDOW_RESIZE=0;
-nsIWebBrowserChrome.prototype.CHROME_MENUBAR=0;
-nsIWebBrowserChrome.prototype.CHROME_TOOLBAR=0;
-nsIWebBrowserChrome.prototype.CHROME_LOCATIONBAR=0;
-nsIWebBrowserChrome.prototype.CHROME_STATUSBAR=0;
-nsIWebBrowserChrome.prototype.CHROME_PERSONAL_TOOLBAR=0;
-nsIWebBrowserChrome.prototype.CHROME_SCROLLBARS=0;
-nsIWebBrowserChrome.prototype.CHROME_TITLEBAR=0;
-nsIWebBrowserChrome.prototype.CHROME_EXTRA=0;
-nsIWebBrowserChrome.prototype.CHROME_WITH_SIZE=0;
-nsIWebBrowserChrome.prototype.CHROME_WITH_POSITION=0;
-nsIWebBrowserChrome.prototype.CHROME_WINDOW_MIN=0;
-nsIWebBrowserChrome.prototype.CHROME_WINDOW_POPUP=0;
-nsIWebBrowserChrome.prototype.CHROME_WINDOW_RAISED=0;
-nsIWebBrowserChrome.prototype.CHROME_WINDOW_LOWERED=0;
-nsIWebBrowserChrome.prototype.CHROME_CENTER_SCREEN=0;
-nsIWebBrowserChrome.prototype.CHROME_DEPENDENT=0;
-nsIWebBrowserChrome.prototype.CHROME_MODAL=0;
-nsIWebBrowserChrome.prototype.CHROME_OPENAS_DIALOG=0;
-nsIWebBrowserChrome.prototype.CHROME_OPENAS_CHROME=0;
-nsIWebBrowserChrome.prototype.CHROME_ALL=0;
-nsIDOMHTMLAreaElement.prototype= new Array();
-function nsIDOMHTMLAreaElement(){};
-nsIDOMHTMLAreaElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLAreaElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLAreaElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLAreaElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLAreaElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLAreaElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLAreaElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLAreaElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLAreaElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLAreaElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLAreaElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLAreaElement.prototype.NOTATION_NODE=0;
-nsIDOMSVGStylable.prototype= new Array();
-function nsIDOMSVGStylable(){};
-nsILocalFileWin.prototype= new Array();
-function nsILocalFileWin(){};
-nsILocalFileWin.prototype.NORMAL_FILE_TYPE="";
-nsILocalFileWin.prototype.DIRECTORY_TYPE=0;
-nsIWebBrowserFind.prototype= new Array();
-function nsIWebBrowserFind(){};
-nsIDOMSVGUseElement.prototype= new Array();
-function nsIDOMSVGUseElement(){};
-nsIDOMSVGUseElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGUseElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGUseElement.prototype.TEXT_NODE=0;
-nsIDOMSVGUseElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGUseElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGUseElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGUseElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGUseElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGUseElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGUseElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGUseElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGUseElement.prototype.NOTATION_NODE=0;
-nsICertVerificationResult.prototype= new Array();
-function nsICertVerificationResult(){};
-nsICertVerificationListener.prototype= new Array();
-function nsICertVerificationListener(){};
-nsIMicrosummaryService.prototype= new Array();
-function nsIMicrosummaryService(){};
-rdfITripleVisitor.prototype= new Array();
-function rdfITripleVisitor(){};
-jsdIErrorHook.prototype= new Array();
-function jsdIErrorHook(){};
-jsdIErrorHook.prototype.REPORT_ERROR="";
-jsdIErrorHook.prototype.REPORT_WARNING=0;
-jsdIErrorHook.prototype.REPORT_EXCEPTION=0;
-jsdIErrorHook.prototype.REPORT_STRICT=0;
-nsIDOMSVGGElement.prototype= new Array();
-function nsIDOMSVGGElement(){};
-nsIDOMSVGGElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGGElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGGElement.prototype.TEXT_NODE=0;
-nsIDOMSVGGElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGGElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGGElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGGElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGGElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGGElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGGElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGGElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGGElement.prototype.NOTATION_NODE=0;
-nsIDOMPluginArray.prototype= new Array();
-function nsIDOMPluginArray(){};
-nsICipherInfo.prototype= new Array();
-function nsICipherInfo(){};
-nsIDOMNamedNodeMap.prototype= new Array();
-function nsIDOMNamedNodeMap(){};
-nsIDOMHTMLBaseFontElement.prototype= new Array();
-function nsIDOMHTMLBaseFontElement(){};
-nsIDOMHTMLBaseFontElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLBaseFontElement.prototype.NOTATION_NODE=0;
-nsIDOMXULCheckboxElement.prototype= new Array();
-function nsIDOMXULCheckboxElement(){};
-nsIDOMXULCheckboxElement.prototype.ELEMENT_NODE=0;
-nsIDOMXULCheckboxElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMXULCheckboxElement.prototype.TEXT_NODE=0;
-nsIDOMXULCheckboxElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMXULCheckboxElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMXULCheckboxElement.prototype.ENTITY_NODE=0;
-nsIDOMXULCheckboxElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMXULCheckboxElement.prototype.COMMENT_NODE=0;
-nsIDOMXULCheckboxElement.prototype.DOCUMENT_NODE=0;
-nsIDOMXULCheckboxElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMXULCheckboxElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMXULCheckboxElement.prototype.NOTATION_NODE=0;
-nsIDOMXULCheckboxElement.prototype.CHECKSTATE_UNCHECKED="";
-nsIDOMXULCheckboxElement.prototype.CHECKSTATE_CHECKED=0;
-nsIDOMXULCheckboxElement.prototype.CHECKSTATE_MIXED=0;
-nsIDOMWindow.prototype= new Array();
-function nsIDOMWindow(){};
-nsIDOMHTMLDirectoryElement.prototype= new Array();
-function nsIDOMHTMLDirectoryElement(){};
-nsIDOMHTMLDirectoryElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLDirectoryElement.prototype.NOTATION_NODE=0;
-inIFileSearch.prototype= new Array();
-function inIFileSearch(){};
-nsIDOMNSHTMLAreaElement.prototype= new Array();
-function nsIDOMNSHTMLAreaElement(){};
-nsIDOMHTMLImageElement.prototype= new Array();
-function nsIDOMHTMLImageElement(){};
-nsIDOMHTMLImageElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLImageElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLImageElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLImageElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLImageElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLImageElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLImageElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLImageElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLImageElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLImageElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLImageElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLImageElement.prototype.NOTATION_NODE=0;
-nsIX509CertDB2.prototype= new Array();
-function nsIX509CertDB2(){};
-nsIControllers.prototype= new Array();
-function nsIControllers(){};
-nsISchemaAttributeGroup.prototype= new Array();
-function nsISchemaAttributeGroup(){};
-nsISchemaAttributeGroup.prototype.COMPONENT_TYPE_ATTRIBUTE=0;
-nsISchemaAttributeGroup.prototype.COMPONENT_TYPE_GROUP=0;
-nsISchemaAttributeGroup.prototype.COMPONENT_TYPE_ANY=0;
-nsIFeedContainer.prototype= new Array();
-function nsIFeedContainer(){};
-nsIUnicharStreamLoaderObserver.prototype= new Array();
-function nsIUnicharStreamLoaderObserver(){};
-nsIEmbeddingSiteWindow.prototype= new Array();
-function nsIEmbeddingSiteWindow(){};
-nsIEmbeddingSiteWindow.prototype.DIM_FLAGS_POSITION=0;
-nsIEmbeddingSiteWindow.prototype.DIM_FLAGS_SIZE_INNER=0;
-nsIEmbeddingSiteWindow.prototype.DIM_FLAGS_SIZE_OUTER=0;
-nsICacheEntryInfo.prototype= new Array();
-function nsICacheEntryInfo(){};
-nsIDOMSVGFitToViewBox.prototype= new Array();
-function nsIDOMSVGFitToViewBox(){};
-jsdIFilterEnumerator.prototype= new Array();
-function jsdIFilterEnumerator(){};
-nsIDNSService.prototype= new Array();
-function nsIDNSService(){};
-nsIDNSService.prototype.RESOLVE_BYPASS_CACHE=0;
-nsIDNSService.prototype.RESOLVE_CANONICAL_NAME=0;
-nsIScriptableInterfaceInfo.prototype= new Array();
-function nsIScriptableInterfaceInfo(){};
-nsIPK11Token.prototype= new Array();
-function nsIPK11Token(){};
-nsIPK11Token.prototype.ASK_EVERY_TIME=0;
-nsIPK11Token.prototype.ASK_FIRST_TIME="";
-nsIPK11Token.prototype.ASK_EXPIRE_TIME=0;
-nsIControllerCommand.prototype= new Array();
-function nsIControllerCommand(){};
-nsIXSLTProcessorPrivate.prototype= new Array();
-function nsIXSLTProcessorPrivate(){};
-nsIXSLTProcessorPrivate.prototype.DISABLE_ALL_LOADS=0;
-nsISOAPParameter.prototype= new Array();
-function nsISOAPParameter(){};
-nsIDOMHTMLOListElement.prototype= new Array();
-function nsIDOMHTMLOListElement(){};
-nsIDOMHTMLOListElement.prototype.ELEMENT_NODE=0;
-nsIDOMHTMLOListElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMHTMLOListElement.prototype.TEXT_NODE=0;
-nsIDOMHTMLOListElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMHTMLOListElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMHTMLOListElement.prototype.ENTITY_NODE=0;
-nsIDOMHTMLOListElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMHTMLOListElement.prototype.COMMENT_NODE=0;
-nsIDOMHTMLOListElement.prototype.DOCUMENT_NODE=0;
-nsIDOMHTMLOListElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMHTMLOListElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMHTMLOListElement.prototype.NOTATION_NODE=0;
-nsITimerCallback.prototype= new Array();
-function nsITimerCallback(){};
-nsIXPCComponents.prototype= new Array();
-function nsIXPCComponents(){};
-nsISocketProviderService.prototype= new Array();
-function nsISocketProviderService(){};
-nsIWebServiceSOAPCallContext.prototype= new Array();
-function nsIWebServiceSOAPCallContext(){};
-nsIWebServiceSOAPCallContext.prototype.PENDING="";
-nsIWebServiceSOAPCallContext.prototype.SUCCEEDED=0;
-nsIWebServiceSOAPCallContext.prototype.FAILED=0;
-nsIWebServiceSOAPCallContext.prototype.ABORTED=0;
-nsIAuthPrompt.prototype= new Array();
-function nsIAuthPrompt(){};
-nsIAuthPrompt.prototype.SAVE_PASSWORD_NEVER="";
-nsIAuthPrompt.prototype.SAVE_PASSWORD_FOR_SESSION=0;
-nsIAuthPrompt.prototype.SAVE_PASSWORD_PERMANENTLY=0;
-nsIAtomService.prototype= new Array();
-function nsIAtomService(){};
-nsIHTTPIndex.prototype= new Array();
-function nsIHTTPIndex(){};
-nsICryptoHash.prototype= new Array();
-function nsICryptoHash(){};
-nsICryptoHash.prototype.MD2=0;
-nsICryptoHash.prototype.MD5=0;
-nsICryptoHash.prototype.SHA1=0;
-nsICryptoHash.prototype.SHA256=0;
-nsICryptoHash.prototype.SHA384=0;
-nsICryptoHash.prototype.SHA512=0;
-nsIDOMDocumentRange.prototype= new Array();
-function nsIDOMDocumentRange(){};
-nsIProfileUnlocker.prototype= new Array();
-function nsIProfileUnlocker(){};
-nsIProfileUnlocker.prototype.ATTEMPT_QUIT="";
-nsIProfileUnlocker.prototype.FORCE_QUIT=0;
-nsIDOMNodeIterator.prototype= new Array();
-function nsIDOMNodeIterator(){};
-nsIWebNavigationInfo.prototype= new Array();
-function nsIWebNavigationInfo(){};
-nsIWebNavigationInfo.prototype.UNSUPPORTED="";
-nsIWebNavigationInfo.prototype.IMAGE=0;
-nsIWebNavigationInfo.prototype.PLUGIN=0;
-nsIWebNavigationInfo.prototype.OTHER=0;
-nsIAutoCompleteSearch.prototype= new Array();
-function nsIAutoCompleteSearch(){};
-nsIEncodedChannel.prototype= new Array();
-function nsIEncodedChannel(){};
-nsIToolkitProfileService.prototype= new Array();
-function nsIToolkitProfileService(){};
-jsdIContextEnumerator.prototype= new Array();
-function jsdIContextEnumerator(){};
-nsIRDFContainer.prototype= new Array();
-function nsIRDFContainer(){};
-nsIScriptableDateFormat.prototype= new Array();
-function nsIScriptableDateFormat(){};
-nsIScriptableDateFormat.prototype.dateFormatNone="";
-nsIScriptableDateFormat.prototype.dateFormatLong=0;
-nsIScriptableDateFormat.prototype.dateFormatShort=0;
-nsIScriptableDateFormat.prototype.dateFormatYearMonth=0;
-nsIScriptableDateFormat.prototype.dateFormatWeekday=0;
-nsIScriptableDateFormat.prototype.timeFormatNone="";
-nsIScriptableDateFormat.prototype.timeFormatSeconds=0;
-nsIScriptableDateFormat.prototype.timeFormatNoSeconds=0;
-nsIScriptableDateFormat.prototype.timeFormatSecondsForce24Hour=0;
-nsIScriptableDateFormat.prototype.timeFormatNoSecondsForce24Hour=0;
-nsIDOMDocumentFragment.prototype= new Array();
-function nsIDOMDocumentFragment(){};
-nsIDOMDocumentFragment.prototype.ELEMENT_NODE=0;
-nsIDOMDocumentFragment.prototype.ATTRIBUTE_NODE=0;
-nsIDOMDocumentFragment.prototype.TEXT_NODE=0;
-nsIDOMDocumentFragment.prototype.CDATA_SECTION_NODE=0;
-nsIDOMDocumentFragment.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMDocumentFragment.prototype.ENTITY_NODE=0;
-nsIDOMDocumentFragment.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMDocumentFragment.prototype.COMMENT_NODE=0;
-nsIDOMDocumentFragment.prototype.DOCUMENT_NODE=0;
-nsIDOMDocumentFragment.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMDocumentFragment.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMDocumentFragment.prototype.NOTATION_NODE=0;
-nsIDOMEntityReference.prototype= new Array();
-function nsIDOMEntityReference(){};
-nsIDOMEntityReference.prototype.ELEMENT_NODE=0;
-nsIDOMEntityReference.prototype.ATTRIBUTE_NODE=0;
-nsIDOMEntityReference.prototype.TEXT_NODE=0;
-nsIDOMEntityReference.prototype.CDATA_SECTION_NODE=0;
-nsIDOMEntityReference.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMEntityReference.prototype.ENTITY_NODE=0;
-nsIDOMEntityReference.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMEntityReference.prototype.COMMENT_NODE=0;
-nsIDOMEntityReference.prototype.DOCUMENT_NODE=0;
-nsIDOMEntityReference.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMEntityReference.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMEntityReference.prototype.NOTATION_NODE=0;
-nsIProperties.prototype= new Array();
-function nsIProperties(){};
-nsIUpdatePrompt.prototype= new Array();
-function nsIUpdatePrompt(){};
-nsIDOMSVGRectElement.prototype= new Array();
-function nsIDOMSVGRectElement(){};
-nsIDOMSVGRectElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGRectElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGRectElement.prototype.TEXT_NODE=0;
-nsIDOMSVGRectElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGRectElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGRectElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGRectElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGRectElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGRectElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGRectElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGRectElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGRectElement.prototype.NOTATION_NODE=0;
-mozITXTToHTMLConv.prototype= new Array();
-function mozITXTToHTMLConv(){};
-mozITXTToHTMLConv.prototype.kEntities="";
-mozITXTToHTMLConv.prototype.kURLs=0;
-mozITXTToHTMLConv.prototype.kGlyphSubstitution=0;
-mozITXTToHTMLConv.prototype.kStructPhrase=0;
-nsIMicrosummaryObserver.prototype= new Array();
-function nsIMicrosummaryObserver(){};
-nsIDirectoryServiceProvider.prototype= new Array();
-function nsIDirectoryServiceProvider(){};
-nsIDocShellLoadInfo.prototype= new Array();
-function nsIDocShellLoadInfo(){};
-nsIDocShellLoadInfo.prototype.loadNormal="";
-nsIDocShellLoadInfo.prototype.loadNormalReplace=0;
-nsIDocShellLoadInfo.prototype.loadHistory=0;
-nsIDocShellLoadInfo.prototype.loadReloadNormal=0;
-nsIDocShellLoadInfo.prototype.loadReloadBypassCache=0;
-nsIDocShellLoadInfo.prototype.loadReloadBypassProxy=0;
-nsIDocShellLoadInfo.prototype.loadReloadBypassProxyAndCache=0;
-nsIDocShellLoadInfo.prototype.loadLink=0;
-nsIDocShellLoadInfo.prototype.loadRefresh=0;
-nsIDocShellLoadInfo.prototype.loadReloadCharsetChange=0;
-nsIDocShellLoadInfo.prototype.loadBypassHistory=0;
-nsIDocShellLoadInfo.prototype.loadStopContent=0;
-nsIDocShellLoadInfo.prototype.loadStopContentAndReplace=0;
-nsIDocShellLoadInfo.prototype.loadNormalExternal=0;
-nsIXPCComponents_Results.prototype= new Array();
-function nsIXPCComponents_Results(){};
-nsIRDFDate.prototype= new Array();
-function nsIRDFDate(){};
-nsIContentViewerEdit.prototype= new Array();
-function nsIContentViewerEdit(){};
-nsIContentViewerEdit.prototype.COPY_IMAGE_TEXT=0;
-nsIContentViewerEdit.prototype.COPY_IMAGE_HTML=0;
-nsIContentViewerEdit.prototype.COPY_IMAGE_DATA=0;
-nsIContentViewerEdit.prototype.COPY_IMAGE_ALL=0;
-nsISupportsPrimitive.prototype= new Array();
-function nsISupportsPrimitive(){};
-nsISupportsPrimitive.prototype.TYPE_ID=0;
-nsISupportsPrimitive.prototype.TYPE_CSTRING=0;
-nsISupportsPrimitive.prototype.TYPE_STRING=0;
-nsISupportsPrimitive.prototype.TYPE_PRBOOL=0;
-nsISupportsPrimitive.prototype.TYPE_PRUINT8=0;
-nsISupportsPrimitive.prototype.TYPE_PRUINT16=0;
-nsISupportsPrimitive.prototype.TYPE_PRUINT32=0;
-nsISupportsPrimitive.prototype.TYPE_PRUINT64=0;
-nsISupportsPrimitive.prototype.TYPE_PRTIME=0;
-nsISupportsPrimitive.prototype.TYPE_CHAR=0;
-nsISupportsPrimitive.prototype.TYPE_PRINT16=0;
-nsISupportsPrimitive.prototype.TYPE_PRINT32=0;
-nsISupportsPrimitive.prototype.TYPE_PRINT64=0;
-nsISupportsPrimitive.prototype.TYPE_FLOAT=0;
-nsISupportsPrimitive.prototype.TYPE_DOUBLE=0;
-nsISupportsPrimitive.prototype.TYPE_VOID=0;
-nsISupportsPrimitive.prototype.TYPE_INTERFACE_POINTER=0;
-nsIXULTreeBuilderObserver.prototype= new Array();
-function nsIXULTreeBuilderObserver(){};
-nsIXULTreeBuilderObserver.prototype.DROP_BEFORE=0;
-nsIXULTreeBuilderObserver.prototype.DROP_ON="";
-nsIXULTreeBuilderObserver.prototype.DROP_AFTER=0;
-nsISSLStatusProvider.prototype= new Array();
-function nsISSLStatusProvider(){};
-rdfISerializer.prototype= new Array();
-function rdfISerializer(){};
-nsIDOMSVGPolygonElement.prototype= new Array();
-function nsIDOMSVGPolygonElement(){};
-nsIDOMSVGPolygonElement.prototype.ELEMENT_NODE=0;
-nsIDOMSVGPolygonElement.prototype.ATTRIBUTE_NODE=0;
-nsIDOMSVGPolygonElement.prototype.TEXT_NODE=0;
-nsIDOMSVGPolygonElement.prototype.CDATA_SECTION_NODE=0;
-nsIDOMSVGPolygonElement.prototype.ENTITY_REFERENCE_NODE=0;
-nsIDOMSVGPolygonElement.prototype.ENTITY_NODE=0;
-nsIDOMSVGPolygonElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-nsIDOMSVGPolygonElement.prototype.COMMENT_NODE=0;
-nsIDOMSVGPolygonElement.prototype.DOCUMENT_NODE=0;
-nsIDOMSVGPolygonElement.prototype.DOCUMENT_TYPE_NODE=0;
-nsIDOMSVGPolygonElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-nsIDOMSVGPolygonElement.prototype.NOTATION_NODE=0;
-nsIDOMStorageList.prototype= new Array();
-function nsIDOMStorageList(){};
-nsIAboutModule.prototype= new Array();
-function nsIAboutModule(){};
-nsIWritablePropertyBag2.prototype= new Array();
-function nsIWritablePropertyBag2(){};
-nsIDocumentStateListener.prototype= new Array();
-function nsIDocumentStateListener(){};
-nsISHTransaction.prototype= new Array();
-function nsISHTransaction(){};
-nsIRDFXMLSinkObserver.prototype= new Array();
-function nsIRDFXMLSinkObserver(){};
-nsIOnReadyStateChangeHandler.prototype= new Array();
-function nsIOnReadyStateChangeHandler(){};
-nsIASN1Sequence.prototype= new Array();
-function nsIASN1Sequence(){};
-nsIASN1Sequence.prototype.ASN1_END_CONTENTS="";
-nsIASN1Sequence.prototype.ASN1_BOOLEAN=0;
-nsIASN1Sequence.prototype.ASN1_INTEGER=0;
-nsIASN1Sequence.prototype.ASN1_BIT_STRING=0;
-nsIASN1Sequence.prototype.ASN1_OCTET_STRING=0;
-nsIASN1Sequence.prototype.ASN1_NULL=0;
-nsIASN1Sequence.prototype.ASN1_OBJECT_ID=0;
-nsIASN1Sequence.prototype.ASN1_ENUMERATED=0;
-nsIASN1Sequence.prototype.ASN1_UTF8_STRING=0;
-nsIASN1Sequence.prototype.ASN1_SEQUENCE=0;
-nsIASN1Sequence.prototype.ASN1_SET=0;
-nsIASN1Sequence.prototype.ASN1_PRINTABLE_STRING=0;
-nsIASN1Sequence.prototype.ASN1_T61_STRING=0;
-nsIASN1Sequence.prototype.ASN1_IA5_STRING=0;
-nsIASN1Sequence.prototype.ASN1_UTC_TIME=0;
-nsIASN1Sequence.prototype.ASN1_GEN_TIME=0;
-nsIASN1Sequence.prototype.ASN1_VISIBLE_STRING=0;
-nsIASN1Sequence.prototype.ASN1_UNIVERSAL_STRING=0;
-nsIASN1Sequence.prototype.ASN1_BMP_STRING=0;
-nsIASN1Sequence.prototype.ASN1_HIGH_TAG_NUMBER=0;
-nsIASN1Sequence.prototype.ASN1_CONTEXT_SPECIFIC=0;
-nsIASN1Sequence.prototype.ASN1_APPLICATION=0;
-nsIASN1Sequence.prototype.ASN1_PRIVATE=0;
-nsIAutoCompleteSimpleResult.prototype= new Array();
-function nsIAutoCompleteSimpleResult(){};
-nsIAutoCompleteSimpleResult.prototype.RESULT_IGNORED=0;
-nsIAutoCompleteSimpleResult.prototype.RESULT_FAILURE=0;
-nsIAutoCompleteSimpleResult.prototype.RESULT_NOMATCH=0;
-nsIAutoCompleteSimpleResult.prototype.RESULT_SUCCESS=0;
-nsIDOMToString.prototype= new Array();
-function nsIDOMToString(){};
-nsIUpdateManager.prototype= new Array();
-function nsIUpdateManager(){};
-nsIDOMScreen.prototype= new Array();
-function nsIDOMScreen(){};
-nsIStreamListenerProxy.prototype= new Array();
-function nsIStreamListenerProxy(){};
-nsISchemaLoader.prototype= new Array();
-function nsISchemaLoader(){};
-nsPIAccessNode.prototype= new Array();
-function nsPIAccessNode(){};
-nsIUploadChannel.prototype= new Array();
-function nsIUploadChannel(){};
-nsIController.prototype= new Array();
-function nsIController(){};
-nsIDOMSVGURIReference.prototype= new Array();
-function nsIDOMSVGURIReference(){};
-nsIBadCertListener.prototype= new Array();
-function nsIBadCertListener(){};
-nsIBadCertListener.prototype.UNINIT_ADD_FLAG=0;
-nsIBadCertListener.prototype.ADD_TRUSTED_FOR_SESSION=0;
-nsIBadCertListener.prototype.ADD_TRUSTED_PERMANENTLY=0;
-nsIDOMStorageEvent.prototype= new Array();
-function nsIDOMStorageEvent(){};
-nsIDOMStorageEvent.prototype.CAPTURING_PHASE=0;
-nsIDOMStorageEvent.prototype.AT_TARGET=0;
-nsIDOMStorageEvent.prototype.BUBBLING_PHASE=0;
-nsXPCComponents_InterfacesByID.prototype= new Array();
-function nsXPCComponents_InterfacesByID(){};
-/*
-nsXPCComponents_InterfacesByID.prototype.{a6cf9080-15b3-11d2-932e-00805f8add32}= new nsIDOMStyleSheet();
-nsXPCComponents_InterfacesByID.prototype.{0458dac4-65de-11d5-9b42-00104bdf5339}= new nsIWSDLPart();
-nsXPCComponents_InterfacesByID.prototype.{4a7e9b62-fef8-400d-9865-d6820f630b4c}= new nsIUnicharStreamListener();
-nsXPCComponents_InterfacesByID.prototype.{a5710331-74ec-45fb-aa85-ed3bc7c36924}= new nsIContentSniffer();
-nsXPCComponents_InterfacesByID.prototype.{4d7d15c0-3747-4f7f-b6b3-792a5ea1a9aa}= new nsIXmlRpcClient();
-nsXPCComponents_InterfacesByID.prototype.{b01eb40c-026b-49c9-af55-25e8c9d034c8}= new nsIInterfaceInfoToIDL();
-nsXPCComponents_InterfacesByID.prototype.{436a83fa-b396-11d9-bcfa-00112478d626}= new nsITimer();
-nsXPCComponents_InterfacesByID.prototype.{693611be-bb38-40e0-a98e-b46ff8a5bcca}= new nsIWebServiceProxyFactory();
-nsXPCComponents_InterfacesByID.prototype.{1c28ed66-1dd2-11b2-95af-e2cf10931adb}= new nsIDOMNSXBLFormControl();
-nsXPCComponents_InterfacesByID.prototype.{56e2ada8-4631-11d4-ba11-001083023c1e}= new nsIScrollBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{b1f95f5e-ee05-4434-9d34-89a935d7feef}= new nsICachingChannel();
-nsXPCComponents_InterfacesByID.prototype.{8816d003-e7c8-4065-8827-829b8d07b6e0}= new nsIDOMXMLDocument();
-nsXPCComponents_InterfacesByID.prototype.{3cac403c-edb3-11d4-998b-00b0d02354a0}= new nsICertSelect();
-nsXPCComponents_InterfacesByID.prototype.{c7e410d3-85f2-11d3-9f63-006008a6efe9}= new nsIJARURI();
-nsXPCComponents_InterfacesByID.prototype.{0455cf88-c679-40c3-8e9f-ff4554ee9559}= new nsIEditorSpellCheck_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{6ff6a966-9632-11d3-8cd9-0060b0fc14a3}= new nsIZipReader();
-nsXPCComponents_InterfacesByID.prototype.{9927fa40-1dd1-11b2-a8d1-857ad21b872c}= new nsISOAPService();
-nsXPCComponents_InterfacesByID.prototype.{9bb35f13-0096-4a31-833a-acd97001132d}= new nsIPropertyBag2();
-nsXPCComponents_InterfacesByID.prototype.{aa610f20-a889-11d3-8c81-000064657374}= new nsILocalFile();
-nsXPCComponents_InterfacesByID.prototype.{0cc37c78-4c5f-48e1-adfc-7480b8fe9dc4}= new nsIDOMStorageItem();
-nsXPCComponents_InterfacesByID.prototype.{e30d94b0-4a1c-11d3-9890-006008962422}= new nsISupportsPRInt16();
-nsXPCComponents_InterfacesByID.prototype.{604ad9d0-753e-11d3-90ca-34278643278f}= new nsIStorageStream();
-nsXPCComponents_InterfacesByID.prototype.{165e7f61-5048-4c2c-b4bf-6b44bb617ee4}= new nsIDOMLSInput();
-nsXPCComponents_InterfacesByID.prototype.{8e440d86-886a-4e76-9e59-c13b939c9a4b}= new nsIDOMMutationEvent();
-nsXPCComponents_InterfacesByID.prototype.{44b3153e-a54e-4077-a527-b0325e40924e}= new nsIDownloadObserver();
-nsXPCComponents_InterfacesByID.prototype.{3294d20e-c707-4e59-a625-bde93fc0b25f}= new nsIDOMSVGPathSegLinetoRel();
-nsXPCComponents_InterfacesByID.prototype.{bbe961ee-59e9-42bb-be50-0331979bb79f}= new nsIDocumentLoader();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b7-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTableCellElement();
-nsXPCComponents_InterfacesByID.prototype.{f3a8d3b4-c424-4edc-8bf6-8974c983ba78}= new nsIException();
-nsXPCComponents_InterfacesByID.prototype.{211d5360-4af6-4a1d-99c1-926d35861eaf}= new nsIUrlClassifierDBService();
-nsXPCComponents_InterfacesByID.prototype.{0f78da58-8321-11d2-8eac-00805f29f370}= new nsIRDFDataSource();
-nsXPCComponents_InterfacesByID.prototype.{ae419e24-1dd1-11b2-b39a-d3e5e7073802}= new nsIPrefLocalizedString();
-nsXPCComponents_InterfacesByID.prototype.{e08dcda0-d651-11d2-9843-006008962422}= new nsIJSIID();
-nsXPCComponents_InterfacesByID.prototype.{27b00295-349c-429f-ad0c-87b859e77130}= new nsIHTMLObjectResizeListener();
-nsXPCComponents_InterfacesByID.prototype.{d2c7b3eb-7778-468b-ae9b-c106c2afb5d1}= new nsPIProtocolProxyService();
-nsXPCComponents_InterfacesByID.prototype.{77015f88-bfc2-4669-b1c3-cc19fb07cd4e}= new mozIStorageConnection();
-nsXPCComponents_InterfacesByID.prototype.{5bec321f-59ac-413a-a4ad-8a8d7c50a0d0}= new nsITextServicesFilter();
-nsXPCComponents_InterfacesByID.prototype.{8c7bf4bc-d3fe-4524-b213-ce578bfe936e}= new nsIWSPInterfaceInfoService();
-nsXPCComponents_InterfacesByID.prototype.{bb76b72e-d143-4738-804a-53b311466dd9}= new nsIWSDLSOAPBinding();
-nsXPCComponents_InterfacesByID.prototype.{a9b84f6a-0824-4278-bae6-bfca0570a26e}= new nsISimpleStreamListener();
-nsXPCComponents_InterfacesByID.prototype.{31aba0f0-2d93-11d3-8069-00600811a9c3}= new nsISearchContext();
-nsXPCComponents_InterfacesByID.prototype.{f0980f60-ee3d-11d4-998b-00b0d02354a0}= new nsIX509Cert();
-nsXPCComponents_InterfacesByID.prototype.{0f78da50-8321-11d2-8eac-00805f29f370}= new nsIRDFNode();
-nsXPCComponents_InterfacesByID.prototype.{56f539b7-0b3d-4bac-b60d-9efe220216ea}= new nsIDOMSVGDescElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90c1-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSRule();
-nsXPCComponents_InterfacesByID.prototype.{3fe9308b-1608-4fa0-933c-c5ec2c6175fd}= new nsIProxyInfo();
-nsXPCComponents_InterfacesByID.prototype.{e01dc470-4a1c-11d3-9890-006008962422}= new nsISupportsPRUint32();
-nsXPCComponents_InterfacesByID.prototype.{cf9428c1-df50-11d3-9d0c-0050040007b2}= new nsICurrentCharsetListener();
-nsXPCComponents_InterfacesByID.prototype.{43ae4efe-2610-4cce-8242-279e556a78fa}= new nsIDOMSVGImageElement();
-nsXPCComponents_InterfacesByID.prototype.{5d405325-2ba1-4040-b69b-8bda8353d3d3}= new nsIUrlClassifierDBServiceWorker();
-nsXPCComponents_InterfacesByID.prototype.{081e31e0-a144-11d3-8c7c-00609792278c}= new nsISecureBrowserUI();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a1-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLParagraphElement();
-nsXPCComponents_InterfacesByID.prototype.{ae89a7e2-1dd1-11b2-8c2f-af82086291a5}= new jsdIScriptHook();
-nsXPCComponents_InterfacesByID.prototype.{4a2abaf0-6886-11d3-9382-00104ba0fd40}= new nsIRunnable();
-nsXPCComponents_InterfacesByID.prototype.{57a66a60-d43a-11d3-8cc2-00609792278c}= new nsIDirectoryService();
-nsXPCComponents_InterfacesByID.prototype.{41466a9f-f027-487d-a96c-af39e629b8d2}= new nsIDNSListener();
-nsXPCComponents_InterfacesByID.prototype.{4ee28c82-1dd2-11b2-aabf-bb4017abe395}= new nsIPK11TokenDB();
-nsXPCComponents_InterfacesByID.prototype.{3c14a029-6f4e-11d5-9b46-000064657374}= new nsISchemaParticle();
-nsXPCComponents_InterfacesByID.prototype.{a26c5b45-7707-4412-bbc1-2462b890848d}= new nsPIDNSService();
-nsXPCComponents_InterfacesByID.prototype.{e63d240d-bd00-4857-ba65-2f9cc599eead}= new nsIXTFXMLVisual();
-nsXPCComponents_InterfacesByID.prototype.{ddbbdfb8-a1c0-4dd5-a31b-5d2a7a3bb6ec}= new nsIMIMEHeaderParam();
-nsXPCComponents_InterfacesByID.prototype.{c99cffac-5aed-4267-ad2f-f4a4c9d4a081}= new nsIScriptableInterfacesByID();
-nsXPCComponents_InterfacesByID.prototype.{d3d4dada-c6eb-11d9-a68f-001124787b2e}= new nsIInstallLocation();
-nsXPCComponents_InterfacesByID.prototype.{9491c383-e3c4-11d2-bdbe-0050040a9b44}= new nsIGlobalHistory();
-nsXPCComponents_InterfacesByID.prototype.{53102f15-0f53-4939-957e-aea353ad2700}= new imgIContainerObserver();
-nsXPCComponents_InterfacesByID.prototype.{50d3ef6c-9380-4f06-9fb2-95488f7d141c}= new nsIStringEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{7ce8e9d1-8b4b-4883-a307-66fe12a50153}= new nsIHttpAuthManager();
-nsXPCComponents_InterfacesByID.prototype.{9fd4ba15-e67c-4c98-b52c-7715f62c9196}= new nsIDOMSerializer();
-nsXPCComponents_InterfacesByID.prototype.{22f9a49c-3cf8-4c23-8006-54efb11ac562}= new nsICacheMetaDataVisitor();
-nsXPCComponents_InterfacesByID.prototype.{79beb289-3644-4b54-9432-9fb993945629}= new nsIDOMNSHTMLDocument();
-nsXPCComponents_InterfacesByID.prototype.{11bf5cdc-1dd2-11b2-ba6a-c76afb326fa1}= new nsIGeneratingKeypairInfoDialogs();
-nsXPCComponents_InterfacesByID.prototype.{46f1e23e-1dd2-11b2-9ceb-8285f2e95e69}= new jsdIEphemeral();
-nsXPCComponents_InterfacesByID.prototype.{a4a0cad9-e0da-4379-bee4-2feef3dddc7e}= new mozIStorageService();
-nsXPCComponents_InterfacesByID.prototype.{a63f70c0-148b-11d3-9333-00104ba0fd40}= new nsIPrompt();
-nsXPCComponents_InterfacesByID.prototype.{3c2a6927-e923-4ea8-bbda-a335c768ce4e}= new nsIDocShellTreeOwner_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{2309482b-4631-455f-833f-5e4e9ce38589}= new nsIScriptableParamInfo();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9098-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLLegendElement();
-nsXPCComponents_InterfacesByID.prototype.{ec1c0063-197d-44bb-84ba-7525d50fc937}= new nsICache();
-nsXPCComponents_InterfacesByID.prototype.{280da566-6f19-4487-a8ca-70c5ba1602c1}= new nsIWyciwygChannel();
-nsXPCComponents_InterfacesByID.prototype.{0ec80360-075c-11d4-9fd4-00c04f1b83d8}= new nsISecretDecoderRing();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a7-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLFontElement();
-nsXPCComponents_InterfacesByID.prototype.{ac46be8f-c863-4c23-84a2-d0fcc8dfa9f4}= new nsIXULBuilderListener();
-nsXPCComponents_InterfacesByID.prototype.{fafe41a9-a531-4d6d-89bc-588a6522fb4e}= new nsIDownloader();
-nsXPCComponents_InterfacesByID.prototype.{0d0acd2a-61b4-11d4-9877-00c04fa0cf4a}= new nsIOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{31adb439-0055-402d-9b1d-d5ca94f3f55b}= new nsIDOMCounter();
-nsXPCComponents_InterfacesByID.prototype.{8b246748-1dd2-11b2-9512-9dc84a95fc2f}= new nsIHTTPHeaderListener();
-nsXPCComponents_InterfacesByID.prototype.{d500e8b8-1dd1-11b2-89a1-cdf55d91cbbd}= new jsdIObject();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9108-15b3-11d2-932e-00805f8add32}= new nsIDOMNSLocation();
-nsXPCComponents_InterfacesByID.prototype.{9bd6fdb0-1dd1-11b2-9101-d15375968230}= new nsIRandomAccessIterator();
-nsXPCComponents_InterfacesByID.prototype.{51d59b08-1dd2-11b2-ad4a-a51b92f8a184}= new nsICertPickDialogs();
-nsXPCComponents_InterfacesByID.prototype.{abeaa390-4ac0-11d3-baea-00805f8a5dd7}= new nsISupportsFloat();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9090-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLSelectElement();
-nsXPCComponents_InterfacesByID.prototype.{6476378a-da09-11d3-8cda-0060b0fc14a3}= new nsIBufferedOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{86114dd8-1dd2-11b2-ab2b-91d0c995e03a}= new nsISOAPCallCompletion();
-nsXPCComponents_InterfacesByID.prototype.{67f42475-ba80-40f8-ac0b-649c89230184}= new nsIUnicharLineInputStream();
-nsXPCComponents_InterfacesByID.prototype.{bb4bae9c-39c5-11d5-ba26-00108303b117}= new nsITokenDialogs();
-nsXPCComponents_InterfacesByID.prototype.{39f76c23-45b2-428a-9240-a981e5abf148}= new nsIDOMDocumentCSS();
-nsXPCComponents_InterfacesByID.prototype.{c185d920-4a3e-11d5-ba27-00108303b117}= new nsICRLInfo();
-nsXPCComponents_InterfacesByID.prototype.{68e21b66-1dd2-11b2-aa67-e2b87175e792}= new nsITransportSecurityInfo();
-nsXPCComponents_InterfacesByID.prototype.{5da1e8f0-6255-4b9c-af80-aa3dad7f2fdb}= new nsIBoxPaintManager();
-nsXPCComponents_InterfacesByID.prototype.{8b042e24-6f87-11d3-b3c8-00805f8a6670}= new nsITextToSubURI();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b9-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLFrameElement();
-nsXPCComponents_InterfacesByID.prototype.{be26b580-1dd1-11b2-9946-c598d0d07727}= new nsITokenPasswordDialogs();
-nsXPCComponents_InterfacesByID.prototype.{a49813a4-98b7-4bdb-998c-8bd9704af0c0}= new nsIExternalProtocolService();
-nsXPCComponents_InterfacesByID.prototype.{101d5941-d820-4e85-a266-9a3469940807}= new nsIEnvironment();
-nsXPCComponents_InterfacesByID.prototype.{7b3b3c62-9d53-4abc-bc89-c33ce78f439f}= new nsIXMLHttpRequest();
-nsXPCComponents_InterfacesByID.prototype.{94928ab3-8b63-11d3-989d-001083010e9b}= new nsIURIContentListener();
-nsXPCComponents_InterfacesByID.prototype.{ce8f744e-d5a5-41b3-911f-0fee3008b64e}= new nsIXPIProgressDialog();
-nsXPCComponents_InterfacesByID.prototype.{3225ca54-d7e1-4ff5-8ee9-091b0bfcda1f}= new nsISelectionPrivate();
-nsXPCComponents_InterfacesByID.prototype.{3c14a022-6f4e-11d5-9b46-000064657374}= new nsISchemaType();
-nsXPCComponents_InterfacesByID.prototype.{339a8c7a-552e-4cbc-8d96-8370a3939358}= new nsIDOMSVGZoomEvent();
-nsXPCComponents_InterfacesByID.prototype.{d94ac0a0-bb18-46b8-844e-84159064b0bd}= new nsICancelable();
-nsXPCComponents_InterfacesByID.prototype.{f51ebade-8b1a-11d3-aae7-0010830123b4}= new nsIDOMAbstractView();
-nsXPCComponents_InterfacesByID.prototype.{c7e410d1-85f2-11d3-9f63-006008a6efe9}= new nsIJARChannel();
-nsXPCComponents_InterfacesByID.prototype.{59e7e77a-38e4-11d4-8cf5-0060b0fc14a3}= new nsIMemory();
-nsXPCComponents_InterfacesByID.prototype.{b9b6ec85-f69f-4a5a-a96a-8a7a8f07e2b4}= new nsIDOMLSSerializerFilter();
-nsXPCComponents_InterfacesByID.prototype.{204ee610-8765-11d3-90cf-0040056a906e}= new nsIBinaryOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{0bbae65c-1dde-11d9-8c46-000a95dc234c}= new nsIDOMDOMStringList();
-nsXPCComponents_InterfacesByID.prototype.{da19c86d-08aa-421c-8c37-12ec2ba5a2c3}= new nsIImageLoadingContent();
-nsXPCComponents_InterfacesByID.prototype.{35a88f54-f267-4414-92a7-191f6454ab52}= new nsIExceptionService();
-nsXPCComponents_InterfacesByID.prototype.{e6f68040-c7ec-11d3-8cda-0060b0fc14a3}= new nsIFileOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{3c14a030-6f4e-11d5-9b46-000064657374}= new nsISchemaAnyAttribute();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90bc-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSMediaRule();
-nsXPCComponents_InterfacesByID.prototype.{e72f94b2-5f85-11d4-9877-00c04fa0cf4a}= new nsIErrorService();
-nsXPCComponents_InterfacesByID.prototype.{17c4e0aa-1dd2-11b2-8029-bf6f668de500}= new nsIRDFInMemoryDataSource();
-nsXPCComponents_InterfacesByID.prototype.{3b8aae33-80e2-4efa-99c8-a6c5b99f76ea}= new nsIFeed();
-nsXPCComponents_InterfacesByID.prototype.{51341ed4-a3bf-4fd5-ae17-5fd3ec59dcab}= new nsIContentViewer_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{fdf23301-4a94-11d3-9ce4-9960496c41bc}= new nsIEditorMailSupport();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a4-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLPreElement();
-nsXPCComponents_InterfacesByID.prototype.{b3abb5c6-a0c4-47e9-84f6-edb873042769}= new nsIDOMNavigator_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{f6d00ee7-defc-4101-b2dc-e72cf4c37c3c}= new gfxIImageFrame();
-nsXPCComponents_InterfacesByID.prototype.{34d268d6-1dd2-11b2-9d63-83a5e0ada290}= new nsIAccessibleSelectable();
-nsXPCComponents_InterfacesByID.prototype.{b135f602-0bfe-11d5-a73c-f0e420e8293c}= new nsPICommandUpdater();
-nsXPCComponents_InterfacesByID.prototype.{9e1fd9f2-9727-4926-85cd-f16c375bba6d}= new nsIDownload();
-nsXPCComponents_InterfacesByID.prototype.{007b8358-1dd2-11b2-8924-d209efc3f124}= new nsIDOMXULControlElement();
-nsXPCComponents_InterfacesByID.prototype.{93ebb030-f82d-4f8e-b133-d1b5abb73cf3}= new nsIDOMSVGAnimatedNumberList();
-nsXPCComponents_InterfacesByID.prototype.{2d40b291-01e1-11d4-9d0e-0050040007b2}= new nsIDocumentCharsetInfo();
-nsXPCComponents_InterfacesByID.prototype.{ea2ce7a0-5c3d-11d4-90c2-0050041caf44}= new nsIContentViewerContainer();
-nsXPCComponents_InterfacesByID.prototype.{e9b0f89b-0529-4d96-98a8-eb5b2b9a8383}= new nsIAppStartup();
-nsXPCComponents_InterfacesByID.prototype.{d3493503-7854-46ed-8284-8af54a847efb}= new nsICookie2();
-nsXPCComponents_InterfacesByID.prototype.{8af0fa40-598d-11d3-806a-00600811a9c3}= new nsIBrowserInstance();
-nsXPCComponents_InterfacesByID.prototype.{e38ab577-786e-4a7f-936b-7ae4c7d877b2}= new nsIProtocolProxyService();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9071-15b3-11d2-932e-00805f8add32}= new nsIDOMCDATASection();
-nsXPCComponents_InterfacesByID.prototype.{ca29fff1-a677-493c-9d80-3dc60432212b}= new nsIJVMConfigManager();
-nsXPCComponents_InterfacesByID.prototype.{0458dac7-65de-11d5-9b42-00104bdf5339}= new nsISOAPPortBinding();
-nsXPCComponents_InterfacesByID.prototype.{49439df2-b3d2-441c-bf62-866bdaf56fd2}= new nsIContentHandler();
-nsXPCComponents_InterfacesByID.prototype.{5caaa64e-e191-11d8-842a-000393b6661a}= new nsISchemaComponent();
-nsXPCComponents_InterfacesByID.prototype.{ff328fe4-41d5-4b78-82ab-6b1fbc7930af}= new nsIPrintSettingsWin();
-nsXPCComponents_InterfacesByID.prototype.{8b193f0a-cf0c-4b5f-b4e3-a388df6f07b2}= new nsIDownloadProgressListener();
-nsXPCComponents_InterfacesByID.prototype.{1fb33f44-f522-4880-a225-4b75d09b04c6}= new nsIMozIconURI();
-nsXPCComponents_InterfacesByID.prototype.{494fac3c-64f4-41b8-b209-b4ada899613b}= new nsISHistoryInternal();
-nsXPCComponents_InterfacesByID.prototype.{2efd4a40-a5e1-11d4-9589-0020183bf181}= new nsIURIFixup();
-nsXPCComponents_InterfacesByID.prototype.{0a797fdc-8b60-4cb3-a0da-4c898832ba30}= new nsIDOMSVGPathSegLinetoHorizontalRel();
-nsXPCComponents_InterfacesByID.prototype.{8cdd8baa-1dd2-11b2-909a-f0178da5c5ff}= new nsIXPIDialogService();
-nsXPCComponents_InterfacesByID.prototype.{b22907b1-ee93-11d2-8d50-000064657374}= new nsIEditActionListener();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90ae-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLAppletElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9070-15b3-11d2-932e-00805f8add32}= new nsIDOMAttr();
-nsXPCComponents_InterfacesByID.prototype.{a6cf907e-15b3-11d2-932e-00805f8add32}= new nsIDOMNotation();
-nsXPCComponents_InterfacesByID.prototype.{eea90d43-b059-11d2-915e-c12b696c9333}= new nsIProxyObjectManager();
-nsXPCComponents_InterfacesByID.prototype.{cf39c2b0-1e4b-11d5-a549-0010a401eb10}= new nsIPassword();
-nsXPCComponents_InterfacesByID.prototype.{50e07b0a-f338-4da3-bcdb-f4bb0db94dbe}= new nsIProfileLock();
-nsXPCComponents_InterfacesByID.prototype.{0583a2ea-ab19-40e1-8be4-5e9b2f275560}= new nsIDOMHTMLCanvasElement();
-nsXPCComponents_InterfacesByID.prototype.{35bd8ed5-5f34-4126-8c4f-38ba01681836}= new nsISelectElement();
-nsXPCComponents_InterfacesByID.prototype.{33c60e14-5150-4876-9a96-2732557e6895}= new nsIPopupBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{75125d55-37ee-4575-b9b5-f33bfa68c2a1}= new nsIFind();
-nsXPCComponents_InterfacesByID.prototype.{13ef3d54-1dd1-4a5c-a8d5-a04a327fb9b6}= new nsIXTFPrivate();
-nsXPCComponents_InterfacesByID.prototype.{b5f39ed4-1dd1-11b2-9d00-fd54d6f54962}= new nsIPlaintextEditor();
-nsXPCComponents_InterfacesByID.prototype.{8da01646-1dd2-11b2-98a7-c7009045be7e}= new nsIForwardIterator();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9105-15b3-11d2-932e-00805f8add32}= new nsIDOMNSHTMLSelectElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a9-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLModElement();
-nsXPCComponents_InterfacesByID.prototype.{4eb9adac-afaf-4b8a-8640-7340863c1587}= new nsIDOMCSSMozDocumentRule();
-nsXPCComponents_InterfacesByID.prototype.{5d1cd1e6-4a14-4056-acc0-2f78c1672898}= new nsIDOMSVGEllipseElement();
-nsXPCComponents_InterfacesByID.prototype.{a2dd25a4-1dd1-11b2-bda6-ed525acd4c35}= new jsdIContext();
-nsXPCComponents_InterfacesByID.prototype.{45d7d2b4-2d98-4cdb-850f-860bc45deeae}= new nsIDOMPopupBlockedEvent_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{13f236c0-47f8-11d5-b6a3-009027446e84}= new nsIDOMDocumentTraversal();
-nsXPCComponents_InterfacesByID.prototype.{72152f7f-7e8d-43fd-8477-3f29ae8d240d}= new nsIXTFAttributeHandler();
-nsXPCComponents_InterfacesByID.prototype.{7b4a099f-6f6e-4565-977b-fb622adbff49}= new inIFlasher();
-nsXPCComponents_InterfacesByID.prototype.{9188bc86-f92e-11d2-81ef-0060083a0bcf}= new nsISupportsWeakReference();
-nsXPCComponents_InterfacesByID.prototype.{e0be7cbb-81c1-4663-8f95-109d96a60b6b}= new nsIDOMSVGElement();
-nsXPCComponents_InterfacesByID.prototype.{090ecc19-b7cb-4f47-ae47-ed68d4926249}= new nsIDOM3DocumentEvent();
-nsXPCComponents_InterfacesByID.prototype.{1d297320-27f7-11d3-be01-000064657374}= new nsIRDFRemoteDataSource();
-nsXPCComponents_InterfacesByID.prototype.{c26e1779-604b-4bad-8a29-02d2a2113769}= new nsIDOMSVGPathSegArcAbs();
-nsXPCComponents_InterfacesByID.prototype.{6852d9a6-1dd2-11b2-a29d-cd7977a91b1b}= new nsIDOMXULButtonElement();
-nsXPCComponents_InterfacesByID.prototype.{e03e6c5e-0d84-4c0b-8739-e6b8d51922de}= new nsIClipboardDragDropHooks();
-nsXPCComponents_InterfacesByID.prototype.{71735f62-ac5c-4236-9a1f-5ffb280d531c}= new nsIDOMRect();
-nsXPCComponents_InterfacesByID.prototype.{486755db-627a-4678-a21b-f6a63bb9c56a}= new nsICRLManager();
-nsXPCComponents_InterfacesByID.prototype.{ccc5b3ad-3e67-4e3d-97e1-b06b2e96fef8}= new imgIEncoder();
-nsXPCComponents_InterfacesByID.prototype.{402aee39-653c-403f-8be1-6d1824223bf9}= new nsIX509Cert3();
-nsXPCComponents_InterfacesByID.prototype.{803e510b-4b27-4ba2-a16d-bb5fa953c166}= new nsISearchEngine();
-nsXPCComponents_InterfacesByID.prototype.{ba913c5c-13d6-41eb-83c1-de2f4165a516}= new nsIUrlListManagerCallback();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9079-15b3-11d2-932e-00805f8add32}= new nsIDOMEntity();
-nsXPCComponents_InterfacesByID.prototype.{75506f87-b504-11d5-a7f2-ca108ab8b6fc}= new nsIDOMXPathNamespace();
-nsXPCComponents_InterfacesByID.prototype.{ccc48346-429d-4931-94dc-beb1afcea292}= new nsIBookmarksService();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a8-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLHRElement();
-nsXPCComponents_InterfacesByID.prototype.{d4214e91-fb94-11d2-bdd8-00104bde6048}= new nsIRDFContainerUtils();
-nsXPCComponents_InterfacesByID.prototype.{3b07f591-e8e1-11d4-9882-00c04fa02f40}= new nsISHistoryListener();
-nsXPCComponents_InterfacesByID.prototype.{9c5d3c58-1dd1-11b2-a1c9-f3699284657a}= new nsIWebBrowserFocus();
-nsXPCComponents_InterfacesByID.prototype.{e02b6693-6cca-11da-be43-001422106990}= new nsISAXErrorHandler();
-nsXPCComponents_InterfacesByID.prototype.{ad929b96-ef81-4002-b596-c6a8b3a878e9}= new nsIDOMSVGPathSegCurvetoCubicAbs();
-nsXPCComponents_InterfacesByID.prototype.{b0338f6c-ded3-4c39-a953-56e8bae494f5}= new nsIHTMLObjectResizer();
-nsXPCComponents_InterfacesByID.prototype.{a1173d91-4428-4829-8e3e-fe66e558f161}= new nsIXTFXULVisual();
-nsXPCComponents_InterfacesByID.prototype.{d1f28e94-3a6e-4050-a5f5-2e81b1fc2a43}= new nsIInputStreamCallback();
-nsXPCComponents_InterfacesByID.prototype.{e13567c0-4a1c-11d3-9890-006008962422}= new nsISupportsPRUint64();
-nsXPCComponents_InterfacesByID.prototype.{8b5314ba-db01-11d2-96ce-0060b0fb9956}= new nsIClipboard();
-nsXPCComponents_InterfacesByID.prototype.{78fd16c2-bdfb-4b1d-8738-d536d0a8f430}= new inIDOMUtils();
-nsXPCComponents_InterfacesByID.prototype.{691cb864-0a7e-448c-98ee-4a7f359cf145}= new nsIXmlRpcFault();
-nsXPCComponents_InterfacesByID.prototype.{fae4e9a8-1dd1-11b2-b53c-8f3aa1bbf8f5}= new nsIDirIndexListener();
-nsXPCComponents_InterfacesByID.prototype.{58e330c4-7b48-11d2-98b9-00805f297d89}= new nsITransactionListener();
-nsXPCComponents_InterfacesByID.prototype.{91f1c3ec-73a0-4bf0-bdc5-348a1f181b0e}= new nsICookiePermission();
-nsXPCComponents_InterfacesByID.prototype.{9e61c7c8-8698-4477-9971-0923513919bd}= new nsIDOMLSResourceResolver();
-nsXPCComponents_InterfacesByID.prototype.{3bb1a3c8-3073-41e0-9a26-a7671955fb65}= new nsIContentPolicy();
-nsXPCComponents_InterfacesByID.prototype.{99a0882d-2ff9-4659-9952-9ac531ba5592}= new nsIHelperAppLauncher();
-nsXPCComponents_InterfacesByID.prototype.{6cbbbf64-212f-4ef8-9ad4-7240dbb8d6ac}= new nsIDOMNSEventTarget();
-nsXPCComponents_InterfacesByID.prototype.{2f977d4e-5485-11d4-87e2-0010a4e75ef2}= new nsIRelativeFilePref();
-nsXPCComponents_InterfacesByID.prototype.{2efb7dc9-e7b3-44b7-8557-60b1485cfd6e}= new nsISidebar_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{3cc75360-484a-11d2-bc16-00805f912fe7}= new nsIRDFObserver();
-nsXPCComponents_InterfacesByID.prototype.{b712418b-376f-4f75-b156-5d9ad99fe51f}= new nsIDOMPageTransitionEvent();
-nsXPCComponents_InterfacesByID.prototype.{69e5df00-7b8b-11d3-af61-00a024ffc08c}= new nsIWebBrowser();
-nsXPCComponents_InterfacesByID.prototype.{4da56f10-99fe-11d2-8ebb-00805f29f370}= new nsIRDFXMLSource();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9078-15b3-11d2-932e-00805f8add32}= new nsIDOMElement();
-nsXPCComponents_InterfacesByID.prototype.{8cecf236-1dd2-11b2-893c-f9848956eaec}= new nsIRegistryEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{6d43b1b4-efb6-426d-9e65-4420c3e24688}= new nsIDOMSVGTextElement();
-nsXPCComponents_InterfacesByID.prototype.{05593438-1b83-4517-864f-3cea3d37a266}= new jsdIFilter();
-nsXPCComponents_InterfacesByID.prototype.{afc36593-5787-4420-93d9-b2c0ccbf0cad}= new nsIHTMLEditor();
-nsXPCComponents_InterfacesByID.prototype.{3c14a026-6f4e-11d5-9b46-000064657374}= new nsISchemaUnionType();
-nsXPCComponents_InterfacesByID.prototype.{5a9b4770-9fcb-4307-a12e-4b6708e78b97}= new nsIRDFPropagatableDataSource();
-nsXPCComponents_InterfacesByID.prototype.{6a7ddb40-8a9e-4576-8ad1-71c5641d8780}= new nsIContentViewer();
-nsXPCComponents_InterfacesByID.prototype.{c8188620-1dd1-11b2-bc88-df8440498add}= new nsIDOMJSWindow();
-nsXPCComponents_InterfacesByID.prototype.{bfa6e42b-bc9d-404d-8688-729fdbfff801}= new nsIDOMSVGAnimatedLengthList();
-nsXPCComponents_InterfacesByID.prototype.{e086e1e2-40ff-4193-8b8c-bd548babe70d}= new nsIStreamConverterService();
-nsXPCComponents_InterfacesByID.prototype.{652ecec6-d40b-45b6-afef-641d6c63a35b}= new nsIFastLoadReadControl();
-nsXPCComponents_InterfacesByID.prototype.{ebe55080-c8a9-11d5-a73c-dd620d6e04bc}= new nsICommandController();
-nsXPCComponents_InterfacesByID.prototype.{255602ea-c31f-4d29-8f35-905ead3f76f4}= new nsIFileProtocolHandler();
-nsXPCComponents_InterfacesByID.prototype.{1222e6f0-a5e3-11d2-8b7c-00805f8a7db6}= new nsILocalSearchService();
-nsXPCComponents_InterfacesByID.prototype.{cf2aca0c-4fb1-42e4-8a54-23e832cb2a98}= new nsIAutoCompleteController();
-nsXPCComponents_InterfacesByID.prototype.{0458dac5-65de-11d5-9b42-00104bdf5339}= new nsIWSDLLoader();
-nsXPCComponents_InterfacesByID.prototype.{56c35506-f14b-11d3-99d3-ddbfac2ccf65}= new nsIPrefBranch();
-nsXPCComponents_InterfacesByID.prototype.{f6134681-f28b-11d2-8360-c90899049c3c}= new nsIDOMPlugin();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90e2-15b3-11d2-932e-00805f8add32}= new nsISelectionListener();
-nsXPCComponents_InterfacesByID.prototype.{dcbce63c-1dd1-11b2-b94d-91f6d49a3161}= new nsIMIMEInputStream();
-nsXPCComponents_InterfacesByID.prototype.{3722a5b9-5323-4ed0-bb1a-8299f27a4e89}= new nsIWindowDataSource();
-nsXPCComponents_InterfacesByID.prototype.{e9c4cd4f-cd41-43d0-bf3b-48abb9cde90f}= new nsIXMLContentBuilder();
-nsXPCComponents_InterfacesByID.prototype.{359f7990-d4e9-11d3-a1a5-0050041caf44}= new nsIStreamLoaderObserver();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9085-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLElement();
-nsXPCComponents_InterfacesByID.prototype.{27c10dca-2efc-416b-ae36-9794380a661e}= new nsIXTFElementFactory();
-nsXPCComponents_InterfacesByID.prototype.{dc2ff152-85cb-474e-b4c2-86a3d48cf4d0}= new nsIPasswordManagerInternal();
-nsXPCComponents_InterfacesByID.prototype.{41d979dc-ea03-4235-86ff-1e3c090c5630}= new nsIStyleSheetService();
-nsXPCComponents_InterfacesByID.prototype.{a8fefe40-52bc-11d4-9a57-000064657374}= new nsISOAPCall();
-nsXPCComponents_InterfacesByID.prototype.{f5323a76-c8f7-4c65-8d0c-1250e969c7d5}= new nsICharsetConverterManager();
-nsXPCComponents_InterfacesByID.prototype.{5d052835-8cb0-442c-9754-a8e616db1f89}= new nsIDOMSVGTextPositioningElement();
-nsXPCComponents_InterfacesByID.prototype.{8d3f5a9d-118d-4548-a137-cf7718679069}= new nsIBrowserHandler();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90cd-15b3-11d2-932e-00805f8add32}= new nsIDOMNSDocument();
-nsXPCComponents_InterfacesByID.prototype.{44e8b2c8-1ecb-4a63-8b23-3e3500c34f32}= new nsIInputStreamTee();
-nsXPCComponents_InterfacesByID.prototype.{524564b0-13a3-459b-bbec-ad66aea9f789}= new nsIDOMSVGTitleElement();
-nsXPCComponents_InterfacesByID.prototype.{27e60cd8-6d63-4d87-b7d1-82c09e0c7363}= new nsIXmlRpcClientListener();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9114-15b3-11d2-932e-00805f8add32}= new nsIFontEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{b148eed1-236d-11d3-b35c-00a0cc3c1cde}= new nsISound();
-nsXPCComponents_InterfacesByID.prototype.{93a28ba2-7e22-11d9-9b6f-000a95d535fa}= new nsIAppShellService();
-nsXPCComponents_InterfacesByID.prototype.{eb422132-514e-4a1c-81ec-b84a5df5fb96}= new nsIDOMSVGPathSegCurvetoCubicSmoothAbs();
-nsXPCComponents_InterfacesByID.prototype.{cfb5b821-9016-4a79-9d98-87b57c3ea0c7}= new nsIDOMDOMConfiguration();
-nsXPCComponents_InterfacesByID.prototype.{173562f0-2173-11d5-a54c-0010a401eb10}= new nsIPasswordManager();
-nsXPCComponents_InterfacesByID.prototype.{8a44bdf9-d1a5-4734-bd5a-34ed7fe564c2}= new nsIPKCS11Module();
-nsXPCComponents_InterfacesByID.prototype.{948a0023-e3a7-11d2-96cf-0060b0fb9956}= new nsIFormatConverter();
-nsXPCComponents_InterfacesByID.prototype.{c63a055a-a676-4e71-bf3c-6cfa11082018}= new nsIChannel();
-nsXPCComponents_InterfacesByID.prototype.{4f45513e-55e5-411c-a844-e899057026c1}= new nsIDOMParser();
-nsXPCComponents_InterfacesByID.prototype.{a32826ff-9e56-4425-a811-97a8dba64ff5}= new imgILoader();
-nsXPCComponents_InterfacesByID.prototype.{fd54c8c4-2eb4-4849-8df6-79985c2491da}= new nsIDOMSVGAnimatedTransformList();
-nsXPCComponents_InterfacesByID.prototype.{6d340848-9bc1-49a3-9073-99932bbc2a11}= new nsIBrowserGlue();
-nsXPCComponents_InterfacesByID.prototype.{0e61f3b2-34d7-4c79-bfdc-4860bc7341b7}= new nsIExternalProtocolHandler();
-nsXPCComponents_InterfacesByID.prototype.{a8b607fd-24b6-4a8c-9a89-d9b24f8e2592}= new nsIXTFElement();
-nsXPCComponents_InterfacesByID.prototype.{80faf095-c807-4558-a2cc-185ed70754ea}= new nsIFilePicker();
-nsXPCComponents_InterfacesByID.prototype.{283ee646-1aef-11d4-98b3-00c04fa0ce9a}= new nsIPropertyElement();
-nsXPCComponents_InterfacesByID.prototype.{8793370a-311f-11d4-9876-00c04fa0cf4a}= new nsIStandardURL();
-nsXPCComponents_InterfacesByID.prototype.{951700f0-fed0-11d2-bdd9-00104bde6048}= new nsIRDFPurgeableDataSource();
-nsXPCComponents_InterfacesByID.prototype.{0c2dc80f-7aa4-467a-9454-b89dba0e0779}= new nsIExtendedExpatSink();
-nsXPCComponents_InterfacesByID.prototype.{8429d350-1040-4661-8b71-f2a6ba455980}= new nsISeekableStream();
-nsXPCComponents_InterfacesByID.prototype.{22496a00-227b-11db-a98b-0800200c9a66}= new nsISessionStartup();
-nsXPCComponents_InterfacesByID.prototype.{0659cb81-faad-11d2-8e19-b206620a657c}= new nsIWindowMediator();
-nsXPCComponents_InterfacesByID.prototype.{df15f850-5d98-11d4-9f4d-0010a4053fd0}= new nsIDocumentLoaderFactory();
-nsXPCComponents_InterfacesByID.prototype.{fb683e76-d42b-41a4-8ae6-65a6c2b146e5}= new nsIStreamListenerTee();
-nsXPCComponents_InterfacesByID.prototype.{06b42e9d-61b5-400d-9561-b43f0e9883c0}= new nsIDOMNSCSS2Properties();
-nsXPCComponents_InterfacesByID.prototype.{6c143dac-bd65-4333-b594-7ed1e748e0f9}= new nsINSSCertCache();
-nsXPCComponents_InterfacesByID.prototype.{7e1aa658-6e3f-4521-9946-9685a169f764}= new nsISyncStreamListener();
-nsXPCComponents_InterfacesByID.prototype.{10e8893d-ddf5-45d1-8872-615d72065fb4}= new nsIDOMLSParserFilter();
-nsXPCComponents_InterfacesByID.prototype.{b6fe3d78-1dd1-11b2-9058-ced9016984c8}= new nsIPKIParamBlock();
-nsXPCComponents_InterfacesByID.prototype.{b0196fc7-1913-441a-882a-453c0d8b89b8}= new nsIScriptError();
-nsXPCComponents_InterfacesByID.prototype.{b6c2f9e1-53a0-45f2-a2b8-fe37861fe8a8}= new nsIXULWindow();
-nsXPCComponents_InterfacesByID.prototype.{ea99ad5b-cc67-4efb-97c9-2ef620a59f2a}= new nsIEventTarget();
-nsXPCComponents_InterfacesByID.prototype.{7281076d-cf37-464a-815e-698235802604}= new nsIURLParser();
-nsXPCComponents_InterfacesByID.prototype.{aeb8936f-219c-4d3c-8385-d9382daa551a}= new mozISpellI18NManager();
-nsXPCComponents_InterfacesByID.prototype.{e701dfd8-1dd1-11b2-a172-ffa6cc6156ad}= new nsIX509CertValidity();
-nsXPCComponents_InterfacesByID.prototype.{3c14a031-6f4e-11d5-9b46-000064657374}= new nsISchemaFacet();
-nsXPCComponents_InterfacesByID.prototype.{7392d032-5371-11d3-994e-00805fd26fee}= new nsIModule();
-nsXPCComponents_InterfacesByID.prototype.{5fdf8480-1f98-11d4-8077-00600811a9c3}= new nsINativeAppSupport();
-nsXPCComponents_InterfacesByID.prototype.{94558064-140c-41a1-9cc9-4e9cdbf5c124}= new nsIDOMSVGMetadataElement();
-nsXPCComponents_InterfacesByID.prototype.{f6134683-f28b-11d2-8360-c90899049c3c}= new nsIDOMMimeTypeArray();
-nsXPCComponents_InterfacesByID.prototype.{8458a740-d5dc-11d2-92fb-00e09805570f}= new nsIComponentManagerObsolete();
-nsXPCComponents_InterfacesByID.prototype.{a6cf909e-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLLIElement();
-nsXPCComponents_InterfacesByID.prototype.{002286a8-494b-43b3-8ddd-49e3fc50622b}= new nsIWindowWatcher();
-nsXPCComponents_InterfacesByID.prototype.{ba8bf582-1dd1-11b2-898c-f40246bc9a63}= new nsIASN1Object();
-nsXPCComponents_InterfacesByID.prototype.{7e46bc35-fb7d-4b45-ab35-82fd61015380}= new nsIPrintProgress();
-nsXPCComponents_InterfacesByID.prototype.{6e48c500-8682-4730-add6-7db693b9e7ba}= new nsIXPTLoaderSink();
-nsXPCComponents_InterfacesByID.prototype.{5a92782c-a2e8-4dd3-b18a-33acc3af4fd7}= new nsIWindowsShellService();
-nsXPCComponents_InterfacesByID.prototype.{ff751edc-8b02-aae7-0010-8301838a3123}= new nsIDOMMouseEvent();
-nsXPCComponents_InterfacesByID.prototype.{e36c5250-4a1c-11d3-9890-006008962422}= new nsISupportsPRInt32();
-nsXPCComponents_InterfacesByID.prototype.{9849c4bf-5197-4d22-baa8-e3b44a1703d2}= new nsIApplicationUpdateService();
-nsXPCComponents_InterfacesByID.prototype.{033a1470-8b2a-11d3-af88-00a024ffc08c}= new nsIInterfaceRequestor();
-nsXPCComponents_InterfacesByID.prototype.{b9a2371f-70e9-4657-b0e8-28e15b40857e}= new nsIDOMLSProgressEvent();
-nsXPCComponents_InterfacesByID.prototype.{58e330c2-7b48-11d2-98b9-00805f297d89}= new nsITransactionManager();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9091-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLOptGroupElement();
-nsXPCComponents_InterfacesByID.prototype.{080d2001-f91e-11d4-a73c-f9242928207c}= new nsICommandManager();
-nsXPCComponents_InterfacesByID.prototype.{7b67747e-a8c4-4832-80c7-39ebb0c11f94}= new nsIIDNService();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9089-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTitleElement();
-nsXPCComponents_InterfacesByID.prototype.{93276790-3daf-11d5-b67d-000064657374}= new nsITimelineService();
-nsXPCComponents_InterfacesByID.prototype.{2d00b1bb-8b21-4a63-bcc6-7213f513ac2e}= new nsIUnicharOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{91d82105-7c62-4f8b-9779-154277c0ee90}= new nsIStackFrame();
-nsXPCComponents_InterfacesByID.prototype.{4d12e540-83d7-11d5-90ed-0010a4e73d9a}= new nsIDataType();
-nsXPCComponents_InterfacesByID.prototype.{412880c8-6c36-48d8-bf8f-84f91f892503}= new nsIHttpActivityObserver();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90c2-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSStyleSheet();
-nsXPCComponents_InterfacesByID.prototype.{1f8fe77e-1dd2-11b2-8dd2-e55f8d3465b8}= new nsIDOMCryptoDialogs();
-nsXPCComponents_InterfacesByID.prototype.{988b2de4-137b-4bb8-a15e-fe94038e9cf3}= new nsIDOMSVGGradientElement();
-nsXPCComponents_InterfacesByID.prototype.{aaab6710-0f2c-11d5-a53b-0010a401eb10}= new nsICookieManager();
-nsXPCComponents_InterfacesByID.prototype.{4b71113a-cb0d-479f-8ed5-01daeba2e8d4}= new nsIConverterOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{400f5468-97e7-4d2b-9c65-a82aecc7ae82}= new nsIInputStreamPump();
-nsXPCComponents_InterfacesByID.prototype.{2a31a3a0-be68-40af-9f64-914192f0fba2}= new nsIDOMLSParser();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90be-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSStyleDeclaration();
-nsXPCComponents_InterfacesByID.prototype.{7e225e5f-711c-11d7-9fae-000393636592}= new nsIFlavorDataProvider();
-nsXPCComponents_InterfacesByID.prototype.{063d4a4e-1dd2-11b2-a365-cbaf1651f140}= new nsISOAPHeaderBlock();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b5-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTableSectionElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf907c-15b3-11d2-932e-00805f8add32}= new nsIDOMNode();
-nsXPCComponents_InterfacesByID.prototype.{f1b74aae-5661-4753-a21c-66dd644afebc}= new imgICache();
-nsXPCComponents_InterfacesByID.prototype.{18967370-921a-4245-8158-a279b190abca}= new nsIDOMSVGZoomAndPan();
-nsXPCComponents_InterfacesByID.prototype.{55e9c181-2476-47cf-97f8-efdaaf7b6f7a}= new nsIDOMStorageWindow();
-nsXPCComponents_InterfacesByID.prototype.{dec2e4e0-4a1c-11d3-9890-006008962422}= new nsISupportsPRUint8();
-nsXPCComponents_InterfacesByID.prototype.{9af0d129-b366-4aa8-b7d8-8dce93148d91}= new nsIDOMSVGStyleElement();
-nsXPCComponents_InterfacesByID.prototype.{5cf6420c-74f3-4a7c-bc1d-f5756d79ea07}= new nsIURILoader();
-nsXPCComponents_InterfacesByID.prototype.{d4b123df-51ee-48b1-a663-002180e60d3b}= new nsICommandLineHandler();
-nsXPCComponents_InterfacesByID.prototype.{84991d1b-b010-4127-9e71-82017559abff}= new nsIDocNavStartProgressListener();
-nsXPCComponents_InterfacesByID.prototype.{d1b54831-ac07-11d2-805e-00600811a9c3}= new nsIRegistryNode();
-nsXPCComponents_InterfacesByID.prototype.{8b5314bc-db01-11d2-96ce-0060b0fb9956}= new nsITransferable();
-nsXPCComponents_InterfacesByID.prototype.{d39fd2b4-3978-45d2-a4be-ba448171b61b}= new nsIEditingSession();
-nsXPCComponents_InterfacesByID.prototype.{0e80f152-d676-4fba-8862-9dc4eb761442}= new nsIAccessibilityService();
-nsXPCComponents_InterfacesByID.prototype.{56863a67-bd69-42de-9f40-583e625b457d}= new nsIUpdatePatch();
-nsXPCComponents_InterfacesByID.prototype.{eda4f520-67f7-484b-a691-8c3226a5b0a6}= new nsITransportEventSink();
-nsXPCComponents_InterfacesByID.prototype.{55c7af7b-1a64-40bf-87eb-2c2cbee0491b}= new nsIDOMCustomEvent();
-nsXPCComponents_InterfacesByID.prototype.{dfacb090-4a1c-11d3-9890-006008962422}= new nsISupportsPRUint16();
-nsXPCComponents_InterfacesByID.prototype.{d39982d6-da4f-4a27-8d91-f9c7b179aa33}= new nsIUrlListManager();
-nsXPCComponents_InterfacesByID.prototype.{0458dac2-65de-11d5-9b42-00104bdf5339}= new nsIWSDLOperation();
-nsXPCComponents_InterfacesByID.prototype.{3f24610d-1e1f-4151-9d2e-239884742324}= new nsIWebProgressListener2();
-nsXPCComponents_InterfacesByID.prototype.{4c2e02ae-1dd2-11b2-b1cd-c79dea3d46db}= new nsISOAPDecoder();
-nsXPCComponents_InterfacesByID.prototype.{5556997e-d816-4218-8b54-803d4261206e}= new nsISAXXMLReader();
-nsXPCComponents_InterfacesByID.prototype.{d064a04c-9cee-4319-be31-64d565bccba9}= new nsIRecyclingAllocator();
-nsXPCComponents_InterfacesByID.prototype.{2122421c-1326-41db-87f8-25519d8a12cb}= new nsIWebServiceProxy();
-nsXPCComponents_InterfacesByID.prototype.{eb1a5d31-ab33-11d2-8ec6-00805f29f370}= new nsIRDFXMLSink();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90ba-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLIFrameElement();
-nsXPCComponents_InterfacesByID.prototype.{46b4015c-0121-11d4-9877-00c04fa0d27a}= new nsIXULBrowserWindow();
-nsXPCComponents_InterfacesByID.prototype.{4c12af24-0fc2-4fe7-b71d-5d6b41d463c1}= new nsIDOMSVGPointList();
-nsXPCComponents_InterfacesByID.prototype.{6c1034f0-1dd2-11b2-aa14-e6657ed7bb0b}= new nsIUserInfo();
-nsXPCComponents_InterfacesByID.prototype.{49c1a11d-f5d2-4f09-8262-551e64908ada}= new nsICacheEntryDescriptor();
-nsXPCComponents_InterfacesByID.prototype.{91375f52-20e6-4757-9835-eb04fabe5498}= new nsIHTMLAbsPosEditor();
-nsXPCComponents_InterfacesByID.prototype.{2ee5520b-6593-43c1-b660-4885939a6b68}= new nsIXTFVisual();
-nsXPCComponents_InterfacesByID.prototype.{18c36504-9a4c-4ac3-8494-bd05e00ae27f}= new nsIAutoCompleteObserver();
-nsXPCComponents_InterfacesByID.prototype.{a61f0a62-ae0a-4382-b474-d259442ca80c}= new nsIFormHistory2();
-nsXPCComponents_InterfacesByID.prototype.{37ef2e71-edef-46c7-acd9-f0b6e0b15083}= new nsIFileSpec();
-nsXPCComponents_InterfacesByID.prototype.{2cc35c67-978f-42a9-a958-16e97ad2f4c8}= new nsIPasswordInternal();
-nsXPCComponents_InterfacesByID.prototype.{1c399d06-1dd2-11b2-bc58-c87cbcacdb78}= new nsISecurityWarningDialogs();
-nsXPCComponents_InterfacesByID.prototype.{843afaa8-1dd2-11b2-8b0d-9b5d16fe64ea}= new nsISOAPBlock();
-nsXPCComponents_InterfacesByID.prototype.{7b80eebc-c98e-4461-8bdb-6e3b6e828890}= new nsIImageDocument();
-nsXPCComponents_InterfacesByID.prototype.{cbb0baeb-5fcb-408b-a2be-9f8fc98d0af1}= new nsITransport();
-nsXPCComponents_InterfacesByID.prototype.{99ec6694-535f-11d4-9a58-000064657374}= new nsISOAPFault();
-nsXPCComponents_InterfacesByID.prototype.{a94ec640-0bba-11d2-b326-00805f8a3859}= new nsIScriptContextOwner();
-nsXPCComponents_InterfacesByID.prototype.{f102caf6-1dd1-11b2-bd43-c1dbacb95a98}= new jsdICallHook();
-nsXPCComponents_InterfacesByID.prototype.{9fe91a61-3048-40e3-99ef-e39ab946ae0b}= new nsISOAPEncodingRegistry();
-nsXPCComponents_InterfacesByID.prototype.{3275b2cd-af6d-429a-80d7-f0c5120342ac}= new nsICategoryManager();
-nsXPCComponents_InterfacesByID.prototype.{948defaa-1dd1-11b2-89f6-8ce81f5ebda9}= new nsIBidirectionalIterator();
-nsXPCComponents_InterfacesByID.prototype.{2f276982-0d60-4377-a595-d350ba516395}= new nsIWindowMediatorListener();
-nsXPCComponents_InterfacesByID.prototype.{75506f84-b504-11d5-a7f2-ca108ab8b6fc}= new nsIDOMXPathResult();
-nsXPCComponents_InterfacesByID.prototype.{78582ad3-db1e-4aa6-a15b-b055a7846352}= new nsIXTFSVGVisualWrapper();
-nsXPCComponents_InterfacesByID.prototype.{0fecd56b-bd92-481b-a486-b8d489cdd385}= new nsIFeedGenerator();
-nsXPCComponents_InterfacesByID.prototype.{d4882ffb-e927-408b-96be-d4391b456fa9}= new nsIEditor();
-nsXPCComponents_InterfacesByID.prototype.{896d1d20-b4c4-11d2-bd93-00805f8ae3f4}= new nsIDOMHistory();
-nsXPCComponents_InterfacesByID.prototype.{6ca5e43e-9632-11d3-8cd9-0060b0fc14a3}= new nsIZipEntry();
-nsXPCComponents_InterfacesByID.prototype.{e6a75410-c93e-42bf-84ca-a5c3ec34a2f1}= new nsIWebContentHandlerRegistrar();
-nsXPCComponents_InterfacesByID.prototype.{eee6f7c9-5586-4eaf-b35c-dca987c4ffd1}= new mozIStorageStatementWrapper();
-nsXPCComponents_InterfacesByID.prototype.{6712fdd4-f978-11d4-a144-005004832142}= new nsIFontPackageProxy();
-nsXPCComponents_InterfacesByID.prototype.{757e9971-8890-478d-a53a-07f9f6f6e0d3}= new nsIDOMLSOutput();
-nsXPCComponents_InterfacesByID.prototype.{d5e3bd80-6723-4b92-b0c9-22f6162fd94f}= new nsIUnicharInputStream();
-nsXPCComponents_InterfacesByID.prototype.{702909c6-1dd2-11b2-b833-8a740f643539}= new nsIFontList();
-nsXPCComponents_InterfacesByID.prototype.{339a4eb5-dac6-4034-8c43-f4f8c645ce57}= new nsIScriptLoader();
-nsXPCComponents_InterfacesByID.prototype.{59fec127-2a0e-445b-84b5-a66dc90245db}= new nsIDOMXULSelectControlElement();
-nsXPCComponents_InterfacesByID.prototype.{6c9eb060-8c6a-11d5-90f3-0010a4e73d9a}= new nsIVariant();
-nsXPCComponents_InterfacesByID.prototype.{21dea65c-5c08-4eb1-ac82-81fe95be77b8}= new nsIDOMCanvasPattern();
-nsXPCComponents_InterfacesByID.prototype.{464484f0-568d-11d3-baf8-00805f8a5dd7}= new nsISupportsVoid();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90cf-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSImportRule();
-nsXPCComponents_InterfacesByID.prototype.{3c14a02a-6f4e-11d5-9b46-000064657374}= new nsISchemaModelGroup();
-nsXPCComponents_InterfacesByID.prototype.{41bd8784-1dd2-11b2-9553-8606958fffe1}= new nsIConsoleMessage();
-nsXPCComponents_InterfacesByID.prototype.{7a307c6c-6cc9-11da-be43-001422106990}= new nsISAXLocator();
-nsXPCComponents_InterfacesByID.prototype.{3eb4c760-dffd-4983-94a8-18bcb99100e4}= new inIDOMView();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9083-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLCollection();
-nsXPCComponents_InterfacesByID.prototype.{31d1c294-1dd2-11b2-be3a-c79230dca297}= new nsICacheDeviceInfo();
-nsXPCComponents_InterfacesByID.prototype.{29cbd45f-f2d3-4b28-b557-3ab7a61ecde4}= new nsIFeedPerson();
-nsXPCComponents_InterfacesByID.prototype.{a66b7b80-ff46-bd97-0080-5f8ae38add32}= new nsIDOMEvent();
-nsXPCComponents_InterfacesByID.prototype.{f8c08c4b-d778-49d1-a59b-866fdc500d95}= new nsICacheVisitor();
-nsXPCComponents_InterfacesByID.prototype.{91cca981-c26d-44a8-bebe-d9ed4891503a}= new nsISerializable();
-nsXPCComponents_InterfacesByID.prototype.{e800ef97-ae37-46b7-a46c-31fbe79657ea}= new nsINonBlockingAlertService();
-nsXPCComponents_InterfacesByID.prototype.{a03ca940-09be-11d5-ac5d-000064657374}= new nsICertificateDialogs();
-nsXPCComponents_InterfacesByID.prototype.{85585e12-1dd2-11b2-a930-f6929058269a}= new nsIInputIterator();
-nsXPCComponents_InterfacesByID.prototype.{5c0e4d25-a9f1-4aab-936c-2b61ed6c085f}= new nsIDOMSVGPathSegCurvetoQuadraticSmoothRel();
-nsXPCComponents_InterfacesByID.prototype.{6bd1d803-1c67-11d3-9820-ed1b357eb3c4}= new nsIInternetSearchService();
-nsXPCComponents_InterfacesByID.prototype.{0f331436-8bc8-4c68-a124-d0253a19d06f}= new nsIHttpAuthenticator();
-nsXPCComponents_InterfacesByID.prototype.{bb86037c-98c1-4c22-8e03-1e4c9fc89a8e}= new nsIAddonUpdateListener();
-nsXPCComponents_InterfacesByID.prototype.{4805e681-49b9-11d3-9ce4-ed60bd6cb5bc}= new nsIEditorLogging();
-nsXPCComponents_InterfacesByID.prototype.{52c45d86-0cc3-11d4-986e-00c04fa0cf4a}= new nsIZipReaderCache();
-nsXPCComponents_InterfacesByID.prototype.{eaa49141-c21c-4fe8-a79b-77860a3910aa}= new nsIAsyncStreamCopier();
-nsXPCComponents_InterfacesByID.prototype.{a457ea70-1dd1-11b2-9089-8fd894122084}= new nsIDOMXULLabeledControlElement();
-nsXPCComponents_InterfacesByID.prototype.{3f2f0d2c-bdea-4b5a-afc6-fcf18f66b97e}= new nsICookieAcceptDialog();
-nsXPCComponents_InterfacesByID.prototype.{73b101bd-797b-470f-9308-c24c64278bcd}= new nsIDOMSVGAnimatedEnumeration();
-nsXPCComponents_InterfacesByID.prototype.{ff9fbcd7-9517-4334-b97a-ceed78909974}= new nsIPKCS11ModuleDB();
-nsXPCComponents_InterfacesByID.prototype.{01d8c0f0-0ccc-11d4-9fdd-000064657374}= new nsISecretDecoderRingConfig();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90d0-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSUnknownRule();
-nsXPCComponents_InterfacesByID.prototype.{368a15d9-17a9-4c2b-ac3d-a35b3a22b876}= new nsIXPTLoader();
-nsXPCComponents_InterfacesByID.prototype.{36f18f12-61a9-4529-8fa9-30050bd6ac00}= new nsIDOMSVGAnimatedString();
-nsXPCComponents_InterfacesByID.prototype.{c18c49a8-62f0-4045-9884-4aa91e388f14}= new nsIContentFilter();
-nsXPCComponents_InterfacesByID.prototype.{c3681210-e191-11d8-949e-000393b6661a}= new nsIWSDLLoadListener();
-nsXPCComponents_InterfacesByID.prototype.{02eeaf95-c3db-4182-9340-222c29f68f02}= new mozIStorageStatementRow();
-nsXPCComponents_InterfacesByID.prototype.{d3ab9070-b5d2-410f-977d-36b1788de1e5}= new imgIDecoderObserver_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{43987f7b-0faa-4019-811e-42becac73fc5}= new mozISpellCheckingEngine();
-nsXPCComponents_InterfacesByID.prototype.{c3c4614c-301a-44af-ad70-936f9fd1ba5c}= new nsISOAPMessageBinding();
-nsXPCComponents_InterfacesByID.prototype.{731c6c50-67d6-11d4-9529-0020183bf181}= new nsICommandHandlerInit();
-nsXPCComponents_InterfacesByID.prototype.{57826606-3c8a-4243-9f2f-cb3fe6e91148}= new mozIStorageDataSet();
-nsXPCComponents_InterfacesByID.prototype.{d67bd267-f984-4993-b378-95851b71f0a3}= new nsIDOMNSHTMLFrameElement();
-nsXPCComponents_InterfacesByID.prototype.{02b0625a-e7f3-11d2-9f5a-006008a6efe9}= new nsIProfile();
-nsXPCComponents_InterfacesByID.prototype.{5b912111-c10e-498f-a44c-c713c1843007}= new nsIDOMSVGRect();
-nsXPCComponents_InterfacesByID.prototype.{c6ee1ddd-8b35-4e1b-b381-c063a28012d9}= new nsIDOMSVGPathSegMovetoRel();
-nsXPCComponents_InterfacesByID.prototype.{1630c61a-325e-49ca-8759-a31b16c47aa5}= new nsIPromptService();
-nsXPCComponents_InterfacesByID.prototype.{92c3b42c-98c4-11d3-8cd9-0060b0fc14a3}= new nsIJARProtocolHandler();
-nsXPCComponents_InterfacesByID.prototype.{69efc430-2efe-11d2-9e5d-006008bf092e}= new nsIRefreshURI();
-nsXPCComponents_InterfacesByID.prototype.{75506f82-b504-11d5-a7f2-ca108ab8b6fc}= new nsIDOMXPathExpression();
-nsXPCComponents_InterfacesByID.prototype.{3c14a021-6f4e-11d5-9b46-000064657374}= new nsISchema();
-nsXPCComponents_InterfacesByID.prototype.{4ea07ef3-ed66-4b41-8119-4afc6d0ed5af}= new nsIDOMSVGLineElement();
-nsXPCComponents_InterfacesByID.prototype.{58a8574d-15a8-4678-99a5-e1be56104093}= new nsITreeColumn();
-nsXPCComponents_InterfacesByID.prototype.{65f6cd46-22ec-4329-bb3b-bcd1103f2204}= new nsIAutoCompletePopup();
-nsXPCComponents_InterfacesByID.prototype.{9854976e-1dd1-11b2-8350-e6d35099fbce}= new nsIFullScreen();
-nsXPCComponents_InterfacesByID.prototype.{9fd42950-25e7-11d4-8a7d-006008c844c3}= new nsIDOMPkcs11();
-nsXPCComponents_InterfacesByID.prototype.{ef6bfbd2-fd46-48d8-96b7-9f8f0fd387fe}= new nsIRequest();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90bd-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSPageRule();
-nsXPCComponents_InterfacesByID.prototype.{9a7ca4b0-fbba-11d4-a869-00105a183419}= new nsIWebBrowserPrint();
-nsXPCComponents_InterfacesByID.prototype.{faaf1b80-1ddd-11d9-8c46-000a95dc234c}= new nsIDOMNameList();
-nsXPCComponents_InterfacesByID.prototype.{cf777d42-1270-4b34-be7b-2931c93feda5}= new nsIGlobalHistory2();
-nsXPCComponents_InterfacesByID.prototype.{99ec6692-535f-11d4-9a58-000064657374}= new nsISOAPResponseListener();
-nsXPCComponents_InterfacesByID.prototype.{fd1f8334-1859-472d-b01f-4ac6b1121ce4}= new nsIUrlClassifierTable();
-nsXPCComponents_InterfacesByID.prototype.{716e3b11-b03b-49f7-b82d-5383922b0ab3}= new nsIDOMSVGAnimatedNumber();
-nsXPCComponents_InterfacesByID.prototype.{c43079c3-3d8d-4b7c-af14-0e30ab46865f}= new nsIBrowserHistory();
-nsXPCComponents_InterfacesByID.prototype.{a1b89470-a124-11d3-be59-0020a6361667}= new nsIRDFDelegateFactory();
-nsXPCComponents_InterfacesByID.prototype.{e249031f-8df9-4e7a-b644-18946dce0019}= new nsIDOMCSSPrimitiveValue();
-nsXPCComponents_InterfacesByID.prototype.{7a180b78-0f46-4569-8c22-f3d720ea1c57}= new nsIFeedResult();
-nsXPCComponents_InterfacesByID.prototype.{93aaa4a9-b78e-42eb-9d67-5de77ee2f54b}= new nsISelectionController();
-nsXPCComponents_InterfacesByID.prototype.{00b3df92-e830-11d8-d48e-0004e22243f8}= new nsISocketProvider();
-nsXPCComponents_InterfacesByID.prototype.{6712fdd2-f978-11d4-a144-005004832142}= new nsIFontPackageService();
-nsXPCComponents_InterfacesByID.prototype.{450cd2d4-f0fd-424d-b365-b1251f80fd53}= new nsIStringInputStream();
-nsXPCComponents_InterfacesByID.prototype.{bc6ea726-ab56-46b6-a21a-aa7b76d6818f}= new nsIPhonetic();
-nsXPCComponents_InterfacesByID.prototype.{a2e86036-f04c-4013-9f74-e7090a0aac0a}= new nsIDOMSVGDefsElement();
-nsXPCComponents_InterfacesByID.prototype.{9eebf43a-1dd1-11b2-953e-f1782f4cbad3}= new imgIDecoder();
-nsXPCComponents_InterfacesByID.prototype.{009f7ea5-9e80-41be-b008-db62f10823f2}= new nsIDOMCSSValue();
-nsXPCComponents_InterfacesByID.prototype.{65281ba2-988a-11d3-bdc7-0050040a9b44}= new nsISHContainer();
-nsXPCComponents_InterfacesByID.prototype.{99e81922-7318-4431-b3aa-78b3cb4119bb}= new nsICryptoFIPSInfo();
-nsXPCComponents_InterfacesByID.prototype.{f5099746-5049-4e81-a03e-945d5110fee2}= new nsIMenuBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{0458dac1-65de-11d5-9b42-00104bdf5339}= new nsIWSDLPort();
-nsXPCComponents_InterfacesByID.prototype.{2b72d033-f115-45aa-9748-8c11ea07b845}= new nsIDOMSVGPathSegClosePath();
-nsXPCComponents_InterfacesByID.prototype.{1cc8e4b3-1dbb-4adc-a913-1527bf67748c}= new nsIDOMLSException();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9097-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLFieldSetElement();
-nsXPCComponents_InterfacesByID.prototype.{7e15fce5-b208-43e1-952a-c570ebad0619}= new nsIDOMSVGLinearGradientElement();
-nsXPCComponents_InterfacesByID.prototype.{95cc1383-3b62-4b89-aaef-1004a513ef47}= new nsIDOMStorage();
-nsXPCComponents_InterfacesByID.prototype.{31d37360-8e5a-11d3-93ad-00104ba0fd40}= new nsIStreamLoader();
-nsXPCComponents_InterfacesByID.prototype.{a6cf906f-15b3-11d2-932e-00805f8add32}= new nsIDOMWindowCollection();
-nsXPCComponents_InterfacesByID.prototype.{7b456cb0-8772-11d3-90cf-0040056a906e}= new nsIBinaryInputStream();
-nsXPCComponents_InterfacesByID.prototype.{8a0b2908-21b0-45d7-b14d-30df0f92afc7}= new nsIFeedProcessor();
-nsXPCComponents_InterfacesByID.prototype.{067b28a0-877f-11d3-af7e-00a024ffc08c}= new nsITextScroll();
-nsXPCComponents_InterfacesByID.prototype.{d0262ae1-31a4-44be-b82e-85e4cfe280fd}= new nsIDOMSVGRadialGradientElement();
-nsXPCComponents_InterfacesByID.prototype.{e6cd620a-edbb-41d2-9e42-9a2ffc8107f3}= new nsIVersionComparator();
-nsXPCComponents_InterfacesByID.prototype.{1b012ade-91bf-11d3-8cd9-0060b0fc14a3}= new nsIAsyncStreamListener();
-nsXPCComponents_InterfacesByID.prototype.{af25c296-aaec-4f7f-8885-dd37a1cc0a13}= new nsIBrowserDOMWindow();
-nsXPCComponents_InterfacesByID.prototype.{75506f89-b504-11d5-a7f2-ca108ab8b6fc}= new nsIDOMXPathException();
-nsXPCComponents_InterfacesByID.prototype.{7294fe9b-14d8-11d5-9882-00c04fa02f40}= new nsISHistory();
-nsXPCComponents_InterfacesByID.prototype.{d2b675a5-f05b-4172-bac2-24cc39ffd398}= new nsIDOMCrypto();
-nsXPCComponents_InterfacesByID.prototype.{db717db4-37e9-42f1-a3b0-2579dd7c3814}= new nsIAccessible();
-nsXPCComponents_InterfacesByID.prototype.{58e330c1-7b48-11d2-98b9-00805f297d89}= new nsITransaction();
-nsXPCComponents_InterfacesByID.prototype.{bce0213c-f70f-488f-b93f-688acca55d63}= new nsIDOMHTMLOptionsCollection();
-nsXPCComponents_InterfacesByID.prototype.{e565d518-4510-407f-a3d9-3b4107549c6d}= new nsIDOMNSEvent();
-nsXPCComponents_InterfacesByID.prototype.{e312267f-8f57-43e8-a904-ff9b5d3f5aef}= new nsIAutoCompleteInput();
-nsXPCComponents_InterfacesByID.prototype.{4ea60761-31d6-491d-9e34-4b53a26c416c}= new nsICertTree();
-nsXPCComponents_InterfacesByID.prototype.{2417cbfe-65ad-48a6-b4b6-eb84db174392}= new nsIComponentRegistrar();
-nsXPCComponents_InterfacesByID.prototype.{68a26506-f947-11d3-8cda-0060b0fc14a3}= new nsIFileChannel();
-nsXPCComponents_InterfacesByID.prototype.{9a7b6ad0-1dd1-11b2-a789-fcfae96356a2}= new jsdIExecutionHook();
-nsXPCComponents_InterfacesByID.prototype.{ccd37136-76e8-47a7-b46c-b8fee8eb0536}= new nsIAutoCompleteInput_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{dc06b890-15a1-45a9-a1a3-f144b42eea29}= new nsIBoxLayoutManager();
-nsXPCComponents_InterfacesByID.prototype.{1b1f232d-e65f-446a-9984-786578526072}= new nsIMicrosummary();
-nsXPCComponents_InterfacesByID.prototype.{638c3848-778b-4851-8ff3-9400f65b8773}= new nsICacheListener();
-nsXPCComponents_InterfacesByID.prototype.{ddc3b490-4a1c-11d3-9890-006008962422}= new nsISupportsPRBool();
-nsXPCComponents_InterfacesByID.prototype.{07b5b93e-113c-4150-863c-d247b003a55d}= new mozIStorageValueArray();
-nsXPCComponents_InterfacesByID.prototype.{087f52a4-8fd8-40ab-ae52-c3e161810141}= new nsIXPInstallManagerUI();
-nsXPCComponents_InterfacesByID.prototype.{46b91d66-28e2-11d4-ab1e-0010830123b4}= new nsIDOMDocumentEvent();
-nsXPCComponents_InterfacesByID.prototype.{f9fa8205-a988-4828-9228-f3332d5475ac}= new nsIDOMXULCommandEvent();
-nsXPCComponents_InterfacesByID.prototype.{a5772d1b-fc63-495e-a169-96e8d3311af0}= new nsIContentSniffer_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{a61ede2a-ef09-11d9-a5ce-001124787b2e}= new nsIXULAppInfo();
-nsXPCComponents_InterfacesByID.prototype.{0a24fed4-1dd2-11b2-a75c-9f8b9a8f9ba7}= new nsIProxiedProtocolHandler();
-nsXPCComponents_InterfacesByID.prototype.{d79dc970-4a1c-11d3-9890-006008962422}= new nsISupportsString();
-nsXPCComponents_InterfacesByID.prototype.{5f914307-5c34-4e1f-8e32-ec749d25b27a}= new nsISafeOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{91fca0e9-99d6-406b-9d78-4c96f11e9ee4}= new inIDeepTreeWalker();
-nsXPCComponents_InterfacesByID.prototype.{7d935d63-6d2a-4600-afb5-9a4f7d68b825}= new nsIDocShellTreeItem();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90bb-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSFontFaceRule();
-nsXPCComponents_InterfacesByID.prototype.{647248fd-f925-4e30-93dd-cde26d7e3a90}= new nsIAlertsService();
-nsXPCComponents_InterfacesByID.prototype.{f2aec680-60a0-49f0-afe5-6cf1d3f15e0d}= new nsICMSMessageErrors();
-nsXPCComponents_InterfacesByID.prototype.{74567534-eb94-4b1c-8f45-389643bfc555}= new nsIPrefBranch2();
-nsXPCComponents_InterfacesByID.prototype.{5e0cf513-5b87-4da2-a5ce-d9ba3a30d540}= new nsIXTFGenericElementWrapper();
-nsXPCComponents_InterfacesByID.prototype.{46226d9b-e398-4106-8d9b-225d4d0589f5}= new inISearchObserver();
-nsXPCComponents_InterfacesByID.prototype.{a52f0322-7f4d-418d-af6d-a7b14abd5cdf}= new nsIDOMSVGAnimatedLength();
-nsXPCComponents_InterfacesByID.prototype.{9bdf1010-3695-4907-95ed-83d0410ec307}= new nsIUTF8StringEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{f5a34f50-1f39-11d6-a627-0010a401eb10}= new nsICookieConsent();
-nsXPCComponents_InterfacesByID.prototype.{067ca872-e947-4bd6-8946-a479cb6ba5dd}= new nsIResProtocolHandler();
-nsXPCComponents_InterfacesByID.prototype.{836d98ec-fee2-4bde-b609-abd5e966eabd}= new nsIServerSocketListener();
-nsXPCComponents_InterfacesByID.prototype.{8dcc630c-9adc-4c60-9954-a004cb45e4a7}= new nsIXTFBindableElement();
-nsXPCComponents_InterfacesByID.prototype.{46820f9b-3088-4046-ab0f-56fdacdc7a82}= new nsIAccessNode();
-nsXPCComponents_InterfacesByID.prototype.{ec4e8f65-5f4a-495e-a5f2-00e18d5e5f96}= new nsIDOMSVGPathSegCurvetoQuadraticAbs();
-nsXPCComponents_InterfacesByID.prototype.{e3cb0ff0-4a1c-11d3-9890-006008962422}= new nsISupportsPRInt64();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90f2-15b3-11d2-932e-00805f8add32}= new nsIDOMNSRange();
-nsXPCComponents_InterfacesByID.prototype.{7994a6e0-e028-11d3-8f5d-0010a4e73d9a}= new nsIXPCComponents_ID();
-nsXPCComponents_InterfacesByID.prototype.{b128a1e6-44f3-4331-8fbe-5af360ff21ee}= new nsITooltipTextProvider();
-nsXPCComponents_InterfacesByID.prototype.{0ea90cf3-2dd9-470f-8f76-f141743c5678}= new nsIExternalHelperAppService();
-nsXPCComponents_InterfacesByID.prototype.{759e475e-0c23-4dbf-b1b8-78c9369e3072}= new nsIFastLoadService();
-nsXPCComponents_InterfacesByID.prototype.{e2c8b03c-a49a-4923-81b0-ba9a86da0e21}= new nsIDOMDOMImplementationLS();
-nsXPCComponents_InterfacesByID.prototype.{a6cf909b-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLDListElement();
-nsXPCComponents_InterfacesByID.prototype.{2555b930-d64f-437e-9be7-0a2cb252c1f4}= new nsIWindowsRegKey();
-nsXPCComponents_InterfacesByID.prototype.{8d9aa9ce-e191-11d8-9f31-000393b6661a}= new nsISchemaLoadListener();
-nsXPCComponents_InterfacesByID.prototype.{93941450-664a-11d3-9151-006008a6edf6}= new nsII18nCompatibility();
-nsXPCComponents_InterfacesByID.prototype.{57e2860b-4266-4a85-bfde-ae39d945b014}= new nsIWebScriptsAccessService();
-nsXPCComponents_InterfacesByID.prototype.{f673ec81-a4b0-11d6-964b-eb5a2bf216fc}= new nsIWindowCreator2();
-nsXPCComponents_InterfacesByID.prototype.{068e20e0-df59-11d8-869f-000393b6661a}= new nsIWebServiceErrorHandler();
-nsXPCComponents_InterfacesByID.prototype.{046bc8a0-8015-11d3-af70-00a024ffc08c}= new nsIBaseWindow();
-nsXPCComponents_InterfacesByID.prototype.{8a1e2c63-af50-4147-af7e-26289dc180dd}= new nsIFastLoadFileControl();
-nsXPCComponents_InterfacesByID.prototype.{decb9cc7-c08f-4ea5-be91-a8fc637ce2d2}= new nsIPrefService();
-nsXPCComponents_InterfacesByID.prototype.{96fc4671-eeb4-4823-9421-e50fb70ad353}= new nsIWritablePropertyBag();
-nsXPCComponents_InterfacesByID.prototype.{64e6f0e1-af99-4bb9-ab25-7e56012f0021}= new nsIDOMSVGException();
-nsXPCComponents_InterfacesByID.prototype.{67ffe6b0-d4db-485c-ba20-5e2e8319b78d}= new nsIMicrosummaryGenerator();
-nsXPCComponents_InterfacesByID.prototype.{b9022da7-e26d-4df3-8c94-b45c4aedda7c}= new nsIDOMSVGPathSeg();
-nsXPCComponents_InterfacesByID.prototype.{3970815e-1dd2-11b2-a475-db4dac6826f1}= new nsISOAPMessage();
-nsXPCComponents_InterfacesByID.prototype.{2f977d56-5485-11d4-87e2-0010a4e75ef2}= new nsIContextMenuInfo();
-nsXPCComponents_InterfacesByID.prototype.{122c91c0-2485-40ba-89c9-b895934921bc}= new nsIHttpProtocolHandler();
-nsXPCComponents_InterfacesByID.prototype.{48ab1fa0-4550-11d3-91cd-00105aa3f7dc}= new nsILocaleService();
-nsXPCComponents_InterfacesByID.prototype.{9eb2c150-1d56-11d3-8221-0060083a0bcf}= new nsIDOMBarProp();
-nsXPCComponents_InterfacesByID.prototype.{048e5ca1-0eb7-4bb1-a9a2-a36f7d4e0e3c}= new nsIProfileStartup();
-nsXPCComponents_InterfacesByID.prototype.{72f8bb14-2810-4f38-8d0d-290c5401f54e}= new nsICookiePromptService();
-nsXPCComponents_InterfacesByID.prototype.{e6273acc-1dd1-11b2-a08b-824ad1b1628d}= new imgILoad();
-nsXPCComponents_InterfacesByID.prototype.{841387c8-72e6-484b-9296-bf6eea80d58a}= new nsIPrintSettingsService();
-nsXPCComponents_InterfacesByID.prototype.{2b19e692-3338-440f-a998-3cb1e8474999}= new nsIDOMSVGPathElement();
-nsXPCComponents_InterfacesByID.prototype.{6c248606-4eae-46fa-9df0-ba58502368eb}= new nsIObjectInputStream();
-nsXPCComponents_InterfacesByID.prototype.{3c14a02b-6f4e-11d5-9b46-000064657374}= new nsISchemaAnyParticle();
-nsXPCComponents_InterfacesByID.prototype.{23bbabd0-1dd2-11b2-86b7-aad68ae7d7e0}= new nsIDirIndex();
-nsXPCComponents_InterfacesByID.prototype.{d0b5d7d3-9565-403d-9fb5-e5089c4567c6}= new nsPIExternalAppLauncher();
-nsXPCComponents_InterfacesByID.prototype.{19b5879f-c125-447c-aaaf-719de3ef221a}= new nsIDOMNSHTMLHRElement();
-nsXPCComponents_InterfacesByID.prototype.{5fd47925-03b2-4318-b55e-c37134124b6a}= new nsIXTFSVGVisual();
-nsXPCComponents_InterfacesByID.prototype.{872f07f3-ed11-47c6-b7cf-246db53379fb}= new nsIFormFillController();
-nsXPCComponents_InterfacesByID.prototype.{67b8f41e-3577-4c8a-b1de-bef51186fe08}= new nsIDOMSVGSVGElement();
-nsXPCComponents_InterfacesByID.prototype.{3d49950e-04f9-4e35-a9a0-ffd51356a674}= new nsIDOMXULMenuListElement();
-nsXPCComponents_InterfacesByID.prototype.{99ec6696-535f-11d4-9a58-000064657374}= new nsISOAPTransportListener();
-nsXPCComponents_InterfacesByID.prototype.{1dd0cb45-aea3-4a52-8b29-01429a542863}= new nsIDictionary();
-nsXPCComponents_InterfacesByID.prototype.{91fdb05e-f1af-4857-a604-45448bc02471}= new nsIDOMNSHTMLElement_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{96a13c30-695a-492c-918b-04ae3edb4e4c}= new nsISyncLoadDOMService();
-nsXPCComponents_InterfacesByID.prototype.{ee753352-1dd1-11b2-b18d-b0b7320a28c3}= new nsIDOMJSPluginArray();
-nsXPCComponents_InterfacesByID.prototype.{d6116970-8034-11d3-9399-00104ba0fd40}= new nsIURL();
-nsXPCComponents_InterfacesByID.prototype.{0ccbcf19-d1b4-489e-984c-cd8c43672bb9}= new nsIDOMConstructor();
-nsXPCComponents_InterfacesByID.prototype.{a076fd12-1dd1-11b2-b19a-d53b5dffaade}= new nsIMultiplexInputStream();
-nsXPCComponents_InterfacesByID.prototype.{b8100c90-73be-11d2-92a5-00105a1b0d64}= new nsIClipboardCommands();
-nsXPCComponents_InterfacesByID.prototype.{a711250b-47da-4f16-a1fd-593de16375a1}= new nsIWebServiceProxyCreationListener();
-nsXPCComponents_InterfacesByID.prototype.{028e0e6e-8b01-11d3-aae7-0010838a3123}= new nsIDOMKeyEvent();
-nsXPCComponents_InterfacesByID.prototype.{8712a243-5539-447c-9f47-8653f40c3a09}= new nsIKeygenThread();
-nsXPCComponents_InterfacesByID.prototype.{9dd9006a-4e5e-4a80-ac3d-007fb7335ca4}= new jsdIDebuggerService();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9084-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLDocument();
-nsXPCComponents_InterfacesByID.prototype.{3c14a025-6f4e-11d5-9b46-000064657374}= new nsISchemaListType();
-nsXPCComponents_InterfacesByID.prototype.{e0d39e48-1dd1-11b2-81bd-9a0c117f0736}= new inICSSValueSearch();
-nsXPCComponents_InterfacesByID.prototype.{8781fc88-355f-4439-881f-6504a0a1ceb6}= new nsIAccessibleDocument();
-nsXPCComponents_InterfacesByID.prototype.{163f3437-1d69-4db7-9ce1-fd420fba8219}= new nsIDocNavStartProgressCallback();
-nsXPCComponents_InterfacesByID.prototype.{19855dff-3248-4902-b196-93ee4c477880}= new nsIPrintStatusFeedback();
-nsXPCComponents_InterfacesByID.prototype.{2f977d42-5485-11d4-87e2-0010a4e75ef2}= new nsIProfileInternal();
-nsXPCComponents_InterfacesByID.prototype.{0577744c-c1d2-47f2-8bcc-ce7a9e5a88fc}= new nsIExceptionProvider();
-nsXPCComponents_InterfacesByID.prototype.{4b4f8316-1dd2-11b2-b265-9a857376d159}= new nsIDOMJSNavigator();
-nsXPCComponents_InterfacesByID.prototype.{2848ab92-d912-11d9-89f7-001124787b2e}= new nsIXULRuntime();
-nsXPCComponents_InterfacesByID.prototype.{3e9c01a7-de97-4c3b-8294-b4bd9d7056d1}= new nsIDOM3EventTarget();
-nsXPCComponents_InterfacesByID.prototype.{3e333e20-b190-42d8-b993-d5fa435e46c4}= new nsIJVMConfig();
-nsXPCComponents_InterfacesByID.prototype.{75506f83-b504-11d5-a7f2-ca108ab8b6fc}= new nsIDOMXPathNSResolver();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90aa-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLAnchorElement();
-nsXPCComponents_InterfacesByID.prototype.{3476df52-1dd2-11b2-b928-925d89b33bc0}= new nsIFTPChannel();
-nsXPCComponents_InterfacesByID.prototype.{8f09fa84-39b9-4dca-9b2f-db0eeb186286}= new nsIDOMCSSValueList();
-nsXPCComponents_InterfacesByID.prototype.{a4c253ab-09b9-4fb0-a61d-600621e690e4}= new nsIShellService();
-nsXPCComponents_InterfacesByID.prototype.{3c14a02d-6f4e-11d5-9b46-000064657374}= new nsISchemaAttributeComponent();
-nsXPCComponents_InterfacesByID.prototype.{1b86a0a6-1dd2-11b2-a85c-e3f42b4dcceb}= new nsIJSConsoleService();
-nsXPCComponents_InterfacesByID.prototype.{94490b3f-f094-418e-b1b9-73878d29bff3}= new nsIToolkitChromeRegistry();
-nsXPCComponents_InterfacesByID.prototype.{7c094410-4558-11d3-91cd-00105aa3f7dc}= new nsILocaleDefinition();
-nsXPCComponents_InterfacesByID.prototype.{f424abd3-32b4-456c-9f45-b7e3376cb0d1}= new nsIProtocolProxyFilter();
-nsXPCComponents_InterfacesByID.prototype.{5215291e-fa0a-40c2-8ce7-e86cd1a1d3fa}= new nsIFeedElementBase();
-nsXPCComponents_InterfacesByID.prototype.{99ec6691-535f-11d4-9a58-000064657374}= new nsISOAPResponse();
-nsXPCComponents_InterfacesByID.prototype.{4fe04d6d-4b66-4023-a0bc-b43ce68b3e15}= new nsIFormSigningDialog();
-nsXPCComponents_InterfacesByID.prototype.{b6d50784-1dd1-11b2-a932-882246c6fe45}= new jsdIStackFrame();
-nsXPCComponents_InterfacesByID.prototype.{444d0276-3302-4d35-a74e-25c4e9c483c9}= new nsIXTFElementWrapper();
-nsXPCComponents_InterfacesByID.prototype.{376da416-e6b3-4bac-98f3-6aa408742751}= new nsITypeAheadFind();
-nsXPCComponents_InterfacesByID.prototype.{f5d1ec9e-4d30-11d8-8053-da0cc7df1f20}= new nsIInlineSpellChecker();
-nsXPCComponents_InterfacesByID.prototype.{571f3ff1-6a97-4155-90af-e18b139dc0c1}= new nsIAptanaDebugService();
-nsXPCComponents_InterfacesByID.prototype.{1f280341-30f4-4009-bb0d-a78f2936d1fb}= new nsIDownloadManager();
-nsXPCComponents_InterfacesByID.prototype.{a42619df-0a1c-46fb-8154-0e9b8f8f1ea8}= new nsIProxyAutoConfig();
-nsXPCComponents_InterfacesByID.prototype.{15a15329-00de-44e8-ab06-0d0b0d43dc5b}= new nsIAsyncInputStream();
-nsXPCComponents_InterfacesByID.prototype.{2f977d43-5485-11d4-87e2-0010a4e75ef2}= new nsIProfileChangeStatus();
-nsXPCComponents_InterfacesByID.prototype.{791eafa0-b9e6-11d1-8031-006008159b5a}= new nsISupportsArray();
-nsXPCComponents_InterfacesByID.prototype.{7422b090-4a86-4407-972e-75468a625388}= new nsIToolkitProfile();
-nsXPCComponents_InterfacesByID.prototype.{9b0c2ed7-111c-4824-adf9-ef0da6dad371}= new nsIDOMMediaList();
-nsXPCComponents_InterfacesByID.prototype.{4ca27b6b-a674-4b3d-ab30-d21e2da2dffb}= new nsIUrlClassifierCallback();
-nsXPCComponents_InterfacesByID.prototype.{dd4e0a6a-210f-419a-ad85-40e8543b9465}= new nsIWebBrowserPersist();
-nsXPCComponents_InterfacesByID.prototype.{38e3066c-1dd2-11b2-9b59-8be515c1ee3f}= new nsIDirIndexParser();
-nsXPCComponents_InterfacesByID.prototype.{ea604e90-40ba-11d5-90bb-0010a4e73d9a}= new nsIProgrammingLanguage();
-nsXPCComponents_InterfacesByID.prototype.{9da147a7-5854-49e3-a397-22ecdd93e96d}= new nsIXULTemplateBuilder();
-nsXPCComponents_InterfacesByID.prototype.{9f620be4-e535-11d6-b254-00039310a47a}= new nsISemanticUnitScanner();
-nsXPCComponents_InterfacesByID.prototype.{1d507cd6-1630-4710-af1b-4012dbcc514c}= new nsIStreamCipher();
-nsXPCComponents_InterfacesByID.prototype.{5c29a76c-3489-48fe-b9ea-ea0f5b196dff}= new nsIDOMSVGTextPathElement();
-nsXPCComponents_InterfacesByID.prototype.{da83b2ec-8264-4410-8496-ada3acd2ae42}= new nsIDOMNSHTMLElement();
-nsXPCComponents_InterfacesByID.prototype.{3d1b15b0-93b4-11d1-895b-006008911b81}= new nsIAtom();
-nsXPCComponents_InterfacesByID.prototype.{b81f6e37-1842-4534-a546-1ab86e59a3c6}= new nsIDOMSVGTransformable();
-nsXPCComponents_InterfacesByID.prototype.{ad385286-cbc4-11d2-8cca-0060b0fc14a3}= new nsIEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{c8c0a080-0868-11d3-915f-d9d889d48e3c}= new nsIFile();
-nsXPCComponents_InterfacesByID.prototype.{82c72eca-9886-473e-94cd-9de5694b3f88}= new nsIDOMXULMultiSelectControlElement();
-nsXPCComponents_InterfacesByID.prototype.{ca066b44-9ddf-11d3-bccc-0060b0fc76bd}= new nsIDOMNSHTMLTextAreaElement();
-nsXPCComponents_InterfacesByID.prototype.{7fb719b3-d804-4964-9596-77cf924ee314}= new nsIContextMenuListener2();
-nsXPCComponents_InterfacesByID.prototype.{65455132-b96a-40ec-adea-52fa22b1028c}= new nsIDOMWindow2();
-nsXPCComponents_InterfacesByID.prototype.{68389281-f6d0-4533-841d-344a2018140c}= new nsIChromeRegistry();
-nsXPCComponents_InterfacesByID.prototype.{a6cf907d-15b3-11d2-932e-00805f8add32}= new nsIDOMNodeList();
-nsXPCComponents_InterfacesByID.prototype.{560a64ce-6d66-44db-b38e-864469c52d03}= new nsIInputStreamChannel();
-nsXPCComponents_InterfacesByID.prototype.{fc33ffd6-1dd1-11b2-8750-fa62430a38b4}= new nsISOAPEncoder();
-nsXPCComponents_InterfacesByID.prototype.{fd9c9871-23fd-48eb-a65b-3842e9b0acbd}= new nsIDOMSVGForeignObjectElement();
-nsXPCComponents_InterfacesByID.prototype.{176afb41-00a4-11d3-9f2a-00400553eef0}= new nsIEventQueue();
-nsXPCComponents_InterfacesByID.prototype.{6be5e380-6886-11d3-9382-00104ba0fd40}= new nsIThread();
-nsXPCComponents_InterfacesByID.prototype.{d44fe6d4-ee35-4789-886a-eb8f0554d04e}= new nsIIOService2();
-nsXPCComponents_InterfacesByID.prototype.{14b3b669-3414-4548-aa03-edf257d889c8}= new nsIEditorBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{877ace25-8bc5-452a-8586-9c1cf2871994}= new nsIUpdateChecker();
-nsXPCComponents_InterfacesByID.prototype.{8268d474-efbf-494f-a152-e8a8616f4e52}= new nsIStreamTransportService();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b6-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTableRowElement();
-nsXPCComponents_InterfacesByID.prototype.{3f0e3eb0-1dd2-11b2-9605-be5b8e76cf4b}= new nsIAccessibleProvider();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9095-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLButtonElement();
-nsXPCComponents_InterfacesByID.prototype.{993d2efc-a768-11d3-bccd-0060b0fc76bd}= new nsIDOMNSHTMLInputElement();
-nsXPCComponents_InterfacesByID.prototype.{ff76f0c7-caaf-4e64-8896-154348322696}= new nsIDownload_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{23c51569-e9a1-4a92-adeb-3723db82ef7c}= new nsITransfer();
-nsXPCComponents_InterfacesByID.prototype.{86d02f0e-219b-4cfc-9c88-bd98d2cce0b8}= new nsIWebBrowserStream();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b4-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTableColElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90c0-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSRuleList();
-nsXPCComponents_InterfacesByID.prototype.{7007113c-e06b-4256-8530-4884d5d769c6}= new nsIDOMSVGPathSegCurvetoQuadraticRel();
-nsXPCComponents_InterfacesByID.prototype.{b1b0b493-3369-44e0-878d-f7c56d937680}= new imgIEncoder_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{4a23cb1f-cf1e-437e-9524-8756f7928b2e}= new nsIDOMSVGTSpanElement();
-nsXPCComponents_InterfacesByID.prototype.{47b82b60-a36f-4167-8072-6f421151ed50}= new nsIControllerContext();
-nsXPCComponents_InterfacesByID.prototype.{d9277fa4-7d51-4175-bd4e-546c080a83bf}= new nsIUrlClassifierStreamUpdater();
-nsXPCComponents_InterfacesByID.prototype.{0c3f45a4-e6d0-44e7-a2f8-d128ecf1db9b}= new nsIDOMSVGClipPathElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf908c-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLIsIndexElement();
-nsXPCComponents_InterfacesByID.prototype.{1deea160-c661-11d5-84cc-0010a4e0c706}= new nsIExpatSink();
-nsXPCComponents_InterfacesByID.prototype.{f15398a0-8018-11d3-af70-00a024ffc08c}= new nsIWebBrowserSetup();
-nsXPCComponents_InterfacesByID.prototype.{8f755c44-1dd2-11b2-a613-91117453fa95}= new nsISOCKSSocketInfo();
-nsXPCComponents_InterfacesByID.prototype.{df31c120-ded6-11d1-bd85-00805f8ae3f4}= new nsIDOMEventListener();
-nsXPCComponents_InterfacesByID.prototype.{28f16d80-157b-11d5-a542-0010a401eb10}= new nsIPermission();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9125-15b3-11d2-932e-00805f8add32}= new nsIEditorObserver();
-nsXPCComponents_InterfacesByID.prototype.{9228afa2-187c-4feb-9228-5108e640ca33}= new nsIScriptableMethodInfo();
-nsXPCComponents_InterfacesByID.prototype.{f4d74511-2b2d-4a14-a3e4-a392ac5ac3ff}= new nsIScriptSecurityManager();
-nsXPCComponents_InterfacesByID.prototype.{33347bee-6620-4841-8152-36091ae80c7e}= new nsIDOMEventGroup();
-nsXPCComponents_InterfacesByID.prototype.{6ca37983-16aa-4013-b753-77b770ff93d6}= new nsIURIFixup_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{44b78386-1dd2-11b2-9ad2-e4eee2ca1916}= new nsITooltipListener();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9081-15b3-11d2-932e-00805f8add32}= new nsIDOMStyleSheetList();
-nsXPCComponents_InterfacesByID.prototype.{59364ec4-faf1-460f-bf58-e6a6a2769a3a}= new nsIDOMSVGNumberList();
-nsXPCComponents_InterfacesByID.prototype.{4f6b5e00-0c36-11d5-a535-0010a401eb10}= new nsIPermissionManager();
-nsXPCComponents_InterfacesByID.prototype.{dc5ba787-b648-4b01-a8e7-b293ffb044ef}= new nsIDOMNSFeatureFactory();
-nsXPCComponents_InterfacesByID.prototype.{5b61356d-8411-48c0-863f-7b038eb0e4a8}= new nsIUpdate_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{23c26a56-adff-440c-8caf-95c2dc2e399b}= new nsISAXLexicalHandler();
-nsXPCComponents_InterfacesByID.prototype.{66710f97-a4dd-49f1-a906-fe0ebc5924c0}= new nsISMimeCert();
-nsXPCComponents_InterfacesByID.prototype.{4350fb73-9305-41df-a669-11d26222d420}= new nsISidebarExternal();
-nsXPCComponents_InterfacesByID.prototype.{a685997e-fb47-47c0-a34c-5da11cb66537}= new nsIDOMSVGPathSegArcRel();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90dc-15b3-11d2-932e-00805f8add32}= new nsIEventQueueService();
-nsXPCComponents_InterfacesByID.prototype.{33b87f70-7a9c-11d3-915c-006008a6edf6}= new nsISaveAsCharset();
-nsXPCComponents_InterfacesByID.prototype.{14b4394a-1dd2-11b2-b4fd-ba4a194fe97e}= new nsICMSSecureMessage();
-nsXPCComponents_InterfacesByID.prototype.{d85a17c0-aa7c-11d2-9b8c-00805f8a16d9}= new nsIStringBundleService();
-nsXPCComponents_InterfacesByID.prototype.{1d5b5b94-dc47-4050-93b7-ac092e383cad}= new nsIXULOverlayProvider();
-nsXPCComponents_InterfacesByID.prototype.{df41474c-a4f8-4ec3-ae79-4342e6f56d8e}= new nsIDOMSVGTransformList();
-nsXPCComponents_InterfacesByID.prototype.{a6cf910a-15b3-11d2-932e-00805f8add32}= new nsIDOMDOMException();
-nsXPCComponents_InterfacesByID.prototype.{1ea19c6c-c59f-4fd7-9fc7-151e946baca0}= new nsIScriptableUnicodeConverter();
-nsXPCComponents_InterfacesByID.prototype.{715577db-d9c5-464a-a32e-0a40c29b22d4}= new nsIFastLoadFileIO();
-nsXPCComponents_InterfacesByID.prototype.{b0132cc0-3786-4557-9874-910d7def5f93}= new nsICollation();
-nsXPCComponents_InterfacesByID.prototype.{a88e5a60-205a-4bb1-94e1-2628daf51eae}= new nsIComponentManager();
-nsXPCComponents_InterfacesByID.prototype.{8307b8f2-08ea-45b8-96bf-b1dc7688fe3b}= new nsIBrowserSearchService();
-nsXPCComponents_InterfacesByID.prototype.{3fbff728-2d20-11d3-aef3-00108300ff91}= new nsIXSLTProcessorObsolete();
-nsXPCComponents_InterfacesByID.prototype.{138ad1b2-c694-41cc-b201-333ce936d8b8}= new nsIUUIDGenerator();
-nsXPCComponents_InterfacesByID.prototype.{9f82c404-1c7b-11d5-a73c-eca43ca836fc}= new nsIControllerCommandGroup();
-nsXPCComponents_InterfacesByID.prototype.{a6cf906d-15b3-11d2-932e-00805f8add32}= new nsIDOMLocation();
-nsXPCComponents_InterfacesByID.prototype.{933355f6-1dd2-11b2-a9b0-d335b9e35983}= new nsITXTToHTMLConv();
-nsXPCComponents_InterfacesByID.prototype.{11852a90-20de-11db-a98b-0800200c9a66}= new nsISessionStore();
-nsXPCComponents_InterfacesByID.prototype.{237f85a2-1dd2-11b2-94af-8122582fc45e}= new nsIRDFBlob();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9087-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLHeadElement();
-nsXPCComponents_InterfacesByID.prototype.{5bf039c0-e028-11d3-8f5d-0010a4e73d9a}= new nsIXPCComponents_Exception();
-nsXPCComponents_InterfacesByID.prototype.{114e1142-1dd2-11b2-ac26-b6db19d9184a}= new nsIASN1PrintableItem();
-nsXPCComponents_InterfacesByID.prototype.{4805e682-49b9-11d3-9ce4-ed60bd6cb5bc}= new nsIEditorStyleSheets();
-nsXPCComponents_InterfacesByID.prototype.{c914d7a4-63b3-4d40-943f-91a3c7ab0d4d}= new nsIDOMNSHTMLButtonElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90af-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLMapElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a5-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLBRElement();
-nsXPCComponents_InterfacesByID.prototype.{b32523a0-4ac0-11d3-baea-00805f8a5dd7}= new nsISupportsDouble();
-nsXPCComponents_InterfacesByID.prototype.{a9967200-f95e-45c2-beb3-9b060d874bfd}= new nsIProtocolProxyCallback();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9088-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLLinkElement();
-nsXPCComponents_InterfacesByID.prototype.{bfd05261-834c-11d2-8eac-00805f29f371}= new nsIXULSortService();
-nsXPCComponents_InterfacesByID.prototype.{1181207b-2337-41a7-8ddf-fbe96461256f}= new nsIDOMNSHTMLOptionCollection();
-nsXPCComponents_InterfacesByID.prototype.{06b31b15-ebf5-4e74-a0e2-6bc0a18a3969}= new nsIXULTreeBuilder();
-nsXPCComponents_InterfacesByID.prototype.{98575762-a936-4ecf-a226-b74c3a2981b4}= new nsIDOMSVGNumber();
-nsXPCComponents_InterfacesByID.prototype.{a41661d4-1417-11d5-9882-00c04fa02f40}= new nsIHistoryEntry();
-nsXPCComponents_InterfacesByID.prototype.{f73f4d77-a6fb-4ab5-b41e-15045a0cc6ff}= new nsIDOMXULImageElement();
-nsXPCComponents_InterfacesByID.prototype.{d26b2e2e-1dd1-11b2-88f3-8545a7ba7949}= new nsIFileURL();
-nsXPCComponents_InterfacesByID.prototype.{5060b801-340e-11d5-be5b-b3e063ec6a3c}= new nsIFindService();
-nsXPCComponents_InterfacesByID.prototype.{6c16a810-a37d-4859-b557-337341631aee}= new nsIDOMLSLoadEvent();
-nsXPCComponents_InterfacesByID.prototype.{61618a52-ea91-4277-a4ab-ebe10d7b9a64}= new nsINetworkLinkService();
-nsXPCComponents_InterfacesByID.prototype.{44073a98-1dd2-11b2-8600-d0ae854dbe93}= new nsIClipboardHelper();
-nsXPCComponents_InterfacesByID.prototype.{a22ad7b0-ca86-11d1-a9a4-00805f8a7ac4}= new nsIPref();
-nsXPCComponents_InterfacesByID.prototype.{570f39d1-efd0-11d3-b093-00a024ffc08c}= new nsIWebProgressListener();
-nsXPCComponents_InterfacesByID.prototype.{8b5314bb-db01-11d2-96ce-0060b0fb9956}= new nsIDragService();
-nsXPCComponents_InterfacesByID.prototype.{4ecdf254-a21e-47b0-8d72-55da8208299f}= new nsIDOMNSDocumentStyle();
-nsXPCComponents_InterfacesByID.prototype.{a6cf908d-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLStyleElement();
-nsXPCComponents_InterfacesByID.prototype.{96b2f5ae-4334-11d5-ba27-00108303b117}= new nsIOCSPResponder();
-nsXPCComponents_InterfacesByID.prototype.{21035ee0-4556-11d3-91cd-00105aa3f7dc}= new nsILocale();
-nsXPCComponents_InterfacesByID.prototype.{7f952767-427f-402b-8114-f80c95d1980d}= new nsIUpdateItem();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9102-15b3-11d2-932e-00805f8add32}= new nsICiter();
-nsXPCComponents_InterfacesByID.prototype.{3c14a027-6f4e-11d5-9b46-000064657374}= new nsISchemaRestrictionType();
-nsXPCComponents_InterfacesByID.prototype.{e06dfaea-92d5-47f7-a800-c5f5404d8771}= new nsIXSLTException();
-nsXPCComponents_InterfacesByID.prototype.{9e811188-6a5b-4d96-a92d-1bac66a41898}= new nsIFormHistoryImporter();
-nsXPCComponents_InterfacesByID.prototype.{4d01f225-6cc5-11da-be43-001422106990}= new nsISAXDTDHandler();
-nsXPCComponents_InterfacesByID.prototype.{3c9b532e-db84-4ecf-aa6a-4d38a9c4c5f0}= new nsIRequestObserverProxy();
-nsXPCComponents_InterfacesByID.prototype.{12d3b664-1dd2-11b2-a7cf-ceee7e90f396}= new nsIDOMSVGDocument();
-nsXPCComponents_InterfacesByID.prototype.{29fb2a18-1dd2-11b2-8dd9-a6fd5d5ad12f}= new nsIDOM3Node();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9099-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLUListElement();
-nsXPCComponents_InterfacesByID.prototype.{0a3928d2-76c8-4c25-86a9-9c005ad832f4}= new nsIActiveXSecurityPolicy();
-nsXPCComponents_InterfacesByID.prototype.{b43a461f-1bcf-4329-820b-66e48c979e14}= new nsIUnicodeNormalizer();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90ac-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLObjectElement();
-nsXPCComponents_InterfacesByID.prototype.{3e51f40b-b4b0-4e60-ac45-6c63477ebe41}= new nsIXULChromeRegistry();
-nsXPCComponents_InterfacesByID.prototype.{d3992637-f474-4b65-83ed-323fe69c60d2}= new nsIXPointerResult();
-nsXPCComponents_InterfacesByID.prototype.{16da46c0-208d-11d4-8a7c-006008c844c3}= new nsIDOMCRMFObject();
-nsXPCComponents_InterfacesByID.prototype.{07a22cc0-0ce5-11d3-9331-00104ba0fd40}= new nsIURI();
-nsXPCComponents_InterfacesByID.prototype.{ec2da3ef-5a99-49ed-aaef-b5af916c14ac}= new nsIDOMSVGMatrix();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b2-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTableElement();
-nsXPCComponents_InterfacesByID.prototype.{13aed1cc-a505-45d5-bbc2-0052c6bf200f}= new nsIDOMSVGEvent();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9077-15b3-11d2-932e-00805f8add32}= new nsIDOMDocumentType();
-nsXPCComponents_InterfacesByID.prototype.{16141376-7cc3-447d-a961-b5d8b51b9b7e}= new nsIQTScriptablePlugin();
-nsXPCComponents_InterfacesByID.prototype.{8a157a4f-a81e-489f-baf2-bc8970d60472}= new nsIDOMWindowUtils();
-nsXPCComponents_InterfacesByID.prototype.{c32390a8-2bd8-4d1b-bf9f-1b1d0a944d19}= new nsIDOMXULPopupElement();
-nsXPCComponents_InterfacesByID.prototype.{3c14a028-6f4e-11d5-9b46-000064657374}= new nsISchemaComplexType();
-nsXPCComponents_InterfacesByID.prototype.{ddd6790a-1dd1-11b2-a804-b522643903b9}= new nsIOSChromeItem();
-nsXPCComponents_InterfacesByID.prototype.{e74b55ef-1c44-4a40-9f51-a2196b11283a}= new nsIDOMSVGPathSegLinetoHorizontalAbs();
-nsXPCComponents_InterfacesByID.prototype.{f76c0901-437a-11d3-b7a0-e35db351b4bc}= new nsIDialogParamBlock();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9093-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLInputElement();
-nsXPCComponents_InterfacesByID.prototype.{ccf705f6-1dd1-11b2-82ef-e18eccf7f7ec}= new imgIRequest();
-nsXPCComponents_InterfacesByID.prototype.{3478b6b0-3875-11d4-94ef-0020183bf181}= new nsIContextMenuListener();
-nsXPCComponents_InterfacesByID.prototype.{efc9d00b-231c-4feb-852c-ac017266a415}= new nsIExceptionManager();
-nsXPCComponents_InterfacesByID.prototype.{6dd8f185-ceb8-4878-8e38-2d13edc2d079}= new nsITimerInternal();
-nsXPCComponents_InterfacesByID.prototype.{99ec6695-535f-11d4-9a58-000064657374}= new nsISOAPTransport();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9073-15b3-11d2-932e-00805f8add32}= new nsIDOMComment();
-nsXPCComponents_InterfacesByID.prototype.{5d41a440-8e37-11d2-8059-00600811a9c3}= new nsIRegistry();
-nsXPCComponents_InterfacesByID.prototype.{64355793-988d-40a5-ba8e-fcde78cac631}= new nsIHelperAppLauncherDialog();
-nsXPCComponents_InterfacesByID.prototype.{b8816e56-1dd1-11b2-81dc-8ba99a833d9e}= new jsdIProperty();
-nsXPCComponents_InterfacesByID.prototype.{011c3190-1434-11d6-a618-0010a401eb10}= new nsICookieService();
-nsXPCComponents_InterfacesByID.prototype.{2b04860f-4017-40f6-8a57-784a1e35077a}= new nsIRDFInferDataSource();
-nsXPCComponents_InterfacesByID.prototype.{0f89f2a4-b168-4602-90f5-1874418c0a6a}= new nsIDOMSVGCircleElement();
-nsXPCComponents_InterfacesByID.prototype.{0811d434-3d90-4eec-8fa2-066dde037917}= new nsIDOMSVGPathSegLinetoVerticalAbs();
-nsXPCComponents_InterfacesByID.prototype.{6dcf9030-a49f-11d5-910d-0010a4e73d9a}= new nsIProperty();
-nsXPCComponents_InterfacesByID.prototype.{37f1ab73-f224-44b1-82f0-d2834ab1cec0}= new nsIDocShellTreeNode();
-nsXPCComponents_InterfacesByID.prototype.{7bc08970-9e6c-11d3-afb2-00a024ffc08c}= new nsIChromeEventHandler();
-nsXPCComponents_InterfacesByID.prototype.{3c3f3e30-ebd5-11da-8ad9-0800200c9a66}= new nsIConsoleService_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{5860bccd-f86b-47f8-86c1-cb1245b6a8e1}= new nsIDOMSVGPathSegCurvetoCubicSmoothRel();
-nsXPCComponents_InterfacesByID.prototype.{19fe78cc-65ff-4b1d-a5d7-9ea89692cec6}= new nsIDOMCSSCharsetRule();
-nsXPCComponents_InterfacesByID.prototype.{933cb52a-2864-4a40-8678-a2d0851b0ef4}= new nsIPrefetchService();
-nsXPCComponents_InterfacesByID.prototype.{ca7a3a93-822f-4cdf-8cb4-c52d16b9afc7}= new nsIAccessibleWin32Object();
-nsXPCComponents_InterfacesByID.prototype.{92c898ac-5fde-4b99-87b3-5d486422094b}= new nsIObjectOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{ca45959e-f1da-46f6-af19-1ecdc322285a}= new nsIDOMSVGAnimatedRect();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9096-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLLabelElement();
-nsXPCComponents_InterfacesByID.prototype.{4ad136fa-83af-4a22-a76e-503642c0f4a8}= new nsIResumableChannel();
-nsXPCComponents_InterfacesByID.prototype.{501209d3-7edf-437d-9948-3c6d1c08ef7f}= new nsIScriptLoaderObserver();
-nsXPCComponents_InterfacesByID.prototype.{f3764874-ed7e-4873-883c-11d67a4e3638}= new nsIHttpChannelInternal();
-nsXPCComponents_InterfacesByID.prototype.{04971e14-d6b3-4ada-8cbb-c3a13842b349}= new nsICollationFactory();
-nsXPCComponents_InterfacesByID.prototype.{82d8f400-5bde-11d3-b033-b27a62766bbc}= new nsIScriptableRegion();
-nsXPCComponents_InterfacesByID.prototype.{88bea60f-9b5d-4b39-b08b-1c3a278782c6}= new jsdINestCallback();
-nsXPCComponents_InterfacesByID.prototype.{52f1be88-84f7-4f7f-b31c-062afe7df15d}= new nsPIAccessible();
-nsXPCComponents_InterfacesByID.prototype.{3c14a024-6f4e-11d5-9b46-000064657374}= new nsISchemaBuiltinType();
-nsXPCComponents_InterfacesByID.prototype.{548a0672-628f-402b-bb30-da6702111a58}= new nsIAptanaBreakpointProperties();
-nsXPCComponents_InterfacesByID.prototype.{5489519f-e124-4be2-80af-ec2abebc450a}= new nsIAptanaDebugger();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90ce-15b3-11d2-932e-00805f8add32}= new nsIDOMRange();
-nsXPCComponents_InterfacesByID.prototype.{60fbf998-e021-4f81-bdf0-749cc651e221}= new nsIEditor_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{fde7c970-0b4e-49f4-b1eb-974ae6c96336}= new nsIListBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9072-15b3-11d2-932e-00805f8add32}= new nsIDOMCharacterData();
-nsXPCComponents_InterfacesByID.prototype.{2e0e9ea1-72ab-4d9e-bdeb-ca64e1abeba4}= new nsIDOM3Document();
-nsXPCComponents_InterfacesByID.prototype.{c1b1f426-7e83-4759-9f88-0e1b17f49366}= new nsIByteRangeRequest();
-nsXPCComponents_InterfacesByID.prototype.{114744d9-c369-456e-b55a-52fe52880d2d}= new nsIArray();
-nsXPCComponents_InterfacesByID.prototype.{1acdb2ba-1dd2-11b2-95bc-9542495d2569}= new nsIDOMDocumentView();
-nsXPCComponents_InterfacesByID.prototype.{ebce86bd-1568-4a34-a808-9ccf9cde8087}= new rdfIDataSource();
-nsXPCComponents_InterfacesByID.prototype.{254bb2e0-6439-11d4-8fe0-0010a4e73d9a}= new nsIXPCWrappedJSObjectGetter();
-nsXPCComponents_InterfacesByID.prototype.{8792d77e-1dd2-11b2-ac7f-9bc9be4f2916}= new mozIJSSubScriptLoader();
-nsXPCComponents_InterfacesByID.prototype.{6192dcbe-1dd2-11b2-81ad-a4597614c4ae}= new nsISOAPAttachments();
-nsXPCComponents_InterfacesByID.prototype.{c2d4f296-ee60-11d4-998b-00b0d02354a0}= new nsIPKCS11Slot();
-nsXPCComponents_InterfacesByID.prototype.{31f7f4ae-6916-4f2d-a81e-926a4e3022ee}= new nsIDirectoryEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{af059da0-c85b-40ec-af07-ae4bfdc192cc}= new nsIMutableArray();
-nsXPCComponents_InterfacesByID.prototype.{87d87900-f102-4a15-b345-7b77a49d2df2}= new nsIWebServiceCallContext();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90c4-15b3-11d2-932e-00805f8add32}= new nsIDOMNSUIEvent();
-nsXPCComponents_InterfacesByID.prototype.{7d89ceb8-f985-4095-8f24-421910704e5e}= new nsIDOMSVGMarkerElement();
-nsXPCComponents_InterfacesByID.prototype.{c987629e-6370-45f5-86ec-aa765fa861cd}= new nsIDOMXULLabelElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90c3-15b3-11d2-932e-00805f8add32}= new nsIDOMUIEvent();
-nsXPCComponents_InterfacesByID.prototype.{fb9686a7-719a-49dc-9107-10dea5739341}= new nsIRDFResource();
-nsXPCComponents_InterfacesByID.prototype.{10231b04-7482-4960-bada-3dced0d586fc}= new nsIDOMSVGLength();
-nsXPCComponents_InterfacesByID.prototype.{577cb745-8caf-11d3-aaef-00805f8a4905}= new nsISidebar();
-nsXPCComponents_InterfacesByID.prototype.{7ae42f27-4799-4e7c-86c6-e1dae6ad5157}= new nsIDOMSVGPreserveAspectRatio();
-nsXPCComponents_InterfacesByID.prototype.{3bdb8f01-f141-11d4-a73c-fba4aba8a3fc}= new nsIEditorDocShell();
-nsXPCComponents_InterfacesByID.prototype.{20e790a2-76c6-462d-851a-22ab6cbbe48b}= new nsIProgressDialog();
-nsXPCComponents_InterfacesByID.prototype.{4660c1a1-be2d-4c78-9baf-c22984176c28}= new nsIURIChecker();
-nsXPCComponents_InterfacesByID.prototype.{cc742da2-9c25-4d04-96cd-da407d676c6d}= new nsIAccessibleTreeCache();
-nsXPCComponents_InterfacesByID.prototype.{eaaf61d6-1dd1-11b2-bc6e-8fc96480f20d}= new nsIConsoleListener();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90c7-15b3-11d2-932e-00805f8add32}= new nsIDOMNSHTMLImageElement();
-nsXPCComponents_InterfacesByID.prototype.{3d9f4973-dd2e-48f5-b5f7-2634e09eadd9}= new nsIDOMDocumentStyle();
-nsXPCComponents_InterfacesByID.prototype.{ebfd5de5-713c-40c0-ad7c-f095117fa580}= new nsIFeedProgressListener();
-nsXPCComponents_InterfacesByID.prototype.{b2a34010-3983-11d3-9888-006008962422}= new nsIXPCException();
-nsXPCComponents_InterfacesByID.prototype.{6f30b676-3710-4c2c-80b1-0395fb26516e}= new nsIWebPageDescriptor();
-nsXPCComponents_InterfacesByID.prototype.{4b31f4ed-9424-4710-b946-79b7e33cf3a8}= new nsIKeyObject();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a3-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLQuoteElement();
-nsXPCComponents_InterfacesByID.prototype.{bb961ae1-7432-11d4-b77a-00104b4119f8}= new nsIBidiKeyboard();
-nsXPCComponents_InterfacesByID.prototype.{bcd54a63-34d9-468c-9a55-0fb5d2d8c677}= new nsIXPCComponents_Utils();
-nsXPCComponents_InterfacesByID.prototype.{6f704e69-a5fb-11d9-8ce8-0011246ecd24}= new nsPISocketTransportService();
-nsXPCComponents_InterfacesByID.prototype.{f4211abc-61b3-11d4-9877-00c04fa0cf4a}= new nsIPipe();
-nsXPCComponents_InterfacesByID.prototype.{4ab31d30-372d-11db-a98b-0800200c9a66}= new nsIURLFormatter();
-nsXPCComponents_InterfacesByID.prototype.{8c39ef62-f7c9-11d4-98f5-001083010e9b}= new nsISearchableInputStream();
-nsXPCComponents_InterfacesByID.prototype.{1a6290e6-8285-4e10-963d-d001f8d327b8}= new imgIContainer();
-nsXPCComponents_InterfacesByID.prototype.{7b6e15cf-9793-41ee-adcc-cc1c206c80e6}= new nsIDOMSVGPolylineElement();
-nsXPCComponents_InterfacesByID.prototype.{41be252d-c47b-40f3-94bc-bffe51762d68}= new nsIPluginElement();
-nsXPCComponents_InterfacesByID.prototype.{965eb278-5678-456b-82a7-20a0c86a803c}= new nsIStringBundleOverride();
-nsXPCComponents_InterfacesByID.prototype.{e65fe6e2-2643-463c-97e2-27665efe2386}= new mozIStorageStatementParams();
-nsXPCComponents_InterfacesByID.prototype.{a0c057d0-01c1-11d2-815b-006008119d7a}= new nsIJVMPluginInstance();
-nsXPCComponents_InterfacesByID.prototype.{766d47cb-6d8c-4e71-b6b7-336917629a69}= new nsICipherInfoService();
-nsXPCComponents_InterfacesByID.prototype.{66418cc8-5f5d-4f52-a7f9-db8fb3b2cfe6}= new nsISocketTransport();
-nsXPCComponents_InterfacesByID.prototype.{7330650e-1dd2-11b2-a0c2-9ff86ee97bed}= new nsIOutputIterator();
-nsXPCComponents_InterfacesByID.prototype.{87ad94bc-07c9-412b-b2d8-de245a2e84a5}= new nsIDOMSVGTextContentElement();
-nsXPCComponents_InterfacesByID.prototype.{0cf40717-d7c1-4a94-8c1e-d6c9734101bb}= new nsIHttpHeaderVisitor();
-nsXPCComponents_InterfacesByID.prototype.{8fce8c6a-1dd2-11b2-8352-8cdd2b965efc}= new nsITimerManager();
-nsXPCComponents_InterfacesByID.prototype.{0458dac3-65de-11d5-9b42-00104bdf5339}= new nsIWSDLMessage();
-nsXPCComponents_InterfacesByID.prototype.{f0c5dddb-4713-4603-af2d-bf671838996b}= new nsINetUtil();
-nsXPCComponents_InterfacesByID.prototype.{632b16a8-5c6b-4dc5-a8db-01771af7a79d}= new nsIWebContentConverterService();
-nsXPCComponents_InterfacesByID.prototype.{b7964304-1dd1-11b2-ba20-cf4205772e9d}= new jsdIValue();
-nsXPCComponents_InterfacesByID.prototype.{a38f65ca-1dd1-11b2-95d5-ff2947e9c920}= new jsdIScript();
-nsXPCComponents_InterfacesByID.prototype.{c4a71f8e-82ba-49d7-94f9-beb359361072}= new nsIDOMNSEditableElement();
-nsXPCComponents_InterfacesByID.prototype.{986c11d0-f340-11d4-9075-0010a4e73d9a}= new nsIClassInfo();
-nsXPCComponents_InterfacesByID.prototype.{bfd05261-834c-11d2-8eac-00805f29f370}= new nsIRDFService();
-nsXPCComponents_InterfacesByID.prototype.{aa578b44-abd5-4c19-8b14-36d4de6fdc36}= new nsISupportsPriority();
-nsXPCComponents_InterfacesByID.prototype.{264eb54d-e20d-49a0-890c-1a5986ea81c4}= new nsIKeyObjectFactory();
-nsXPCComponents_InterfacesByID.prototype.{d8c0a083-0868-11d3-915f-d9d889d48e3c}= new nsIDirectoryIterator();
-nsXPCComponents_InterfacesByID.prototype.{fa9c7f6c-61b3-11d4-9877-00c04fa0cf4a}= new nsIInputStream();
-nsXPCComponents_InterfacesByID.prototype.{0dad9e8c-a12d-4dcb-9a6f-7d09839356e1}= new nsISecurityCheckedComponent();
-nsXPCComponents_InterfacesByID.prototype.{a6cf908f-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLFormElement();
-nsXPCComponents_InterfacesByID.prototype.{7ef52eaf-b7e1-462b-87e2-5d1dbaca9048}= new mozIPersonalDictionary();
-nsXPCComponents_InterfacesByID.prototype.{8a3eca16-167e-443d-9485-7e84ed822e95}= new nsIUnicharStreamLoader();
-nsXPCComponents_InterfacesByID.prototype.{9f0c7461-b9a4-47f6-b88c-421dce1bce66}= new nsIDocShell();
-nsXPCComponents_InterfacesByID.prototype.{0b9341f3-95d4-4fa4-adcd-e119e0db2889}= new nsIDOMViewCSS();
-nsXPCComponents_InterfacesByID.prototype.{77a22cf0-6cdf-11da-be43-001422106990}= new nsISAXXMLFilter();
-nsXPCComponents_InterfacesByID.prototype.{a1e5ed50-aa4a-11d1-85b2-00805f0e4dfe}= new nsIJVMManager();
-nsXPCComponents_InterfacesByID.prototype.{fcc7b6b5-f7d7-4e57-abd1-080602deb21d}= new nsITreeColumns();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9086-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLHtmlElement();
-nsXPCComponents_InterfacesByID.prototype.{bbb20a59-524e-4662-981e-5e142814b20c}= new nsIDOMCanvasGradient();
-nsXPCComponents_InterfacesByID.prototype.{ebf334b3-86ef-4bf3-8a92-d775c72defa4}= new nsIDOMSVGAnimatedPoints();
-nsXPCComponents_InterfacesByID.prototype.{8ae1fbf8-1dd2-11b2-bd21-d728069cca92}= new nsIRDFXMLSerializer();
-nsXPCComponents_InterfacesByID.prototype.{a6cf911c-15b3-11d2-932e-00805f8add32}= new nsIDOMNSHTMLAnchorElement();
-nsXPCComponents_InterfacesByID.prototype.{529b987a-cb21-4d58-99d7-9586e7662801}= new nsIDOMCSS2Properties();
-nsXPCComponents_InterfacesByID.prototype.{6962ca8f-0b8b-11d4-9875-00c04fa0d28b}= new nsIProfileStartupListener();
-nsXPCComponents_InterfacesByID.prototype.{6712fdd1-f978-11d4-a144-005004832142}= new nsIFontPackageHandler();
-nsXPCComponents_InterfacesByID.prototype.{0458dac0-65de-11d5-9b42-00104bdf5339}= new nsIWSDLBinding();
-nsXPCComponents_InterfacesByID.prototype.{948c2080-0398-11d3-915e-0000863011c4}= new nsIProxyCreateInstance();
-nsXPCComponents_InterfacesByID.prototype.{a71aee68-dd38-4736-bd79-035fea1a1ec6}= new nsISecurityEventSink();
-nsXPCComponents_InterfacesByID.prototype.{34a4fcf0-66fc-11d4-9528-0020183bf181}= new nsICommandHandler();
-nsXPCComponents_InterfacesByID.prototype.{24d89a65-f598-481e-a297-23cc02599bbd}= new nsIDOMLinkStyle();
-nsXPCComponents_InterfacesByID.prototype.{45f18f8f-1315-4447-a7d5-8aeca77bdcaf}= new nsIDOMSVGPoint();
-nsXPCComponents_InterfacesByID.prototype.{87f29033-c4a6-40a3-ac7a-3ba391f9992d}= new nsIAccessibleEvent();
-nsXPCComponents_InterfacesByID.prototype.{d65ff270-4a1c-11d3-9890-006008962422}= new nsISupportsCString();
-nsXPCComponents_InterfacesByID.prototype.{d18290a0-4a1c-11d3-9890-006008962422}= new nsISupportsID();
-nsXPCComponents_InterfacesByID.prototype.{00020400-0000-0000-c000-000000000046}= new IDispatch();
-nsXPCComponents_InterfacesByID.prototype.{566689cb-9926-4bec-a66e-a034e364ad2c}= new nsIXPInstallManager();
-nsXPCComponents_InterfacesByID.prototype.{656c9417-744e-4fa3-8e2b-8218185efe21}= new nsIXTFXMLVisualWrapper();
-nsXPCComponents_InterfacesByID.prototype.{4d2ebe88-36eb-4e20-bcd1-997b3c1f24ce}= new nsIFeedResultListener();
-nsXPCComponents_InterfacesByID.prototype.{400af3ca-1dd2-11b2-a50a-887ecca2e63a}= new nsIDOMTreeWalker();
-nsXPCComponents_InterfacesByID.prototype.{5470deff-03c9-41b7-a824-e3225266b343}= new nsIDOMUserDataHandler();
-nsXPCComponents_InterfacesByID.prototype.{9da0b650-d07e-4617-a18a-250035572ac8}= new nsIProcess();
-nsXPCComponents_InterfacesByID.prototype.{30465632-a777-44cc-90f9-8145475ef999}= new nsIWindowCreator();
-nsXPCComponents_InterfacesByID.prototype.{22f034b7-a879-43ad-baee-ba6fd4d466ce}= new nsITreeView();
-nsXPCComponents_InterfacesByID.prototype.{c7c0ae9b-a0ba-4f4e-9f2c-c18deb62ee8b}= new nsIDOMDocumentXBL();
-nsXPCComponents_InterfacesByID.prototype.{7914d5f2-14b4-47d0-88f8-70715cfbdfb7}= new nsIXTFBindableElementWrapper();
-nsXPCComponents_InterfacesByID.prototype.{d07f5192-e3d1-11d2-8acd-00105a1b8860}= new nsIObserverService();
-nsXPCComponents_InterfacesByID.prototype.{2a99c757-dfee-4806-bff3-f721440412e0}= new nsISAXContentHandler();
-nsXPCComponents_InterfacesByID.prototype.{0f6c5b09-88b0-43ca-b55c-578f24f3d810}= new nsIScriptableConstant();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b8-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLFrameSetElement();
-nsXPCComponents_InterfacesByID.prototype.{3c14a023-6f4e-11d5-9b46-000064657374}= new nsISchemaSimpleType();
-nsXPCComponents_InterfacesByID.prototype.{00000001-0000-0000-c000-000000000046}= new nsIFactory();
-nsXPCComponents_InterfacesByID.prototype.{4f418f58-f834-4736-a755-e0395bedca9d}= new nsIDragDropHandler();
-nsXPCComponents_InterfacesByID.prototype.{4a5b1e2a-c54e-4226-8f0b-aa4ee36b2396}= new nsIAptanaError();
-nsXPCComponents_InterfacesByID.prototype.{9790d6bc-1dd1-11b2-afe0-bcb310c078bf}= new nsISOAPServiceRegistry();
-nsXPCComponents_InterfacesByID.prototype.{93169940-7663-4eab-af23-94a8a08c2654}= new nsIDOMSVGStopElement();
-nsXPCComponents_InterfacesByID.prototype.{e0f5d182-34bc-11d5-be5b-b760676c6ebc}= new nsIWebBrowserFindInFrames();
-nsXPCComponents_InterfacesByID.prototype.{a647f184-1dd1-11b2-a9d1-8537b201161b}= new nsIConsoleService();
-nsXPCComponents_InterfacesByID.prototype.{d5fa765b-2448-4686-b7c1-5ff13acb0fc9}= new inISearchProcess();
-nsXPCComponents_InterfacesByID.prototype.{de114eb4-29fc-4959-b2f7-2d03eb9bc771}= new nsICacheService();
-nsXPCComponents_InterfacesByID.prototype.{fc97a2a9-d649-4494-931e-db81a156c873}= new nsIFeedTextConstruct();
-nsXPCComponents_InterfacesByID.prototype.{6687823f-56c4-461d-93a1-7f6cb7dfbfba}= new nsIIncrementalDownload();
-nsXPCComponents_InterfacesByID.prototype.{89caa9f0-8b1c-47fb-b0d3-f0aef0bff749}= new nsIDocShellHistory();
-nsXPCComponents_InterfacesByID.prototype.{ae9e84b5-3e2d-457e-8fcd-5bbd2a8b832e}= new nsICacheSession();
-nsXPCComponents_InterfacesByID.prototype.{123f90ab-15b3-11d2-456e-00805f8add32}= new nsIDOMHTMLEmbedElement();
-nsXPCComponents_InterfacesByID.prototype.{c727b2f2-1dd1-11b2-95df-f63c15b4cd35}= new nsIASN1Tree();
-nsXPCComponents_InterfacesByID.prototype.{06d018e0-d41b-4629-a4fc-daaa6029888e}= new nsIUserCertPicker();
-nsXPCComponents_InterfacesByID.prototype.{24ce8b9d-b7ff-4279-aef4-26e158f03e34}= new nsIProfileMigrator();
-nsXPCComponents_InterfacesByID.prototype.{9e508466-5ebb-4618-abfa-9ad47bed0b2e}= new nsIDocShellTreeOwner();
-nsXPCComponents_InterfacesByID.prototype.{b075d5dc-1df1-441a-bebf-680d8caaa19c}= new mozISpellI18NUtil();
-nsXPCComponents_InterfacesByID.prototype.{e339eb1d-3ea8-4c85-87ce-644eb7a19034}= new nsIXTFGenericElement();
-nsXPCComponents_InterfacesByID.prototype.{445fa0fc-2151-4cb4-83d3-34c3e39453de}= new nsIDOMChromeWindow();
-nsXPCComponents_InterfacesByID.prototype.{8b3e8488-1dd2-11b2-b547-956290be347c}= new nsISSLSocketControl();
-nsXPCComponents_InterfacesByID.prototype.{9475a6af-6352-4251-90f9-d65b1cd2ea15}= new nsIHttpEventSink();
-nsXPCComponents_InterfacesByID.prototype.{24306852-c60e-49c3-a455-90f6747118ba}= new nsIGlobalHistory3();
-nsXPCComponents_InterfacesByID.prototype.{7111e88d-fecd-4b17-b7a9-1fa74e23153f}= new nsIMicrosummarySet();
-nsXPCComponents_InterfacesByID.prototype.{31bfd5b4-8ff5-4bfd-a8cb-b3dfbd4f0a5b}= new nsIFeedEntry();
-nsXPCComponents_InterfacesByID.prototype.{c6ab8b9e-32db-464a-ae33-8691d44bc60a}= new nsIDOMSVGAnimatedAngle();
-nsXPCComponents_InterfacesByID.prototype.{8cc6316d-ecbc-4c5f-8fda-28c91fb56e3d}= new nsIDOMXULDocument_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{88655640-e028-11d3-8f5d-0010a4e73d9a}= new nsIXPCComponents_Constructor();
-nsXPCComponents_InterfacesByID.prototype.{249f52a3-2599-4b00-ba40-0481364831a2}= new nsIUTF8ConverterService();
-nsXPCComponents_InterfacesByID.prototype.{96ea4792-d362-4c28-a8c2-0337790d648a}= new nsIDOMLSSerializer();
-nsXPCComponents_InterfacesByID.prototype.{616f5b48-da09-11d3-8cda-0060b0fc14a3}= new nsIBufferedInputStream();
-nsXPCComponents_InterfacesByID.prototype.{eda2e65c-a758-451f-9b05-77cb8de74ed2}= new nsIHTMLInlineTableEditor();
-nsXPCComponents_InterfacesByID.prototype.{f6134682-f28b-11d2-8360-c90899049c3c}= new nsIDOMMimeType();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90ad-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLParamElement();
-nsXPCComponents_InterfacesByID.prototype.{f3262589-48b2-4019-9947-90e5269bbfb9}= new nsIFeedResultService();
-nsXPCComponents_InterfacesByID.prototype.{fd91e2e0-1481-11d3-9333-00104ba0fd40}= new nsIRequestObserver();
-nsXPCComponents_InterfacesByID.prototype.{c814ca20-e0dc-11d3-8f5f-0010a4e73d9a}= new nsIXPCConstructor();
-nsXPCComponents_InterfacesByID.prototype.{b0106d01-9746-440b-b067-68ee043dabc3}= new nsIDOMSVGPathSegMovetoAbs();
-nsXPCComponents_InterfacesByID.prototype.{a2a32f90-9b90-11d3-a189-0050041caf44}= new nsIScriptableInputStream();
-nsXPCComponents_InterfacesByID.prototype.{c946119f-9e7c-41aa-a794-803148045350}= new nsIAddonUpdateCheckListener();
-nsXPCComponents_InterfacesByID.prototype.{d1a47834-6ad4-11d7-bfad-000393636592}= new nsIControllerCommandTable();
-nsXPCComponents_InterfacesByID.prototype.{31c9c52e-1100-457d-abac-d2729e43f506}= new nsIDNSRecord();
-nsXPCComponents_InterfacesByID.prototype.{eb43e1dc-2060-4d8e-aebf-3efec4e21cf8}= new nsIAutoCompleteResult();
-nsXPCComponents_InterfacesByID.prototype.{10dc9c94-8aff-49c6-8af9-d7fdb7339dae}= new nsIAsyncOutputStream();
-nsXPCComponents_InterfacesByID.prototype.{2f977d4b-5485-11d4-87e2-0010a4e75ef2}= new nsIDirectoryServiceProvider2();
-nsXPCComponents_InterfacesByID.prototype.{205b3e49-aa58-499e-880b-aacab9dede01}= new nsIEditorIMESupport();
-nsXPCComponents_InterfacesByID.prototype.{eab4ae76-efdc-4e09-828c-bd921e9a662f}= new nsISelection2();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a2-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLHeadingElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9082-15b3-11d2-932e-00805f8add32}= new nsIDOMText();
-nsXPCComponents_InterfacesByID.prototype.{abbb51a4-be75-4d7f-bd4c-373fd7b52f85}= new nsIDOMClientInformation();
-nsXPCComponents_InterfacesByID.prototype.{ab27f42d-e1e1-4ef6-9c83-059a81da479b}= new nsIDOMCanvasRenderingContext2D();
-nsXPCComponents_InterfacesByID.prototype.{1a637020-1482-11d3-9333-00104ba0fd40}= new nsIStreamListener();
-nsXPCComponents_InterfacesByID.prototype.{40dbcdff-9053-42c5-a57c-3ec910d0f148}= new nsIOutputStreamCallback();
-nsXPCComponents_InterfacesByID.prototype.{4c2f706e-1dd2-11b2-9ebc-85a06e948830}= new jsdIScriptEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{db21eb6c-aebb-4d16-94ec-bcd8bbf513ae}= new nsIClipboardImage();
-nsXPCComponents_InterfacesByID.prototype.{caabf76f-9d35-401f-beac-3955817c645c}= new nsIBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{2f977d49-5485-11d4-87e2-0010a4e75ef2}= new nsICloseAllWindows();
-nsXPCComponents_InterfacesByID.prototype.{662e7b78-1dd2-11b2-a3d3-fc1e5f5fb9d4}= new nsIScreenManager();
-nsXPCComponents_InterfacesByID.prototype.{0765c92c-6145-4253-9db4-594d8023087e}= new nsIUpdateTimerManager();
-nsXPCComponents_InterfacesByID.prototype.{afcd7cd4-d74d-492f-b3b1-d71bfa36874f}= new nsIDOMSVGAnimatedPreserveAspectRatio();
-nsXPCComponents_InterfacesByID.prototype.{9277fe09-f0cc-4cd9-bbce-581dd94b0260}= new nsIHttpChannel();
-nsXPCComponents_InterfacesByID.prototype.{c7b0b43c-1dd1-11b2-9e1c-ce5f6a660630}= new nsIDOMXULDescriptionElement();
-nsXPCComponents_InterfacesByID.prototype.{e2563630-4a1c-11d3-9890-006008962422}= new nsISupportsPRTime();
-nsXPCComponents_InterfacesByID.prototype.{f6305e79-1760-4991-ab4d-a42db60f0e67}= new nsIBookmarkTransactionManager();
-nsXPCComponents_InterfacesByID.prototype.{fa4c7520-1433-11d5-ba24-00108303b117}= new nsIClientAuthDialogs();
-nsXPCComponents_InterfacesByID.prototype.{b2c7ed59-8634-4352-9e37-5484c8b6e4e1}= new nsISelection();
-nsXPCComponents_InterfacesByID.prototype.{e13a24e3-c77a-11d2-80be-006097b76b8e}= new nsIRDFInt();
-nsXPCComponents_InterfacesByID.prototype.{a8760fcd-3de5-446a-a009-5cf877e7a4df}= new nsIDOMSVGLengthList();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90bf-15b3-11d2-932e-00805f8add32}= new nsIDOMCSSStyleRule();
-nsXPCComponents_InterfacesByID.prototype.{8bb35ed9-e332-462d-9155-4a002ab5c958}= new nsIServiceManager();
-nsXPCComponents_InterfacesByID.prototype.{d48f8ea2-c912-48fa-9714-10d8098f05ea}= new nsIShellService_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{3de0a31c-feaf-400f-9f1e-4ef71f8b20cc}= new nsILoadGroup();
-nsXPCComponents_InterfacesByID.prototype.{a3f5396c-a6e8-414a-8fbc-c8d831746328}= new nsIExtensionManager();
-nsXPCComponents_InterfacesByID.prototype.{d143a084-b626-4614-845f-41f3ca43a674}= new nsICharsetResolver();
-nsXPCComponents_InterfacesByID.prototype.{3e73ff5f-154e-494f-b640-3c654ba2cc2b}= new nsICookieManager2();
-nsXPCComponents_InterfacesByID.prototype.{312e3b94-dc98-4ccc-b2fb-e3406f905cc6}= new nsIScriptableDataType();
-nsXPCComponents_InterfacesByID.prototype.{1448b42f-cf0d-466e-9a15-64e876ebe857}= new nsIMIMEInfo();
-nsXPCComponents_InterfacesByID.prototype.{6ef2b400-dbf4-4c12-8787-fe15caac5648}= new nsIDOMSVGAnimatedPathData();
-nsXPCComponents_InterfacesByID.prototype.{29cc2e14-6d18-4710-bda9-a88d9d3bc8dc}= new nsIDOMSVGTransform();
-nsXPCComponents_InterfacesByID.prototype.{f5d9e7b0-d930-11d3-b057-00a024ffc08c}= new nsIWebNavigation();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9075-15b3-11d2-932e-00805f8add32}= new nsIDOMDocument();
-nsXPCComponents_InterfacesByID.prototype.{a6cf907f-15b3-11d2-932e-00805f8add32}= new nsIDOMProcessingInstruction();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9094-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTextAreaElement();
-nsXPCComponents_InterfacesByID.prototype.{e0c493d2-9542-11d2-8eb8-00805f29f370}= new nsIRDFLiteral();
-nsXPCComponents_InterfacesByID.prototype.{58b6190e-37b3-412a-ba02-1d5ad6c6ea7c}= new nsIDOMSVGAngle();
-nsXPCComponents_InterfacesByID.prototype.{75506f8a-b504-11d5-a7f2-ca108ab8b6fc}= new nsIDOMXPathEvaluator();
-nsXPCComponents_InterfacesByID.prototype.{4805e684-49b9-11d3-9ce4-ed60bd6cb5bc}= new nsITableEditor();
-nsXPCComponents_InterfacesByID.prototype.{d9948a4d-f49c-4456-938a-acda2c8d7741}= new nsIPrintOptions();
-nsXPCComponents_InterfacesByID.prototype.{bac3648d-55a3-491b-9863-a18fd7506689}= new nsIDOMSVGPathSegLinetoAbs();
-nsXPCComponents_InterfacesByID.prototype.{3c14a02e-6f4e-11d5-9b46-000064657374}= new nsISchemaAttribute();
-nsXPCComponents_InterfacesByID.prototype.{f2504c26-7cf5-426a-86a7-e50998ac57c1}= new nsIBrowserBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{75d1553d-63bf-4b5d-a8f7-e4e4cac21ba4}= new nsIPrintingPromptService();
-nsXPCComponents_InterfacesByID.prototype.{0458dac8-65de-11d5-9b42-00104bdf5339}= new nsISOAPOperationBinding();
-nsXPCComponents_InterfacesByID.prototype.{99715845-95fc-4a56-aa53-214b65c26e22}= new nsIDOMElementCSSInlineStyle();
-nsXPCComponents_InterfacesByID.prototype.{5586a590-8c82-11d5-90f3-0010a4e73d9a}= new nsIWritableVariant();
-nsXPCComponents_InterfacesByID.prototype.{bc3173bd-aa46-46a0-9d25-d9867a9659b6}= new nsICommandLine();
-nsXPCComponents_InterfacesByID.prototype.{c8d4603a-960a-43e3-a0fa-b3746a270e0e}= new nsIBookmarksService_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{1831dd2e-1dd2-11b2-bdb3-86b7b50b70b5}= new nsIRDFXMLParser();
-nsXPCComponents_InterfacesByID.prototype.{427c5511-941b-48c0-9abc-8ec9ea5d964b}= new nsISchemaCollection();
-nsXPCComponents_InterfacesByID.prototype.{2226927e-1dd2-11b2-b57f-faab47288563}= new nsIURIRefObject();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90c6-15b3-11d2-932e-00805f8add32}= new nsIDOMNSHTMLFormElement();
-nsXPCComponents_InterfacesByID.prototype.{1ab4b724-fd7e-41af-bc19-80bb7299f3c0}= new nsIXTFXULVisualWrapper();
-nsXPCComponents_InterfacesByID.prototype.{83b6019c-cbc4-11d2-8cca-0060b0fc14a3}= new nsICollection();
-nsXPCComponents_InterfacesByID.prototype.{e347005e-6cd0-11da-be43-001422106990}= new nsISAXAttributes();
-nsXPCComponents_InterfacesByID.prototype.{9deabc90-28d5-41d3-a660-474f2254f4ba}= new nsIJSXMLHttpRequest();
-nsXPCComponents_InterfacesByID.prototype.{d974c99e-4148-4df9-8d98-de834a2f6462}= new nsIProgressEventSink();
-nsXPCComponents_InterfacesByID.prototype.{7e835f60-5fea-11d3-a177-0050041caf44}= new nsIDataChannel();
-nsXPCComponents_InterfacesByID.prototype.{129d3bd5-8a26-4b0b-b8a0-19fdea029196}= new nsIAuthPromptProvider();
-nsXPCComponents_InterfacesByID.prototype.{6317f32c-9bc7-11d3-bccc-0060b0fc76bd}= new nsIContentViewerFile();
-nsXPCComponents_InterfacesByID.prototype.{5ef62896-0c0a-41f1-bb3c-44a60f5dfdab}= new nsITreeContentView();
-nsXPCComponents_InterfacesByID.prototype.{fc66ffb6-5404-4908-a4a3-27f92fa0579d}= new nsIConverterInputStream();
-nsXPCComponents_InterfacesByID.prototype.{f728830e-1dd1-11b2-9598-fb9f414f2465}= new nsIScreen();
-nsXPCComponents_InterfacesByID.prototype.{9c18bb4e-1dd1-11b2-bf91-9cc82c275823}= new nsIDocCharset();
-nsXPCComponents_InterfacesByID.prototype.{f34cb3c8-1dd1-11b2-8a18-a93a99d92c08}= new nsISOAPPropertyBagMutator();
-nsXPCComponents_InterfacesByID.prototype.{71135b6c-294e-4634-a8e4-a72398f1e72a}= new nsIDOMXULTextBoxElement();
-nsXPCComponents_InterfacesByID.prototype.{6aff3102-320d-4986-9790-12316bb87cf9}= new nsIDOMRGBColor();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b3-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLTableCaptionElement();
-nsXPCComponents_InterfacesByID.prototype.{dd9ab9be-fed3-4bff-a72d-5390d52dd887}= new nsIIFrameBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{3210a6aa-b464-4f57-9335-b22815567cf1}= new nsIPopupWindowManager();
-nsXPCComponents_InterfacesByID.prototype.{995ea724-1dd1-11b2-9211-c21bdd3e7ed0}= new nsISupportsInterfacePointer();
-nsXPCComponents_InterfacesByID.prototype.{8cbceb6e-8e27-46f2-8808-444c6499f836}= new nsIUpdateCheckListener();
-nsXPCComponents_InterfacesByID.prototype.{b5a21556-35fc-4815-aff1-f9142639686e}= new nsIByteArrayInputStream();
-nsXPCComponents_InterfacesByID.prototype.{9ae49600-1dd1-11b2-877f-e62f620c5e92}= new nsISOAPEncoding();
-nsXPCComponents_InterfacesByID.prototype.{ede34b03-57b6-45bf-a259-3550b5697286}= new nsIDOMSVGViewSpec();
-nsXPCComponents_InterfacesByID.prototype.{2bd97d63-e928-4d52-9fd4-34061349a9a6}= new nsIWebContentHandlerInfo();
-nsXPCComponents_InterfacesByID.prototype.{a6cf911a-15b3-11d2-932e-00805f8add32}= new nsIDOMNSHTMLFormControlList();
-nsXPCComponents_InterfacesByID.prototype.{1f8111b2-d44d-4d11-845a-a70ae06b7d04}= new nsIDOMXULTreeElement();
-nsXPCComponents_InterfacesByID.prototype.{feaf9285-05ac-4898-a69f-c3bd350767e4}= new nsIFrameLoaderOwner();
-nsXPCComponents_InterfacesByID.prototype.{5fb96f46-1dd2-11b2-a5dc-998ca8636ea9}= new nsIDOMNSHistory();
-nsXPCComponents_InterfacesByID.prototype.{ab62465c-494c-446e-b671-930bb98a7bc4}= new nsISessionRoaming();
-nsXPCComponents_InterfacesByID.prototype.{ce600ca8-e98a-4419-ad61-2f6d0cb0ecc8}= new nsIDOMNSXPathExpression();
-nsXPCComponents_InterfacesByID.prototype.{cba22c53-fcce-11d2-96d4-0060b0fb9956}= new nsIDragSession();
-nsXPCComponents_InterfacesByID.prototype.{97f863f3-f886-11d4-9d39-0060b0f8baff}= new nsITransactionList();
-nsXPCComponents_InterfacesByID.prototype.{dc7ba13f-8cb6-48d2-9e22-a4a6817abbb9}= new nsIDOMSVGPathSegCurvetoCubicRel();
-nsXPCComponents_InterfacesByID.prototype.{876a2015-6b66-11d7-8f18-0003938a9d96}= new nsIClipboardDragDropHookList();
-nsXPCComponents_InterfacesByID.prototype.{919e792a-6490-40b8-bba5-f9e9ad5640c8}= new nsIScrollable();
-nsXPCComponents_InterfacesByID.prototype.{96d086e6-1dd1-11b2-b6b2-b77b59390247}= new gfxIFormats();
-nsXPCComponents_InterfacesByID.prototype.{575249a7-de7a-4602-a997-b7ad2b3b6dab}= new nsIWinAppHelper();
-nsXPCComponents_InterfacesByID.prototype.{e4723748-1dd1-11b2-8ee6-866a532a6237}= new nsIDOMNodeFilter();
-nsXPCComponents_InterfacesByID.prototype.{7b19ac06-a5fb-11d9-9f82-0011246ecd24}= new nsISocketTransportService();
-nsXPCComponents_InterfacesByID.prototype.{0ddf9e1c-1dd2-11b2-a183-908a08aa75ae}= new nsISelectionDisplay();
-nsXPCComponents_InterfacesByID.prototype.{e3a24a60-d651-11d2-9843-006008962422}= new nsIJSCID();
-nsXPCComponents_InterfacesByID.prototype.{db242e01-e4d9-11d2-9dde-000064657374}= new nsIObserver();
-nsXPCComponents_InterfacesByID.prototype.{c86ae131-d101-11d2-9841-006008962422}= new nsIJSID();
-nsXPCComponents_InterfacesByID.prototype.{e2b05e40-4a1c-11d3-9890-006008962422}= new nsISupportsChar();
-nsXPCComponents_InterfacesByID.prototype.{ca89b55b-6faf-4051-9645-1c03ef5108f8}= new nsIPrintProgressParams();
-nsXPCComponents_InterfacesByID.prototype.{45988a14-b240-4d07-ae64-50ecca26e6d8}= new nsIDocShell_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{15fd6940-8ea7-11d3-93ad-00104ba0fd40}= new nsIProtocolHandler();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9074-15b3-11d2-932e-00805f8add32}= new nsIDOMDOMImplementation();
-nsXPCComponents_InterfacesByID.prototype.{6f9d2890-167d-11d5-8daf-000064657374}= new nsPIXPIProxy();
-nsXPCComponents_InterfacesByID.prototype.{55f3b431-1aa8-4e23-ad3d-a9f5644bdaa6}= new nsITreeBoxObject();
-nsXPCComponents_InterfacesByID.prototype.{1a180f60-93b2-11d2-9b8b-00805f8a16d9}= new nsIPersistentProperties();
-nsXPCComponents_InterfacesByID.prototype.{4f8ae0dc-d266-4a32-875b-6a9de71a8ce9}= new nsIXPCComponents_utils_Sandbox();
-nsXPCComponents_InterfacesByID.prototype.{663ca4a8-d219-4000-925d-d8f66406b626}= new nsIAccessibleRetrieval();
-nsXPCComponents_InterfacesByID.prototype.{0fd5caa9-1ffc-42b1-aea1-3fbe73116070}= new nsIExtensionManager_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{3ab244a9-f09d-44da-9e3f-ee4d67367f2d}= new nsIScriptableUnescapeHTML();
-nsXPCComponents_InterfacesByID.prototype.{0b6e2c69-5cf5-48b0-9dfd-c95950e2cc7b}= new nsIStreamConverter();
-nsXPCComponents_InterfacesByID.prototype.{bddeda3f-9020-4d12-8c70-984ee9f7935e}= new nsIIOService();
-nsXPCComponents_InterfacesByID.prototype.{e2dfc89c-7ae0-4651-8aee-7f5edc2aa626}= new nsIDOMNSHTMLOptionElement();
-nsXPCComponents_InterfacesByID.prototype.{cce7152e-4395-4231-a781-c347c5446cc2}= new imgIDecoderObserver();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9128-15b3-11d2-932e-00805f8add32}= new nsIPrinterEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{1c773b30-d1cf-11d2-bd95-00805f8ae3f4}= new nsIDOMEventTarget();
-nsXPCComponents_InterfacesByID.prototype.{5316c380-b2f8-11d2-a374-0080c6f80e4b}= new nsIRegistryValue();
-nsXPCComponents_InterfacesByID.prototype.{bbe0d0ee-e9ed-4f84-a6e4-e58f66530caa}= new nsIDOMSVGScriptElement();
-nsXPCComponents_InterfacesByID.prototype.{18cbdb18-3917-42fd-9c4a-0b2112d41a6d}= new nsIMarkupDocumentViewer();
-nsXPCComponents_InterfacesByID.prototype.{455d4234-0330-43d2-bbfb-99afbecbfeb0}= new nsIFTPEventSink();
-nsXPCComponents_InterfacesByID.prototype.{da58ad80-4eb6-11d2-8164-006008119d7a}= new nsIPluginManager();
-nsXPCComponents_InterfacesByID.prototype.{f8365b4a-da55-4e47-be7a-230142360f62}= new nsIBrowserProfileMigrator();
-nsXPCComponents_InterfacesByID.prototype.{3ce86063-0a35-48ec-b372-f198b7d04755}= new nsIDOMSVGPathSegCurvetoQuadraticSmoothAbs();
-nsXPCComponents_InterfacesByID.prototype.{a6cf908b-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLBaseElement();
-nsXPCComponents_InterfacesByID.prototype.{e3d56a20-c7ec-11d3-8cda-0060b0fc14a3}= new nsIFileInputStream();
-nsXPCComponents_InterfacesByID.prototype.{a6cf909d-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLMenuElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a0-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLDivElement();
-nsXPCComponents_InterfacesByID.prototype.{b0fb539e-f4ab-4ea1-bd75-e6d2813e5fc1}= new nsIUpdate();
-nsXPCComponents_InterfacesByID.prototype.{4a91aeb3-4100-43ee-a21e-9866268757c5}= new nsIXSLTProcessor();
-nsXPCComponents_InterfacesByID.prototype.{da19e9dc-dea2-4a1d-a958-9be375c9799c}= new nsIDOMBeforeUnloadEvent();
-nsXPCComponents_InterfacesByID.prototype.{0458dac9-65de-11d5-9b42-00104bdf5339}= new nsISOAPPartBinding();
-nsXPCComponents_InterfacesByID.prototype.{a6cf908a-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLMetaElement();
-nsXPCComponents_InterfacesByID.prototype.{814dbfdd-32ff-4734-9aea-b84c925bc9c0}= new nsIXTFStyledElementWrapper();
-nsXPCComponents_InterfacesByID.prototype.{9cf4fc9c-90b2-4d66-88f5-35049b558aee}= new nsIDOMSVGLocatable();
-nsXPCComponents_InterfacesByID.prototype.{8b1de83d-cebb-49fa-8245-c0fe319eb7b6}= new nsISAXMutableAttributes();
-nsXPCComponents_InterfacesByID.prototype.{3c14a02c-6f4e-11d5-9b46-000064657374}= new nsISchemaElement();
-nsXPCComponents_InterfacesByID.prototype.{6aaaa30d-54ab-434a-8ae8-6d29a566d870}= new nsIDOMXULSelectControlItemElement();
-nsXPCComponents_InterfacesByID.prototype.{d1d412d9-15d6-4a6a-9533-b949dc175ff5}= new nsIPrefBranchInternal();
-nsXPCComponents_InterfacesByID.prototype.{94a6db98-3f34-4529-a35f-89ef49713795}= new nsIDOMSVGPathSegList();
-nsXPCComponents_InterfacesByID.prototype.{1f39bc95-090d-40a5-9dee-6d5a591e48bf}= new mozIStorageStatement();
-nsXPCComponents_InterfacesByID.prototype.{d85a17c2-aa7c-11d2-9b8c-00805f8a16d9}= new nsIStringBundle();
-nsXPCComponents_InterfacesByID.prototype.{542a98b9-2889-4922-aaf4-02b6056f4136}= new nsISHEntry();
-nsXPCComponents_InterfacesByID.prototype.{8758b72b-63d4-4685-b908-4275126410fb}= new nsIDOMNavigator();
-nsXPCComponents_InterfacesByID.prototype.{978ff520-d26c-11d2-9842-006008962422}= new nsIXPCComponents_Classes();
-nsXPCComponents_InterfacesByID.prototype.{4f18ada2-0ddc-11d5-9d3a-0060b0f8baff}= new nsPIEditorTransaction();
-nsXPCComponents_InterfacesByID.prototype.{58e4f602-a7c8-4cd1-9dca-716705e826ef}= new nsISearchSubmission();
-nsXPCComponents_InterfacesByID.prototype.{f914492c-0138-4123-a634-6ef8e3f126f8}= new nsIDOMWindowInternal();
-nsXPCComponents_InterfacesByID.prototype.{f8a13364-184e-4da3-badf-5c04837537f8}= new nsITreeSelection();
-nsXPCComponents_InterfacesByID.prototype.{bfcd37b0-a49f-11d5-910d-0010a4e73d9a}= new nsIPropertyBag();
-nsXPCComponents_InterfacesByID.prototype.{f1094df6-ce0e-42c9-9847-2f663172c38d}= new nsIPrintSettings();
-nsXPCComponents_InterfacesByID.prototype.{2ad6e9e6-1379-4e45-a899-a54b27ff915c}= new nsIFastLoadWriteControl();
-nsXPCComponents_InterfacesByID.prototype.{86092181-a5db-4a89-be03-07dcc14d426e}= new nsIDOMSVGSymbolElement();
-nsXPCComponents_InterfacesByID.prototype.{898d4189-7012-4ae9-a2af-435491cfa114}= new mozIStorageFunction();
-nsXPCComponents_InterfacesByID.prototype.{3bf0c3d7-3bd9-4cf2-a971-33572c503e1e}= new nsIDebug();
-nsXPCComponents_InterfacesByID.prototype.{a5b64be0-d563-46bb-ae95-132e46fcd42f}= new nsIServerSocket();
-nsXPCComponents_InterfacesByID.prototype.{e64bb081-13ba-430e-ab70-73a9f1d3de58}= new nsIDOMXULDocument();
-nsXPCComponents_InterfacesByID.prototype.{9e201104-78e9-4cb3-aff5-7f0a9cf446c0}= new nsIDOMPopupBlockedEvent();
-nsXPCComponents_InterfacesByID.prototype.{6088a862-1229-11d9-941d-c035b2e390c6}= new nsIEditorSpellCheck();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b1-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLScriptElement();
-nsXPCComponents_InterfacesByID.prototype.{d2206418-1dd1-11b2-8e55-acddcd2bcfb8}= new nsIWebBrowserChromeFocus();
-nsXPCComponents_InterfacesByID.prototype.{d14c7111-55e0-11d3-91d9-00105aa3f7dc}= new nsIEntityConverter();
-nsXPCComponents_InterfacesByID.prototype.{d1899240-f9d2-11d2-bdd6-000064657374}= new nsISimpleEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{e932bf55-0a64-4beb-923a-1f32d3661044}= new nsIEmbeddingSiteWindow2();
-nsXPCComponents_InterfacesByID.prototype.{a6cf908e-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLBodyElement();
-nsXPCComponents_InterfacesByID.prototype.{6757d790-2916-498e-aaca-6b668a956875}= new nsIChannelEventSink();
-nsXPCComponents_InterfacesByID.prototype.{e9fcb9a4-d376-458f-b720-e65e7df593bc}= new nsICookie();
-nsXPCComponents_InterfacesByID.prototype.{44e314ca-75b1-4f3d-9553-9b3507912108}= new nsIPrintingPrompt();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9092-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLOptionElement();
-nsXPCComponents_InterfacesByID.prototype.{336a9590-4d19-11d3-9893-006008962422}= new nsIXPCComponents_ClassesByID();
-nsXPCComponents_InterfacesByID.prototype.{ba78db7b-b88c-4b76-baf9-3c2296a585ae}= new nsIMultiPartChannel();
-nsXPCComponents_InterfacesByID.prototype.{88800e93-c6af-4d69-9ee0-29c1100ff431}= new nsIFrameLoader();
-nsXPCComponents_InterfacesByID.prototype.{9124c666-6133-4be6-b3ed-dd0ec35f1e64}= new nsIAccessibleCaret();
-nsXPCComponents_InterfacesByID.prototype.{e4a39f75-93da-4264-8bf2-1a5bfb1f2f68}= new nsIFeedWriter();
-nsXPCComponents_InterfacesByID.prototype.{5b3675a1-02db-4f8f-a560-b34736635f47}= new nsIMIMEService();
-nsXPCComponents_InterfacesByID.prototype.{f3c50361-14fe-11d3-bf87-00105a1b0627}= new nsIDOMXULCommandDispatcher();
-nsXPCComponents_InterfacesByID.prototype.{83f892cf-7ed3-490e-967a-62640f3158e1}= new nsICommandParams();
-nsXPCComponents_InterfacesByID.prototype.{da48b3c0-1284-11d5-ac67-000064657374}= new nsIX509CertDB();
-nsXPCComponents_InterfacesByID.prototype.{0f807301-39d2-11d6-a7f2-8f504ff870dc}= new nsIDOMRangeException();
-nsXPCComponents_InterfacesByID.prototype.{96343820-307c-11d2-bc15-00805f912fe7}= new nsIRDFCompositeDataSource();
-nsXPCComponents_InterfacesByID.prototype.{01c78c65-31da-456b-90bf-da39d09fdcbf}= new nsIScriptableInterfaces();
-nsXPCComponents_InterfacesByID.prototype.{c97b466c-1e6e-4773-a4ab-2b2b3190a7a6}= new nsILineInputStream();
-nsXPCComponents_InterfacesByID.prototype.{9188bc85-f92e-11d2-81ef-0060083a0bcf}= new nsIWeakReference();
-nsXPCComponents_InterfacesByID.prototype.{6e934f17-1975-49c2-880e-4f9fa79a1b2e}= new nsITypeAheadFind_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{93db35b1-6b33-49d5-ad25-1ed1a7611ad2}= new nsIDOMSVGPathSegLinetoVerticalRel();
-nsXPCComponents_InterfacesByID.prototype.{00000000-0000-0000-c000-000000000046}= new nsISupports();
-nsXPCComponents_InterfacesByID.prototype.{570f39d0-efd0-11d3-b093-00a024ffc08c}= new nsIWebProgress();
-nsXPCComponents_InterfacesByID.prototype.{0401f299-685b-43a1-82b4-ce1a0011598c}= new nsIDOMGetSVGDocument();
-nsXPCComponents_InterfacesByID.prototype.{729cb096-d5f1-4fc4-97cd-4b86e6917f97}= new nsIAutoCompleteController_MOZILLA_1_8_BRANCH();
-nsXPCComponents_InterfacesByID.prototype.{7b2ca1ca-1dd2-11b2-87ec-d217dbe22b85}= new nsISSLStatus();
-nsXPCComponents_InterfacesByID.prototype.{52bdc7ca-a934-4a40-a2e2-ac83a70b4019}= new nsIDOMSmartCardEvent();
-nsXPCComponents_InterfacesByID.prototype.{0574ed81-c088-11d2-96ed-00104b7b7deb}= new nsIDOMXULElement();
-nsXPCComponents_InterfacesByID.prototype.{5a31c7a1-e122-11d2-9a57-000064657374}= new nsIClipboardOwner();
-nsXPCComponents_InterfacesByID.prototype.{6228d644-17fe-11d4-8cee-0060b0fc14a3}= new nsIAuthPromptWrapper();
-nsXPCComponents_InterfacesByID.prototype.{ba434c60-9d52-11d3-afb0-00a024ffc08c}= new nsIWebBrowserChrome();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90b0-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLAreaElement();
-nsXPCComponents_InterfacesByID.prototype.{ea8a6cb1-9176-45db-989d-d0e89f563d7e}= new nsIDOMSVGStylable();
-nsXPCComponents_InterfacesByID.prototype.{dc42f467-4094-437d-9e3e-8912a072aede}= new nsILocalFileWin();
-nsXPCComponents_InterfacesByID.prototype.{2f977d44-5485-11d4-87e2-0010a4e75ef2}= new nsIWebBrowserFind();
-nsXPCComponents_InterfacesByID.prototype.{d49a3ac7-e779-46c8-ae92-214420aa1b71}= new nsIDOMSVGUseElement();
-nsXPCComponents_InterfacesByID.prototype.{2fd0a785-9f2d-4327-8871-8c3e0783891d}= new nsICertVerificationResult();
-nsXPCComponents_InterfacesByID.prototype.{6684bce9-50db-48e1-81b7-98102bf81357}= new nsICertVerificationListener();
-nsXPCComponents_InterfacesByID.prototype.{edec7c28-4b06-4692-842f-8bf238e61ac1}= new nsIMicrosummaryService();
-nsXPCComponents_InterfacesByID.prototype.{aafea151-c271-4505-9978-a100d292800c}= new rdfITripleVisitor();
-nsXPCComponents_InterfacesByID.prototype.{b7dd3c1c-1dd1-11b2-83eb-8a857d199e0f}= new jsdIErrorHook();
-nsXPCComponents_InterfacesByID.prototype.{0bd57cbd-a090-44aa-a61b-2fb876841194}= new nsIDOMSVGGElement();
-nsXPCComponents_InterfacesByID.prototype.{f6134680-f28b-11d2-8360-c90899049c3c}= new nsIDOMPluginArray();
-nsXPCComponents_InterfacesByID.prototype.{028e2b2a-1f0b-43a4-a1a7-365d2d7f35d0}= new nsICipherInfo();
-nsXPCComponents_InterfacesByID.prototype.{a6cf907b-15b3-11d2-932e-00805f8add32}= new nsIDOMNamedNodeMap();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90a6-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLBaseFontElement();
-nsXPCComponents_InterfacesByID.prototype.{5afaba88-1dd2-11b2-9249-dd65a129d0e4}= new nsIDOMXULCheckboxElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf906b-15b3-11d2-932e-00805f8add32}= new nsIDOMWindow();
-nsXPCComponents_InterfacesByID.prototype.{a6cf909c-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLDirectoryElement();
-nsXPCComponents_InterfacesByID.prototype.{efa53257-526d-4350-9088-343a510346b8}= new inIFileSearch();
-nsXPCComponents_InterfacesByID.prototype.{3dce9071-f3b9-4280-a6ee-776cdfe3dd9e}= new nsIDOMNSHTMLAreaElement();
-nsXPCComponents_InterfacesByID.prototype.{a6cf90ab-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLImageElement();
-nsXPCComponents_InterfacesByID.prototype.{dedec2ca-f941-4638-a9c0-32e02ff83d5b}= new nsIX509CertDB2();
-nsXPCComponents_InterfacesByID.prototype.{a5ed3a01-7cc7-11d3-bf87-00105a1b0627}= new nsIControllers();
-nsXPCComponents_InterfacesByID.prototype.{3c14a02f-6f4e-11d5-9b46-000064657374}= new nsISchemaAttributeGroup();
-nsXPCComponents_InterfacesByID.prototype.{577a1b4c-b3d4-4c76-9cf8-753e6606114f}= new nsIFeedContainer();
-nsXPCComponents_InterfacesByID.prototype.{e06e8b08-8cdd-4503-a0a0-6f3b943602af}= new nsIUnicharStreamLoaderObserver();
-nsXPCComponents_InterfacesByID.prototype.{3e5432cd-9568-4bd1-8cbe-d50aba110743}= new nsIEmbeddingSiteWindow();
-nsXPCComponents_InterfacesByID.prototype.{fab51c92-95c3-4468-b317-7de4d7588254}= new nsICacheEntryInfo();
-nsXPCComponents_InterfacesByID.prototype.{089410f3-9777-44f1-a882-ab4225696434}= new nsIDOMSVGFitToViewBox();
-nsXPCComponents_InterfacesByID.prototype.{54382875-ed12-4f90-9a63-1f0498d0a3f2}= new jsdIFilterEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{5c8ec09d-bfbf-4eaf-8a36-0d84b5c8f35b}= new nsIDNSService();
-nsXPCComponents_InterfacesByID.prototype.{f902d5ba-2ef6-444e-8a17-52cb70715c10}= new nsIScriptableInterfaceInfo();
-nsXPCComponents_InterfacesByID.prototype.{51191434-1dd2-11b2-a17c-e49c4e99a4e3}= new nsIPK11Token();
-nsXPCComponents_InterfacesByID.prototype.{0eae9a46-1dd2-11b2-aca0-9176f05fe9db}= new nsIControllerCommand();
-nsXPCComponents_InterfacesByID.prototype.{b8d727f7-67f4-4dc1-a318-ec0c87280816}= new nsIXSLTProcessorPrivate();
-nsXPCComponents_InterfacesByID.prototype.{99ec6690-535f-11d4-9a58-000064657374}= new nsISOAPParameter();
-nsXPCComponents_InterfacesByID.prototype.{a6cf909a-15b3-11d2-932e-00805f8add32}= new nsIDOMHTMLOListElement();
-nsXPCComponents_InterfacesByID.prototype.{a796816d-7d47-4348-9ab8-c7aeb3216a7d}= new nsITimerCallback();
-nsXPCComponents_InterfacesByID.prototype.{155809f1-71f1-47c5-be97-d812ba560405}= new nsIXPCComponents();
-nsXPCComponents_InterfacesByID.prototype.{8f8a23d0-5472-11d3-bbc8-0000861d1237}= new nsISocketProviderService();
-nsXPCComponents_InterfacesByID.prototype.{1ef83ece-b645-4b55-a501-df42c3333b47}= new nsIWebServiceSOAPCallContext();
-nsXPCComponents_InterfacesByID.prototype.{2f977d45-5485-11d4-87e2-0010a4e75ef2}= new nsIAuthPrompt();
-nsXPCComponents_InterfacesByID.prototype.{e5d0d92b-ea45-4622-ab48-302baf2094ee}= new nsIAtomService();
-nsXPCComponents_InterfacesByID.prototype.{6f2bdbd0-58c3-11d3-be36-00104bde6048}= new nsIHTTPIndex();
-nsXPCComponents_InterfacesByID.prototype.{1e5b7c43-4688-45ce-92e1-77ed931e3bbe}= new nsICryptoHash();
-nsXPCComponents_InterfacesByID.prototype.{7b9badc6-c9bc-447a-8670-dbd195aed24b}= new nsIDOMDocumentRange();
-nsXPCComponents_InterfacesByID.prototype.{08923af1-e7a3-4fae-ba02-128502193994}= new nsIProfileUnlocker();
-nsXPCComponents_InterfacesByID.prototype.{354b5f02-1dd2-11b2-b053-b8c2997022a0}= new nsIDOMNodeIterator();
-nsXPCComponents_InterfacesByID.prototype.{62a93afb-93a1-465c-84c8-0432264229de}= new nsIWebNavigationInfo();
-nsXPCComponents_InterfacesByID.prototype.{de8db85f-c1de-4d87-94ba-7844890f91fe}= new nsIAutoCompleteSearch();
-nsXPCComponents_InterfacesByID.prototype.{30d7ec3a-f376-4652-9276-3092ec57abb6}= new nsIEncodedChannel();
-nsXPCComponents_InterfacesByID.prototype.{9b434f48-438c-4f85-89de-b7f321a45341}= new nsIToolkitProfileService();
-nsXPCComponents_InterfacesByID.prototype.{912e342a-1dd2-11b2-b09f-cf3af38c15f0}= new jsdIContextEnumerator();
-nsXPCComponents_InterfacesByID.prototype.{d4214e90-fb94-11d2-bdd8-00104bde6048}= new nsIRDFContainer();
-nsXPCComponents_InterfacesByID.prototype.{0c89efb0-1aae-11d3-9141-006008a6edf6}= new nsIScriptableDateFormat();
-nsXPCComponents_InterfacesByID.prototype.{a6cf9076-15b3-11d2-932e-00805f8add32}= new nsIDOMDocumentFragment();
-nsXPCComponents_InterfacesByID.prototype.{a6cf907a-15b3-11d2-932e-00805f8add32}= new nsIDOMEntityReference();
-nsXPCComponents_InterfacesByID.prototype.{78650582-4e93-4b60-8e85-26ebd3eb14ca}= new nsIProperties();
-nsXPCComponents_InterfacesByID.prototype.{22b00276-ec23-4034-a764-395da539b4be}= new nsIUpdatePrompt();
-nsXPCComponents_InterfacesByID.prototype.{1695ca39-e40d-44dc-81db-a51b6fd234fa}= new nsIDOMSVGRectElement();
-nsXPCComponents_InterfacesByID.prototype.{77c0e42a-1dd2-11b2-8ebf-edc6606f2f4b}= new mozITXTToHTMLConv();
-nsXPCComponents_InterfacesByID.prototype.{cb284a83-1ca5-4000-9841-ce345ce84915}= new nsIMicrosummaryObserver();
-nsXPCComponents_InterfacesByID.prototype.{bbf8cab0-d43a-11d3-8cc2-00609792278c}= new nsIDirectoryServiceProvider();
-nsXPCComponents_InterfacesByID.prototype.{4f813a88-7aca-4607-9896-d97270cdf15e}= new nsIDocShellLoadInfo();
-nsXPCComponents_InterfacesByID.prototype.{2fc229a0-5860-11d3-9899-006008962422}= new nsIXPCComponents_Results();
-nsXPCComponents_InterfacesByID.prototype.{e13a24e1-c77a-11d2-80be-006097b76b8e}= new nsIRDFDate();
-nsXPCComponents_InterfacesByID.prototype.{1691a02f-53b2-4cb8-8769-48e7efc908b8}= new nsIContentViewerEdit();
-nsXPCComponents_InterfacesByID.prototype.{d0d4b136-1dd1-11b2-9371-f0727ef827c0}= new nsISupportsPrimitive();
-nsXPCComponents_InterfacesByID.prototype.{a5480e0d-ac7c-42e5-aca5-d7f0bbffa207}= new nsIXULTreeBuilderObserver();
-nsXPCComponents_InterfacesByID.prototype.{8de811f0-1dd2-11b2-8bf1-e9aa324984b2}= new nsISSLStatusProvider();
-nsXPCComponents_InterfacesByID.prototype.{f0edfcdd-8bca-4d32-9226-7421001396a4}= new rdfISerializer();
-nsXPCComponents_InterfacesByID.prototype.{9de04775-77c5-48b5-9f4a-8996a936bfb2}= new nsIDOMSVGPolygonElement();
-nsXPCComponents_InterfacesByID.prototype.{f2166929-91b6-4372-8d5f-c366f47a5f54}= new nsIDOMStorageList();
-nsXPCComponents_InterfacesByID.prototype.{692303c0-2f83-11d3-8cd0-0060b0fc14a3}= new nsIAboutModule();
-nsXPCComponents_InterfacesByID.prototype.{ee42c54a-19d3-472b-8bc3-76318d5ab5f4}= new nsIWritablePropertyBag2();
-nsXPCComponents_InterfacesByID.prototype.{050cdc00-3b8e-11d3-9ce4-a458f454fcbc}= new nsIDocumentStateListener();
-nsXPCComponents_InterfacesByID.prototype.{2edf705f-d252-4971-9f09-71dd0f760dc6}= new nsISHTransaction();
-nsXPCComponents_InterfacesByID.prototype.{eb1a5d30-ab33-11d2-8ec6-00805f29f370}= new nsIRDFXMLSinkObserver();
-nsXPCComponents_InterfacesByID.prototype.{6459b7ce-6b57-4934-a0af-0133ba6f9085}= new nsIOnReadyStateChangeHandler();
-nsXPCComponents_InterfacesByID.prototype.{b6b957e6-1dd1-11b2-89d7-e30624f50b00}= new nsIASN1Sequence();
-nsXPCComponents_InterfacesByID.prototype.{cc79f293-7114-4287-870b-d28aa61aa7df}= new nsIAutoCompleteSimpleResult();
-nsXPCComponents_InterfacesByID.prototype.{2a72e20f-e337-4822-8994-2e35b5550d03}= new nsIDOMToString();
-nsXPCComponents_InterfacesByID.prototype.{fede66a9-9f96-4507-a22a-775ee885577e}= new nsIUpdateManager();
-nsXPCComponents_InterfacesByID.prototype.{77947960-b4af-11d2-bd93-00805f8ae3f4}= new nsIDOMScreen();
-nsXPCComponents_InterfacesByID.prototype.{e400e688-6b54-4a84-8c4e-56b40281981a}= new nsIStreamListenerProxy();
-nsXPCComponents_InterfacesByID.prototype.{9b2f0b4a-8f00-4a78-961a-7e84ed49b0b6}= new nsISchemaLoader();
-nsXPCComponents_InterfacesByID.prototype.{b3507946-4a44-4e40-b66c-f23e320997c5}= new nsPIAccessNode();
-nsXPCComponents_InterfacesByID.prototype.{ddf633d8-e9a4-439d-ad88-de636fd9bb75}= new nsIUploadChannel();
-nsXPCComponents_InterfacesByID.prototype.{d5b61b82-1da4-11d3-bf87-00105a1b0627}= new nsIController();
-nsXPCComponents_InterfacesByID.prototype.{8092b5f3-dc8a-459c-94f1-92f8011f2438}= new nsIDOMSVGURIReference();
-nsXPCComponents_InterfacesByID.prototype.{86960956-edb0-11d4-998b-00b0d02354a0}= new nsIBadCertListener();
-nsXPCComponents_InterfacesByID.prototype.{fc540c28-8edd-4b7a-9c30-8638289b7a7d}= new nsIDOMStorageEvent();
-*/
-BarProp.prototype= new Array();
-function BarProp(){};
-BarProp.prototype.visible=false;
-Screen.prototype= new Array();
-function Screen(){};
-Screen.prototype.top="";
-Screen.prototype.left="";
-Screen.prototype.width=0;
-Screen.prototype.height=0;
-Screen.prototype.pixelDepth=0;
-Screen.prototype.colorDepth=0;
-Screen.prototype.availWidth=0;
-Screen.prototype.availHeight=0;
-Screen.prototype.availLeft="";
-Screen.prototype.availTop="";
-Crypto.prototype= new Array();
-function Crypto(){};
-Crypto.prototype.version="";
-Crypto.prototype.enableSmartCardEvents="";
-Crypto.prototype.generateCRMFRequest=function(){};
-Crypto.prototype.importUserCertificates=function(arg1,arg2,arg3){};
-Crypto.prototype.popChallengeResponse=function(arg1){};
-Crypto.prototype.random=function(arg1){};
-Crypto.prototype.signText=function(arg1,arg2){};
-Crypto.prototype.alert=function(arg1){};
-Crypto.prototype.logout=function(){};
-Crypto.prototype.disableRightClick=function(){};
-Pkcs11.prototype= new Array();
-function Pkcs11(){};
-Pkcs11.prototype.deletemodule=function(arg1){};
-Pkcs11.prototype.addmodule=function(arg1,arg2,arg3,arg4){};
-XULControllers.prototype= new Array();
-function XULControllers(){};
-XULControllers.prototype.QueryInterface=function(arg1){};
-XULControllers.prototype.commandDispatcher="";
-XULControllers.prototype.getControllerForCommand=function(arg1){};
-XULControllers.prototype.insertControllerAt=function(arg1,arg2){};
-XULControllers.prototype.removeControllerAt=function(arg1){};
-XULControllers.prototype.getControllerAt=function(arg1){};
-XULControllers.prototype.appendController=function(arg1){};
-XULControllers.prototype.removeController=function(arg1){};
-XULControllers.prototype.getControllerId=function(arg1){};
-XULControllers.prototype.getControllerById=function(arg1){};
-XULControllers.prototype.getControllerCount=function(){};
-StorageList.prototype= new Array();
-function StorageList(){};
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.jsdt.support.firefox/META-INF/MANIFEST.MF
deleted file mode 100644
index d7df4a84..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,15 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %Bundle-Name
-Bundle-SymbolicName: org.eclipse.wst.jsdt.support.firefox;singleton:=true
-Bundle-Version: 1.0.103.qualifier
-Require-Bundle: org.eclipse.wst.jsdt.core;bundle-version="[1.0.0,2.0.0)",
- org.eclipse.wst.jsdt.ui;bundle-version="[1.0.0,2.0.0)",
- org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.swt;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
- com.ibm.icu;bundle-version="[3.8.1,4.0.0)",
- org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)"
-Bundle-RequiredExecutionEnvironment: J2SE-1.4
-Bundle-Vendor: %Bundle-Vendor
-Bundle-Localization: plugin
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/about.html b/bundles/org.eclipse.wst.jsdt.support.firefox/about.html
deleted file mode 100644
index 46023304..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/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.support.firefox/build.properties b/bundles/org.eclipse.wst.jsdt.support.firefox/build.properties
deleted file mode 100644
index 06c79f5a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/build.properties
+++ /dev/null
@@ -1,19 +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.xml,\
- libraries/,\
- plugin.properties,\
- about.html
-src.includes = libraries/
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/libraries/FireFox2.0.0.3.js b/bundles/org.eclipse.wst.jsdt.support.firefox/libraries/FireFox2.0.0.3.js
deleted file mode 100644
index c5cbceb3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/libraries/FireFox2.0.0.3.js
+++ /dev/null
@@ -1,8838 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 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
- ******************************************************************************
- *
- **/
-
-
-
-/**
-* Object Window
-* @super Global
-* @type constructor
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype=new Global();
-function Window(){};
-/**
-* property location
-* @type Location
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.location=new Location();
-/**
-* property window
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.window=new Window();
-/**
-* property property
-* @type String
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.property="";
-/**
-* property navigator
-* @type Navigator
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.navigator=new Navigator();
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* function dump(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.dump=function(arg1){};
-/**
-* property console
-* @type Object
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.console=new Object();
-/**
-* property document
-* @type HTMLDocument
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.document=new HTMLDocument();
-/**
-* property Packages
-* @type JavaPackage
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.Packages=new JavaPackage();
-/**
-* property sun
-* @type JavaPackage
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.sun=new JavaPackage();
-/**
-* property java
-* @type JavaPackage
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.java=new JavaPackage();
-/**
-* property netscape
-* @type Object
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.netscape=new Object();
-/**
-* function XPCNativeWrapper()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.XPCNativeWrapper=function(){};
-/**
-* function GeckoActiveXObject(arg1)
-* @type GeckoActiveXObject
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.GeckoActiveXObject=function(arg1){};
-/**
-* property Components
-* @type nsXPCComponents
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.Components=new nsXPCComponents();
-/**
-* property parent
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.parent=new Window();
-/**
-* property top
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.top=new Window();
-/**
-* property scrollbars
-* @type BarProp
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollbars=new BarProp();
-/**
-* property name
-* @type String
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.name="";
-/**
-* property scrollX
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollX=0;
-/**
-* property scrollY
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollY=0;
-/**
-* function scrollTo(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollTo=function(arg1,arg2){};
-/**
-* function scrollBy(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollBy=function(arg1,arg2){};
-/**
-* function getSelection()
-* @type String
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.getSelection=function(){};
-/**
-* function scrollByLines(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollByLines=function(arg1){};
-/**
-* function scrollByPages(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollByPages=function(arg1){};
-/**
-* function sizeToContent()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.sizeToContent=function(){};
-/**
-* function setTimeout()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.setTimeout=function(){};
-/**
-* function setInterval()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.setInterval=function(){};
-/**
-* function clearTimeout()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.clearTimeout=function(){};
-/**
-* function clearInterval()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.clearInterval=function(){};
-/**
-* function setResizable(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.setResizable=function(arg1){};
-/**
-* function captureEvents(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.captureEvents=function(arg1){};
-/**
-* function releaseEvents(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.releaseEvents=function(arg1){};
-/**
-* function routeEvent(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.routeEvent=function(arg1){};
-/**
-* function enableExternalCapture()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.enableExternalCapture=function(){};
-/**
-* function disableExternalCapture()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.disableExternalCapture=function(){};
-/**
-* function prompt()
-* @type String
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.prompt=function(){};
-/**
-* function open()
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.open=function(){};
-/**
-* function openDialog()
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.openDialog=function(){};
-/**
-* property frames
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.frames=new Window();
-/**
-* function find()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.find=function(){};
-/**
-* property self
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.self=new Window();
-/**
-* property screen
-* @type Screen
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.screen=new Screen();
-/**
-* property history
-* @type History
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.history=new History();
-/**
-* property content
-* @type Window
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.content=new Window();
-/**
-* property menubar
-* @type BarProp
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.menubar=new BarProp();
-/**
-* property toolbar
-* @type BarProp
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.toolbar=new BarProp();
-/**
-* property locationbar
-* @type BarProp
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.locationbar=new BarProp();
-/**
-* property personalbar
-* @type BarProp
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.personalbar=new BarProp();
-/**
-* property statusbar
-* @type BarProp
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.statusbar=new BarProp();
-/**
-* property directories
-* @type BarProp
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.directories=new BarProp();
-/**
-* property closed
-* @type Boolean
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.closed=false;
-/**
-* property crypto
-* @type Crypto
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.crypto=new Crypto();
-/**
-* property pkcs11
-* @type Pkcs11
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.pkcs11=new Pkcs11();
-/**
-* property controllers
-* @type XULControllers
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.controllers=new XULControllers();
-/**
-* property opener
-* @type Object
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.opener=new Object();
-/**
-* property status
-* @type String
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.status="";
-/**
-* property defaultStatus
-* @type String
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.defaultStatus="";
-/**
-* property innerWidth
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.innerWidth=0;
-/**
-* property innerHeight
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.innerHeight=0;
-/**
-* property outerWidth
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.outerWidth=0;
-/**
-* property outerHeight
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.outerHeight=0;
-/**
-* property screenX
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.screenX=0;
-/**
-* property screenY
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.screenY=0;
-/**
-* property pageXOffset
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.pageXOffset=0;
-/**
-* property pageYOffset
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.pageYOffset=0;
-/**
-* property scrollMaxX
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollMaxX=0;
-/**
-* property scrollMaxY
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scrollMaxY=0;
-/**
-* property length
-* @type Number
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.length=0;
-/**
-* property fullScreen
-* @type Boolean
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.fullScreen=false;
-/**
-* function alert(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.alert=function(arg1){};
-/**
-* function confirm(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.confirm=function(arg1){};
-/**
-* function focus()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.focus=function(){};
-/**
-* function blur()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.blur=function(){};
-/**
-* function back()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.back=function(){};
-/**
-* function forward()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.forward=function(){};
-/**
-* function home()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.home=function(){};
-/**
-* function stop()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.stop=function(){};
-/**
-* function print()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.print=function(){};
-/**
-* function moveTo(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.moveTo=function(arg1,arg2){};
-/**
-* function moveBy(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.moveBy=function(arg1,arg2){};
-/**
-* function resizeTo(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.resizeTo=function(arg1,arg2){};
-/**
-* function resizeBy(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.resizeBy=function(arg1,arg2){};
-/**
-* function scroll(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.scroll=function(arg1,arg2){};
-/**
-* function close()
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.close=function(){};
-/**
-* function updateCommands(arg1)
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.updateCommands=function(arg1){};
-/**
-* function atob(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.atob=function(arg1){};
-/**
-* function btoa(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.btoa=function(arg1){};
-/**
-* property frameElement
-* @type Object
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.frameElement=new Object();
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.dispatchEvent=function(arg1){};
-/**
-* function getComputedStyle(arg1,arg2)
-* @type CSSStyleDeclaration
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.getComputedStyle=function(arg1,arg2){};
-/**
-* property sessionStorage
-* @type Object
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.sessionStorage=new Object();
-/**
-* property globalStorage
-* @type StorageList
-* @memberOf Window
-* @since FireFox 2.0.0.3
-*/
-Window.prototype.globalStorage=new StorageList();
-/**
-* Object Location
-* @super Object
-* @type constructor
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype=new Object();
-function Location(){};
-/**
-* property hash
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.hash="";
-/**
-* property host
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.host="";
-/**
-* property hostname
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.hostname="";
-/**
-* property href
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.href="";
-/**
-* property pathname
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.pathname="";
-/**
-* property port
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.port="";
-/**
-* property protocol
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.protocol="";
-/**
-* property search
-* @type String
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.search="";
-/**
-* function replace(arg1)
-* @param {Object} arg1
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.replace=function(arg1){};
-/**
-* function assign(arg1)
-* @param {Object} arg1
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.assign=function(arg1){};
-/**
-* function reload()
-* @memberOf Location
-* @since FireFox 2.0.0.3
-*/
-Location.prototype.reload=function(){};
-/**
-* Object Navigator
-* @super Object
-* @type constructor
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype=new Object();
-function Navigator(){};
-/**
-* property platform
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.platform="";
-/**
-* property appCodeName
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.appCodeName="";
-/**
-* property appName
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.appName="";
-/**
-* property appVersion
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.appVersion="";
-/**
-* property language
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.language="";
-/**
-* property mimeTypes
-* @type MimeTypeArray
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.mimeTypes=new MimeTypeArray();
-/**
-* property oscpu
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.oscpu="";
-/**
-* property vendor
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.vendor="";
-/**
-* property vendorSub
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.vendorSub="";
-/**
-* property product
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.product="";
-/**
-* property productSub
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.productSub="";
-/**
-* property plugins
-* @type PluginArray
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.plugins=new PluginArray();
-/**
-* property securityPolicy
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.securityPolicy="";
-/**
-* property userAgent
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.userAgent="";
-/**
-* property cookieEnabled
-* @type Boolean
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.cookieEnabled=false;
-/**
-* property onLine
-* @type Boolean
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.onLine=false;
-/**
-* function javaEnabled()
-* @type Boolean
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.javaEnabled=function(){};
-/**
-* function taintEnabled()
-* @type Boolean
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.taintEnabled=function(){};
-/**
-* property buildID
-* @type String
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.buildID="";
-/**
-* function preference()
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.preference=function(){};
-/**
-* function registerContentHandler(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.registerContentHandler=function(arg1,arg2,arg3){};
-/**
-* function registerProtocolHandler(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Navigator
-* @since FireFox 2.0.0.3
-*/
-Navigator.prototype.registerProtocolHandler=function(arg1,arg2,arg3){};
-/**
-* Object MimeTypeArray
-* @super Object
-* @type constructor
-* @memberOf MimeTypeArray
-* @since FireFox 2.0.0.3
-*/
-MimeTypeArray.prototype=new Object();
-function MimeTypeArray(){};
-/**
-* property length
-* @type Number
-* @memberOf MimeTypeArray
-* @since FireFox 2.0.0.3
-*/
-MimeTypeArray.prototype.length=0;
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf MimeTypeArray
-* @since FireFox 2.0.0.3
-*/
-MimeTypeArray.prototype.item=function(arg1){};
-/**
-* function namedItem(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf MimeTypeArray
-* @since FireFox 2.0.0.3
-*/
-MimeTypeArray.prototype.namedItem=function(arg1){};
-/**
-* Object MimeType
-* @super Object
-* @type constructor
-* @memberOf MimeType
-* @since FireFox 2.0.0.3
-*/
-MimeType.prototype=new Object();
-function MimeType(){};
-/**
-* property description
-* @type String
-* @memberOf MimeType
-* @since FireFox 2.0.0.3
-*/
-MimeType.prototype.description="";
-/**
-* property enabledPlugin
-* @type Object
-* @memberOf MimeType
-* @since FireFox 2.0.0.3
-*/
-MimeType.prototype.enabledPlugin=new Object();
-/**
-* property suffixes
-* @type String
-* @memberOf MimeType
-* @since FireFox 2.0.0.3
-*/
-MimeType.prototype.suffixes="";
-/**
-* property type
-* @type String
-* @memberOf MimeType
-* @since FireFox 2.0.0.3
-*/
-MimeType.prototype.type="";
-/**
-* Object PluginArray
-* @super Object
-* @type constructor
-* @memberOf PluginArray
-* @since FireFox 2.0.0.3
-*/
-PluginArray.prototype=new Object();
-function PluginArray(){};
-/**
-* property length
-* @type Number
-* @memberOf PluginArray
-* @since FireFox 2.0.0.3
-*/
-PluginArray.prototype.length=0;
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf PluginArray
-* @since FireFox 2.0.0.3
-*/
-PluginArray.prototype.item=function(arg1){};
-/**
-* function namedItem(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf PluginArray
-* @since FireFox 2.0.0.3
-*/
-PluginArray.prototype.namedItem=function(arg1){};
-/**
-* function refresh()
-* @memberOf PluginArray
-* @since FireFox 2.0.0.3
-*/
-PluginArray.prototype.refresh=function(){};
-/**
-* Object Plugin
-* @super Object
-* @type constructor
-* @memberOf Plugin
-* @since FireFox 2.0.0.3
-*/
-Plugin.prototype=new Object();
-function Plugin(){};
-/**
-* property length
-* @type Number
-* @memberOf Plugin
-* @since FireFox 2.0.0.3
-*/
-Plugin.prototype.length=0;
-/**
-* property description
-* @type String
-* @memberOf Plugin
-* @since FireFox 2.0.0.3
-*/
-Plugin.prototype.description="";
-/**
-* property filename
-* @type String
-* @memberOf Plugin
-* @since FireFox 2.0.0.3
-*/
-Plugin.prototype.filename="";
-/**
-* property name
-* @type String
-* @memberOf Plugin
-* @since FireFox 2.0.0.3
-*/
-Plugin.prototype.name="";
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf Plugin
-* @since FireFox 2.0.0.3
-*/
-Plugin.prototype.item=function(arg1){};
-/**
-* function namedItem(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf Plugin
-* @since FireFox 2.0.0.3
-*/
-Plugin.prototype.namedItem=function(arg1){};
-/**
-* Object HTMLDocument
-* @super Object
-* @type constructor
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype=new Object();
-function HTMLDocument(){};
-/**
-* function open()
-* @type Window
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.open=function(){};
-/**
-* property location
-* @type Location
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.location=new Location();
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* property xmlVersion
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.xmlVersion=new Object();
-/**
-* property title
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.title="";
-/**
-* property referrer
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.referrer="";
-/**
-* property styleSheets
-* @type StyleSheetList
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.styleSheets=new StyleSheetList();
-/**
-* property baseURI
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.textContent=new Object();
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* property nodeName
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.nodeName="";
-/**
-* property nodeValue
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.nodeValue=new Object();
-/**
-* property nodeType
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.nodeType=0;
-/**
-* property parentNode
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.parentNode=new Object();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type DocumentType
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.firstChild=new DocumentType();
-/**
-* property lastChild
-* @type HTMLHtmlElement
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.lastChild=new HTMLHtmlElement();
-/**
-* property previousSibling
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.previousSibling=new Object();
-/**
-* property nextSibling
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.nextSibling=new Object();
-/**
-* property attributes
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.attributes=new Object();
-/**
-* property ownerDocument
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.ownerDocument=new Object();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.prefix=new Object();
-/**
-* property localName
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.localName=new Object();
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.hasAttributes=function(){};
-/**
-* property doctype
-* @type DocumentType
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.doctype=new DocumentType();
-/**
-* property implementation
-* @type DOMImplementation
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.implementation=new DOMImplementation();
-/**
-* property documentElement
-* @type HTMLHtmlElement
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.documentElement=new HTMLHtmlElement();
-/**
-* function createElement(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createElement=function(arg1){};
-/**
-* function createDocumentFragment()
-* @type Element
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createDocumentFragment=function(){};
-/**
-* function createTextNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createTextNode=function(arg1){};
-/**
-* function createComment(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createComment=function(arg1){};
-/**
-* function createCDATASection(arg1)
-* @type Text
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createCDATASection=function(arg1){};
-/**
-* function createProcessingInstruction(arg1,arg2)
-* @type Element
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createProcessingInstruction=function(arg1,arg2){};
-/**
-* function createAttribute(arg1)
-* @type Attr
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createAttribute=function(arg1){};
-/**
-* function createEntityReference(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createEntityReference=function(arg1){};
-/**
-* function getElementsByTagName(arg1)
-* @type NodeList
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getElementsByTagName=function(arg1){};
-/**
-* function importNode(arg1,arg2)
-* @type Element
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.importNode=function(arg1,arg2){};
-/**
-* function createElementNS(arg1,arg2)
-* @type Element
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createElementNS=function(arg1,arg2){};
-/**
-* function createAttributeNS(arg1,arg2)
-* @type Element
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createAttributeNS=function(arg1,arg2){};
-/**
-* function getElementsByTagNameNS(arg1,arg2)
-* @type NodeList
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-/**
-* function getElementById(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getElementById=function(arg1){};
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.NOTATION_NODE=0;
-/**
-* property URL
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.URL="";
-/**
-* property body
-* @type HTMLBodyElement
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.body=new HTMLBodyElement();
-/**
-* property images
-* @type HTMLCollection
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.images=new HTMLCollection();
-/**
-* property applets
-* @type HTMLCollection
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.applets=new HTMLCollection();
-/**
-* property links
-* @type HTMLCollection
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.links=new HTMLCollection();
-/**
-* property forms
-* @type HTMLCollection
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.forms=new HTMLCollection();
-/**
-* property anchors
-* @type HTMLCollection
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.anchors=new HTMLCollection();
-/**
-* property cookie
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.cookie="";
-/**
-* function close()
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.close=function(){};
-/**
-* function getElementsByName(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getElementsByName=function(arg1){};
-/**
-* property width
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.width=0;
-/**
-* property height
-* @type Number
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.height=0;
-/**
-* property alinkColor
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.alinkColor="";
-/**
-* property linkColor
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.linkColor="";
-/**
-* property vlinkColor
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.vlinkColor="";
-/**
-* property bgColor
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.bgColor="";
-/**
-* property fgColor
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.fgColor="";
-/**
-* property domain
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.domain="";
-/**
-* property embeds
-* @type HTMLCollection
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.embeds=new HTMLCollection();
-/**
-* function getSelection()
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getSelection=function(){};
-/**
-* function write()
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.write=function(){};
-/**
-* function writeln()
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.writeln=function(){};
-/**
-* function clear()
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.clear=function(){};
-/**
-* function captureEvents(arg1)
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.captureEvents=function(arg1){};
-/**
-* function releaseEvents(arg1)
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.releaseEvents=function(arg1){};
-/**
-* function routeEvent(arg1)
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.routeEvent=function(arg1){};
-/**
-* property compatMode
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.compatMode="";
-/**
-* property plugins
-* @type HTMLCollection
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.plugins=new HTMLCollection();
-/**
-* property designMode
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.designMode="";
-/**
-* function execCommand(arg1,arg2,arg3)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.execCommand=function(arg1,arg2,arg3){};
-/**
-* function execCommandShowHelp(arg1)
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.execCommandShowHelp=function(arg1){};
-/**
-* function queryCommandEnabled(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.queryCommandEnabled=function(arg1){};
-/**
-* function queryCommandIndeterm(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.queryCommandIndeterm=function(arg1){};
-/**
-* function queryCommandState(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.queryCommandState=function(arg1){};
-/**
-* function queryCommandSupported(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.queryCommandSupported=function(arg1){};
-/**
-* function queryCommandText(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.queryCommandText=function(arg1){};
-/**
-* function queryCommandValue(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.queryCommandValue=function(arg1){};
-/**
-* property characterSet
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.characterSet="";
-/**
-* property dir
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.dir="";
-/**
-* property contentType
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.contentType="";
-/**
-* property lastModified
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.lastModified="";
-/**
-* function getBoxObjectFor(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getBoxObjectFor=function(arg1){};
-/**
-* function setBoxObjectFor(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.setBoxObjectFor=function(arg1,arg2){};
-/**
-* function createEvent(arg1)
-* @type Event
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createEvent=function(arg1){};
-/**
-* property preferredStylesheetSet
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.preferredStylesheetSet="";
-/**
-* property defaultView
-* @type Window
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.defaultView=new Window();
-/**
-* function createRange()
-* @type Range
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createRange=function(){};
-/**
-* function createNodeIterator(arg1,arg2,arg3,arg4)
-* @type Iterator
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @param {Object} arg4
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createNodeIterator=function(arg1,arg2,arg3,arg4){};
-/**
-* function createTreeWalker(arg1,arg2,arg3,arg4)
-* @type TreeWalker
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @param {Object} arg4
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createTreeWalker=function(arg1,arg2,arg3,arg4){};
-/**
-* function getAnonymousNodes(arg1)
-* @type NodeList
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getAnonymousNodes=function(arg1){};
-/**
-* function getAnonymousElementByAttribute(arg1,arg2,arg3)
-* @type Element
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getAnonymousElementByAttribute=function(arg1,arg2,arg3){};
-/**
-* function addBinding(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.addBinding=function(arg1,arg2){};
-/**
-* function removeBinding(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.removeBinding=function(arg1,arg2){};
-/**
-* function getBindingParent(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.getBindingParent=function(arg1){};
-/**
-* function loadBindingDocument(arg1)
-* @type HTMLDocument
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.loadBindingDocument=function(arg1){};
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.dispatchEvent=function(arg1){};
-/**
-* property inputEncoding
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.inputEncoding="";
-/**
-* property xmlEncoding
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.xmlEncoding=new Object();
-/**
-* property xmlStandalone
-* @type Boolean
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.xmlStandalone=false;
-/**
-* property strictErrorChecking
-* @type Boolean
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.strictErrorChecking=false;
-/**
-* property documentURI
-* @type String
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.documentURI="";
-/**
-* function adoptNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.adoptNode=function(arg1){};
-/**
-* property domConfig
-* @type Object
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.domConfig=new Object();
-/**
-* function normalizeDocument()
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.normalizeDocument=function(){};
-/**
-* function renameNode(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.renameNode=function(arg1,arg2,arg3){};
-/**
-* function createExpression(arg1,arg2)
-* @type RegExp
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createExpression=function(arg1,arg2){};
-/**
-* function createNSResolver(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.createNSResolver=function(arg1){};
-/**
-* function evaluate(arg1,arg2,arg3,arg4,arg5)
-* @type HTMLDocument
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @param {Object} arg4
-* @param {Object} arg5
-* @memberOf HTMLDocument
-* @since FireFox 2.0.0.3
-*/
-HTMLDocument.prototype.evaluate=function(arg1,arg2,arg3,arg4,arg5){};
-/**
-* Object StyleSheetList
-* @super Object
-* @type constructor
-* @memberOf StyleSheetList
-* @since FireFox 2.0.0.3
-*/
-StyleSheetList.prototype=new Object();
-function StyleSheetList(){};
-/**
-* property length
-* @type Number
-* @memberOf StyleSheetList
-* @since FireFox 2.0.0.3
-*/
-StyleSheetList.prototype.length=0;
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf StyleSheetList
-* @since FireFox 2.0.0.3
-*/
-StyleSheetList.prototype.item=function(arg1){};
-/**
-* Object NodeList
-* @super Object
-* @type constructor
-* @memberOf NodeList
-* @since FireFox 2.0.0.3
-*/
-NodeList.prototype=new Object();
-function NodeList(){};
-/**
-* property length
-* @type Number
-* @memberOf NodeList
-* @since FireFox 2.0.0.3
-*/
-NodeList.prototype.length=0;
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf NodeList
-* @since FireFox 2.0.0.3
-*/
-NodeList.prototype.item=function(arg1){};
-/**
-* Object DocumentType
-* @super Object
-* @type constructor
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype=new Object();
-function DocumentType(){};
-/**
-* property nodeName
-* @type String
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.nodeName="";
-/**
-* property nodeValue
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.nodeValue=new Object();
-/**
-* property nodeType
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.nodeType=0;
-/**
-* property parentNode
-* @type HTMLDocument
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.parentNode=new HTMLDocument();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.firstChild=new Object();
-/**
-* property lastChild
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.lastChild=new Object();
-/**
-* property previousSibling
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.previousSibling=new Object();
-/**
-* property nextSibling
-* @type HTMLHtmlElement
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.nextSibling=new HTMLHtmlElement();
-/**
-* property attributes
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.attributes=new Object();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.prefix=new Object();
-/**
-* property localName
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.localName=new Object();
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.hasAttributes=function(){};
-/**
-* property name
-* @type String
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.name="";
-/**
-* property entities
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.entities=new Object();
-/**
-* property notations
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.notations=new Object();
-/**
-* property publicId
-* @type String
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.publicId="";
-/**
-* property systemId
-* @type String
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.systemId="";
-/**
-* property internalSubset
-* @type String
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.internalSubset="";
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.NOTATION_NODE=0;
-/**
-* property baseURI
-* @type String
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type Object
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.textContent=new Object();
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf DocumentType
-* @since FireFox 2.0.0.3
-*/
-DocumentType.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object HTMLHtmlElement
-* @super Object
-* @type constructor
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype=new Object();
-function HTMLHtmlElement(){};
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* property nodeName
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.nodeName="";
-/**
-* property nodeValue
-* @type Object
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.nodeValue=new Object();
-/**
-* property nodeType
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.nodeType=0;
-/**
-* property parentNode
-* @type HTMLDocument
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.parentNode=new HTMLDocument();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type HTMLHeadElement
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.firstChild=new HTMLHeadElement();
-/**
-* property lastChild
-* @type HTMLBodyElement
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.lastChild=new HTMLBodyElement();
-/**
-* property previousSibling
-* @type DocumentType
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.previousSibling=new DocumentType();
-/**
-* property nextSibling
-* @type Object
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.nextSibling=new Object();
-/**
-* property attributes
-* @type NamedNodeMap
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.attributes=new NamedNodeMap();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.prefix=new Object();
-/**
-* property localName
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.localName="";
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.hasAttributes=function(){};
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.NOTATION_NODE=0;
-/**
-* property tagName
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.tagName="";
-/**
-* function getAttribute(arg1)
-* @type Attr
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getAttribute=function(arg1){};
-/**
-* function setAttribute(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.setAttribute=function(arg1,arg2){};
-/**
-* function removeAttribute(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.removeAttribute=function(arg1){};
-/**
-* function getAttributeNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getAttributeNode=function(arg1){};
-/**
-* function setAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.setAttributeNode=function(arg1){};
-/**
-* function removeAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.removeAttributeNode=function(arg1){};
-/**
-* function getElementsByTagName(arg1)
-* @type NodeList
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getElementsByTagName=function(arg1){};
-/**
-* function getAttributeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getAttributeNS=function(arg1,arg2){};
-/**
-* function setAttributeNS(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-/**
-* function removeAttributeNS(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.removeAttributeNS=function(arg1,arg2){};
-/**
-* function getAttributeNodeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-/**
-* function setAttributeNodeNS(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.setAttributeNodeNS=function(arg1){};
-/**
-* function getElementsByTagNameNS(arg1,arg2)
-* @type NodeList
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-/**
-* function hasAttribute(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.hasAttribute=function(arg1){};
-/**
-* function hasAttributeNS(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.hasAttributeNS=function(arg1,arg2){};
-/**
-* property id
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.id="";
-/**
-* property title
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.title="";
-/**
-* property lang
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.lang="";
-/**
-* property dir
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.dir="";
-/**
-* property className
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.className="";
-/**
-* property version
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.version="";
-/**
-* property offsetTop
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.offsetTop=0;
-/**
-* property offsetLeft
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.offsetLeft=0;
-/**
-* property offsetWidth
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.offsetWidth=0;
-/**
-* property offsetHeight
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.offsetHeight=0;
-/**
-* property offsetParent
-* @type Object
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.offsetParent=new Object();
-/**
-* property innerHTML
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.innerHTML="";
-/**
-* property scrollTop
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.scrollTop=0;
-/**
-* property scrollLeft
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.scrollLeft=0;
-/**
-* property scrollHeight
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.scrollHeight=0;
-/**
-* property scrollWidth
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.scrollWidth=0;
-/**
-* property clientHeight
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.clientHeight=0;
-/**
-* property clientWidth
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.clientWidth=0;
-/**
-* property tabIndex
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.tabIndex=0;
-/**
-* function blur()
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.blur=function(){};
-/**
-* function focus()
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.focus=function(){};
-/**
-* property spellcheck
-* @type Boolean
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.spellcheck=false;
-/**
-* property style
-* @type CSSStyleDeclaration
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.style=new CSSStyleDeclaration();
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.dispatchEvent=function(arg1){};
-/**
-* property baseURI
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type String
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.textContent="";
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf HTMLHtmlElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHtmlElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object HTMLHeadElement
-* @super Object
-* @type constructor
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype=new Object();
-function HTMLHeadElement(){};
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* property nodeName
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.nodeName="";
-/**
-* property nodeValue
-* @type Object
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.nodeValue=new Object();
-/**
-* property nodeType
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.nodeType=0;
-/**
-* property parentNode
-* @type HTMLHtmlElement
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.parentNode=new HTMLHtmlElement();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type Comment
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.firstChild=new Comment();
-/**
-* property lastChild
-* @type HTMLScriptElement
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.lastChild=new HTMLScriptElement();
-/**
-* property previousSibling
-* @type Object
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.previousSibling=new Object();
-/**
-* property nextSibling
-* @type HTMLBodyElement
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.nextSibling=new HTMLBodyElement();
-/**
-* property attributes
-* @type NamedNodeMap
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.attributes=new NamedNodeMap();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.prefix=new Object();
-/**
-* property localName
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.localName="";
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.hasAttributes=function(){};
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.NOTATION_NODE=0;
-/**
-* property tagName
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.tagName="";
-/**
-* function getAttribute(arg1)
-* @type Attr
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getAttribute=function(arg1){};
-/**
-* function setAttribute(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.setAttribute=function(arg1,arg2){};
-/**
-* function removeAttribute(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.removeAttribute=function(arg1){};
-/**
-* function getAttributeNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getAttributeNode=function(arg1){};
-/**
-* function setAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.setAttributeNode=function(arg1){};
-/**
-* function removeAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.removeAttributeNode=function(arg1){};
-/**
-* function getElementsByTagName(arg1)
-* @type NodeList
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getElementsByTagName=function(arg1){};
-/**
-* function getAttributeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getAttributeNS=function(arg1,arg2){};
-/**
-* function setAttributeNS(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-/**
-* function removeAttributeNS(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.removeAttributeNS=function(arg1,arg2){};
-/**
-* function getAttributeNodeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-/**
-* function setAttributeNodeNS(arg1)
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.setAttributeNodeNS=function(arg1){};
-/**
-* function getElementsByTagNameNS(arg1,arg2)
-* @type NodeList
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-/**
-* function hasAttribute(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.hasAttribute=function(arg1){};
-/**
-* function hasAttributeNS(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.hasAttributeNS=function(arg1,arg2){};
-/**
-* property id
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.id="";
-/**
-* property title
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.title="";
-/**
-* property lang
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.lang="";
-/**
-* property dir
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.dir="";
-/**
-* property className
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.className="";
-/**
-* property profile
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.profile="";
-/**
-* property offsetTop
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.offsetTop=0;
-/**
-* property offsetLeft
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.offsetLeft=0;
-/**
-* property offsetWidth
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.offsetWidth=0;
-/**
-* property offsetHeight
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.offsetHeight=0;
-/**
-* property offsetParent
-* @type Object
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.offsetParent=new Object();
-/**
-* property innerHTML
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.innerHTML="";
-/**
-* property scrollTop
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.scrollTop=0;
-/**
-* property scrollLeft
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.scrollLeft=0;
-/**
-* property scrollHeight
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.scrollHeight=0;
-/**
-* property scrollWidth
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.scrollWidth=0;
-/**
-* property clientHeight
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.clientHeight=0;
-/**
-* property clientWidth
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.clientWidth=0;
-/**
-* property tabIndex
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.tabIndex=0;
-/**
-* function blur()
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.blur=function(){};
-/**
-* function focus()
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.focus=function(){};
-/**
-* property spellcheck
-* @type Boolean
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.spellcheck=false;
-/**
-* property style
-* @type CSSStyleDeclaration
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.style=new CSSStyleDeclaration();
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.dispatchEvent=function(arg1){};
-/**
-* property baseURI
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type String
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.textContent="";
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf HTMLHeadElement
-* @since FireFox 2.0.0.3
-*/
-HTMLHeadElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object Comment
-* @super Object
-* @type constructor
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype=new Object();
-function Comment(){};
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* property nodeName
-* @type String
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.nodeName="";
-/**
-* property nodeValue
-* @type String
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.nodeValue="";
-/**
-* property nodeType
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.nodeType=0;
-/**
-* property parentNode
-* @type HTMLHeadElement
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.parentNode=new HTMLHeadElement();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type Object
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.firstChild=new Object();
-/**
-* property lastChild
-* @type Object
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.lastChild=new Object();
-/**
-* property previousSibling
-* @type Object
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.previousSibling=new Object();
-/**
-* property nextSibling
-* @type Comment
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.nextSibling=new Comment();
-/**
-* property attributes
-* @type Object
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.attributes=new Object();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.prefix=new Object();
-/**
-* property localName
-* @type Object
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.localName=new Object();
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.hasAttributes=function(){};
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.NOTATION_NODE=0;
-/**
-* property data
-* @type String
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.data="";
-/**
-* property length
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.length=0;
-/**
-* function substringData(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.substringData=function(arg1,arg2){};
-/**
-* function appendData(arg1)
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.appendData=function(arg1){};
-/**
-* function insertData(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.insertData=function(arg1,arg2){};
-/**
-* function deleteData(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.deleteData=function(arg1,arg2){};
-/**
-* function replaceData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.replaceData=function(arg1,arg2,arg3){};
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.dispatchEvent=function(arg1){};
-/**
-* property baseURI
-* @type String
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type String
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.textContent="";
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf Comment
-* @since FireFox 2.0.0.3
-*/
-Comment.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object HTMLScriptElement
-* @super Object
-* @type constructor
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype=new Object();
-function HTMLScriptElement(){};
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* property nodeName
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.nodeName="";
-/**
-* property nodeValue
-* @type Object
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.nodeValue=new Object();
-/**
-* property nodeType
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.nodeType=0;
-/**
-* property parentNode
-* @type HTMLHeadElement
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.parentNode=new HTMLHeadElement();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type Text
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.firstChild=new Text();
-/**
-* property lastChild
-* @type Text
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.lastChild=new Text();
-/**
-* property previousSibling
-* @type Text
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.previousSibling=new Text();
-/**
-* property nextSibling
-* @type Object
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.nextSibling=new Object();
-/**
-* property attributes
-* @type NamedNodeMap
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.attributes=new NamedNodeMap();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.prefix=new Object();
-/**
-* property localName
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.localName="";
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.hasAttributes=function(){};
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.NOTATION_NODE=0;
-/**
-* property tagName
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.tagName="";
-/**
-* function getAttribute(arg1)
-* @type Attr
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getAttribute=function(arg1){};
-/**
-* function setAttribute(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.setAttribute=function(arg1,arg2){};
-/**
-* function removeAttribute(arg1)
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.removeAttribute=function(arg1){};
-/**
-* function getAttributeNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getAttributeNode=function(arg1){};
-/**
-* function setAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.setAttributeNode=function(arg1){};
-/**
-* function removeAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.removeAttributeNode=function(arg1){};
-/**
-* function getElementsByTagName(arg1)
-* @type NodeList
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getElementsByTagName=function(arg1){};
-/**
-* function getAttributeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getAttributeNS=function(arg1,arg2){};
-/**
-* function setAttributeNS(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-/**
-* function removeAttributeNS(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.removeAttributeNS=function(arg1,arg2){};
-/**
-* function getAttributeNodeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-/**
-* function setAttributeNodeNS(arg1)
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.setAttributeNodeNS=function(arg1){};
-/**
-* function getElementsByTagNameNS(arg1,arg2)
-* @type NodeList
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-/**
-* function hasAttribute(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.hasAttribute=function(arg1){};
-/**
-* function hasAttributeNS(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.hasAttributeNS=function(arg1,arg2){};
-/**
-* property id
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.id="";
-/**
-* property title
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.title="";
-/**
-* property lang
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.lang="";
-/**
-* property dir
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.dir="";
-/**
-* property className
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.className="";
-/**
-* property text
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.text="";
-/**
-* property htmlFor
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.htmlFor="";
-/**
-* property event
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.event="";
-/**
-* property charset
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.charset="";
-/**
-* property defer
-* @type Boolean
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.defer=false;
-/**
-* property src
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.src="";
-/**
-* property type
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.type="";
-/**
-* property offsetTop
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.offsetTop=0;
-/**
-* property offsetLeft
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.offsetLeft=0;
-/**
-* property offsetWidth
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.offsetWidth=0;
-/**
-* property offsetHeight
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.offsetHeight=0;
-/**
-* property offsetParent
-* @type Object
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.offsetParent=new Object();
-/**
-* property innerHTML
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.innerHTML="";
-/**
-* property scrollTop
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.scrollTop=0;
-/**
-* property scrollLeft
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.scrollLeft=0;
-/**
-* property scrollHeight
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.scrollHeight=0;
-/**
-* property scrollWidth
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.scrollWidth=0;
-/**
-* property clientHeight
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.clientHeight=0;
-/**
-* property clientWidth
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.clientWidth=0;
-/**
-* property tabIndex
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.tabIndex=0;
-/**
-* function blur()
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.blur=function(){};
-/**
-* function focus()
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.focus=function(){};
-/**
-* property spellcheck
-* @type Boolean
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.spellcheck=false;
-/**
-* property style
-* @type CSSStyleDeclaration
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.style=new CSSStyleDeclaration();
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.dispatchEvent=function(arg1){};
-/**
-* property baseURI
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type String
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.textContent="";
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf HTMLScriptElement
-* @since FireFox 2.0.0.3
-*/
-HTMLScriptElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object Text
-* @super Object
-* @type constructor
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype=new Object();
-function Text(){};
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* property nodeName
-* @type String
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.nodeName="";
-/**
-* property nodeValue
-* @type String
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.nodeValue="";
-/**
-* property nodeType
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.nodeType=0;
-/**
-* property parentNode
-* @type HTMLScriptElement
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.parentNode=new HTMLScriptElement();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.firstChild=new Object();
-/**
-* property lastChild
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.lastChild=new Object();
-/**
-* property previousSibling
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.previousSibling=new Object();
-/**
-* property nextSibling
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.nextSibling=new Object();
-/**
-* property attributes
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.attributes=new Object();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.prefix=new Object();
-/**
-* property localName
-* @type Object
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.localName=new Object();
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.hasAttributes=function(){};
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.NOTATION_NODE=0;
-/**
-* property data
-* @type String
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.data="";
-/**
-* property length
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.length=0;
-/**
-* function substringData(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.substringData=function(arg1,arg2){};
-/**
-* function appendData(arg1)
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.appendData=function(arg1){};
-/**
-* function insertData(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.insertData=function(arg1,arg2){};
-/**
-* function deleteData(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.deleteData=function(arg1,arg2){};
-/**
-* function replaceData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.replaceData=function(arg1,arg2,arg3){};
-/**
-* function splitText(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.splitText=function(arg1){};
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.dispatchEvent=function(arg1){};
-/**
-* property baseURI
-* @type String
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type String
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.textContent="";
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf Text
-* @since FireFox 2.0.0.3
-*/
-Text.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object NamedNodeMap
-* @super Object
-* @type constructor
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype=new Object();
-function NamedNodeMap(){};
-/**
-* property length
-* @type Number
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.length=0;
-/**
-* function getNamedItem(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.getNamedItem=function(arg1){};
-/**
-* function setNamedItem(arg1)
-* @param {Object} arg1
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.setNamedItem=function(arg1){};
-/**
-* function removeNamedItem(arg1)
-* @param {Object} arg1
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.removeNamedItem=function(arg1){};
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.item=function(arg1){};
-/**
-* function getNamedItemNS(arg1,arg2)
-* @type Element
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.getNamedItemNS=function(arg1,arg2){};
-/**
-* function setNamedItemNS(arg1)
-* @param {Object} arg1
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.setNamedItemNS=function(arg1){};
-/**
-* function removeNamedItemNS(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf NamedNodeMap
-* @since FireFox 2.0.0.3
-*/
-NamedNodeMap.prototype.removeNamedItemNS=function(arg1,arg2){};
-/**
-* Object Attr
-* @super Object
-* @type constructor
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype=new Object();
-function Attr(){};
-/**
-* property nodeName
-* @type String
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.nodeName="";
-/**
-* property nodeValue
-* @type String
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.nodeValue="";
-/**
-* property nodeType
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.nodeType=0;
-/**
-* property parentNode
-* @type Object
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.parentNode=new Object();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type Text
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.firstChild=new Text();
-/**
-* property lastChild
-* @type Text
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.lastChild=new Text();
-/**
-* property previousSibling
-* @type Object
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.previousSibling=new Object();
-/**
-* property nextSibling
-* @type Object
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.nextSibling=new Object();
-/**
-* property attributes
-* @type Object
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.attributes=new Object();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.prefix=new Object();
-/**
-* property localName
-* @type String
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.localName="";
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.hasAttributes=function(){};
-/**
-* property name
-* @type String
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.name="";
-/**
-* property specified
-* @type Boolean
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.specified=false;
-/**
-* property value
-* @type String
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.value="";
-/**
-* property ownerElement
-* @type HTMLScriptElement
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.ownerElement=new HTMLScriptElement();
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.NOTATION_NODE=0;
-/**
-* property baseURI
-* @type String
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type String
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.textContent="";
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf Attr
-* @since FireFox 2.0.0.3
-*/
-Attr.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object CSSStyleDeclaration
-* @super Object
-* @type constructor
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype=new Object();
-function CSSStyleDeclaration(){};
-/**
-* property length
-* @type Number
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.length=0;
-/**
-* property cssText
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.cssText="";
-/**
-* function getPropertyValue(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.getPropertyValue=function(arg1){};
-/**
-* function getPropertyCSSValue(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.getPropertyCSSValue=function(arg1){};
-/**
-* function removeProperty(arg1)
-* @param {Object} arg1
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.removeProperty=function(arg1){};
-/**
-* function getPropertyPriority(arg1)
-* @type Number
-* @param {Object} arg1
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.getPropertyPriority=function(arg1){};
-/**
-* function setProperty(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.setProperty=function(arg1,arg2,arg3){};
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.item=function(arg1){};
-/**
-* property parentRule
-* @type Object
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.parentRule=new Object();
-/**
-* property azimuth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.azimuth="";
-/**
-* property background
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.background="";
-/**
-* property backgroundAttachment
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.backgroundAttachment="";
-/**
-* property backgroundColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.backgroundColor="";
-/**
-* property backgroundImage
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.backgroundImage="";
-/**
-* property backgroundPosition
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.backgroundPosition="";
-/**
-* property backgroundRepeat
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.backgroundRepeat="";
-/**
-* property border
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.border="";
-/**
-* property borderCollapse
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderCollapse="";
-/**
-* property borderColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderColor="";
-/**
-* property borderSpacing
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderSpacing="";
-/**
-* property borderStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderStyle="";
-/**
-* property borderTop
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderTop="";
-/**
-* property borderRight
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderRight="";
-/**
-* property borderBottom
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderBottom="";
-/**
-* property borderLeft
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderLeft="";
-/**
-* property borderTopColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderTopColor="";
-/**
-* property borderRightColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderRightColor="";
-/**
-* property borderBottomColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderBottomColor="";
-/**
-* property borderLeftColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderLeftColor="";
-/**
-* property borderTopStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderTopStyle="";
-/**
-* property borderRightStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderRightStyle="";
-/**
-* property borderBottomStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderBottomStyle="";
-/**
-* property borderLeftStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderLeftStyle="";
-/**
-* property borderTopWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderTopWidth="";
-/**
-* property borderRightWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderRightWidth="";
-/**
-* property borderBottomWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderBottomWidth="";
-/**
-* property borderLeftWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderLeftWidth="";
-/**
-* property borderWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.borderWidth="";
-/**
-* property bottom
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.bottom="";
-/**
-* property captionSide
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.captionSide="";
-/**
-* property clear
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.clear="";
-/**
-* property clip
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.clip="";
-/**
-* property color
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.color="";
-/**
-* property content
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.content="";
-/**
-* property counterIncrement
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.counterIncrement="";
-/**
-* property counterReset
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.counterReset="";
-/**
-* property cue
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.cue="";
-/**
-* property cueAfter
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.cueAfter="";
-/**
-* property cueBefore
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.cueBefore="";
-/**
-* property cursor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.cursor="";
-/**
-* property direction
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.direction="";
-/**
-* property display
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.display="";
-/**
-* property elevation
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.elevation="";
-/**
-* property emptyCells
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.emptyCells="";
-/**
-* property cssFloat
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.cssFloat="";
-/**
-* property font
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.font="";
-/**
-* property fontFamily
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.fontFamily="";
-/**
-* property fontSize
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.fontSize="";
-/**
-* property fontSizeAdjust
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.fontSizeAdjust="";
-/**
-* property fontStretch
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.fontStretch="";
-/**
-* property fontStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.fontStyle="";
-/**
-* property fontVariant
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.fontVariant="";
-/**
-* property fontWeight
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.fontWeight="";
-/**
-* property height
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.height="";
-/**
-* property left
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.left="";
-/**
-* property letterSpacing
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.letterSpacing="";
-/**
-* property lineHeight
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.lineHeight="";
-/**
-* property listStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.listStyle="";
-/**
-* property listStyleImage
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.listStyleImage="";
-/**
-* property listStylePosition
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.listStylePosition="";
-/**
-* property listStyleType
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.listStyleType="";
-/**
-* property margin
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.margin="";
-/**
-* property marginTop
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.marginTop="";
-/**
-* property marginRight
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.marginRight="";
-/**
-* property marginBottom
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.marginBottom="";
-/**
-* property marginLeft
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.marginLeft="";
-/**
-* property markerOffset
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.markerOffset="";
-/**
-* property marks
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.marks="";
-/**
-* property maxHeight
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.maxHeight="";
-/**
-* property maxWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.maxWidth="";
-/**
-* property minHeight
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.minHeight="";
-/**
-* property minWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.minWidth="";
-/**
-* property orphans
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.orphans="";
-/**
-* property outline
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.outline="";
-/**
-* property outlineColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.outlineColor="";
-/**
-* property outlineStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.outlineStyle="";
-/**
-* property outlineWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.outlineWidth="";
-/**
-* property overflow
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.overflow="";
-/**
-* property padding
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.padding="";
-/**
-* property paddingTop
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.paddingTop="";
-/**
-* property paddingRight
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.paddingRight="";
-/**
-* property paddingBottom
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.paddingBottom="";
-/**
-* property paddingLeft
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.paddingLeft="";
-/**
-* property page
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.page="";
-/**
-* property pageBreakAfter
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pageBreakAfter="";
-/**
-* property pageBreakBefore
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pageBreakBefore="";
-/**
-* property pageBreakInside
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pageBreakInside="";
-/**
-* property pause
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pause="";
-/**
-* property pauseAfter
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pauseAfter="";
-/**
-* property pauseBefore
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pauseBefore="";
-/**
-* property pitch
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pitch="";
-/**
-* property pitchRange
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.pitchRange="";
-/**
-* property position
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.position="";
-/**
-* property quotes
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.quotes="";
-/**
-* property richness
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.richness="";
-/**
-* property right
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.right="";
-/**
-* property size
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.size="";
-/**
-* property speak
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.speak="";
-/**
-* property speakHeader
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.speakHeader="";
-/**
-* property speakNumeral
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.speakNumeral="";
-/**
-* property speakPunctuation
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.speakPunctuation="";
-/**
-* property speechRate
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.speechRate="";
-/**
-* property stress
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.stress="";
-/**
-* property tableLayout
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.tableLayout="";
-/**
-* property textAlign
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.textAlign="";
-/**
-* property textDecoration
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.textDecoration="";
-/**
-* property textIndent
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.textIndent="";
-/**
-* property textShadow
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.textShadow="";
-/**
-* property textTransform
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.textTransform="";
-/**
-* property top
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.top="";
-/**
-* property unicodeBidi
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.unicodeBidi="";
-/**
-* property verticalAlign
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.verticalAlign="";
-/**
-* property visibility
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.visibility="";
-/**
-* property voiceFamily
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.voiceFamily="";
-/**
-* property volume
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.volume="";
-/**
-* property whiteSpace
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.whiteSpace="";
-/**
-* property widows
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.widows="";
-/**
-* property width
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.width="";
-/**
-* property wordSpacing
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.wordSpacing="";
-/**
-* property zIndex
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.zIndex="";
-/**
-* property MozAppearance
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozAppearance="";
-/**
-* property MozBackgroundClip
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBackgroundClip="";
-/**
-* property MozBackgroundInlinePolicy
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBackgroundInlinePolicy="";
-/**
-* property MozBackgroundOrigin
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBackgroundOrigin="";
-/**
-* property MozBinding
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBinding="";
-/**
-* property MozBorderBottomColors
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderBottomColors="";
-/**
-* property MozBorderLeftColors
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderLeftColors="";
-/**
-* property MozBorderRightColors
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderRightColors="";
-/**
-* property MozBorderTopColors
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderTopColors="";
-/**
-* property MozBorderRadius
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderRadius="";
-/**
-* property MozBorderRadiusTopleft
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderRadiusTopleft="";
-/**
-* property MozBorderRadiusTopright
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderRadiusTopright="";
-/**
-* property MozBorderRadiusBottomleft
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderRadiusBottomleft="";
-/**
-* property MozBorderRadiusBottomright
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBorderRadiusBottomright="";
-/**
-* property MozBoxAlign
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBoxAlign="";
-/**
-* property MozBoxDirection
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBoxDirection="";
-/**
-* property MozBoxFlex
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBoxFlex="";
-/**
-* property MozBoxOrient
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBoxOrient="";
-/**
-* property MozBoxOrdinalGroup
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBoxOrdinalGroup="";
-/**
-* property MozBoxPack
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBoxPack="";
-/**
-* property MozBoxSizing
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozBoxSizing="";
-/**
-* property MozColumnCount
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozColumnCount="";
-/**
-* property MozColumnWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozColumnWidth="";
-/**
-* property MozColumnGap
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozColumnGap="";
-/**
-* property MozFloatEdge
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozFloatEdge="";
-/**
-* property MozForceBrokenImageIcon
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozForceBrokenImageIcon="";
-/**
-* property MozImageRegion
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozImageRegion="";
-/**
-* property MozMarginEnd
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozMarginEnd="";
-/**
-* property MozMarginStart
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozMarginStart="";
-/**
-* property MozOpacity
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOpacity="";
-/**
-* property MozOutline
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutline="";
-/**
-* property MozOutlineColor
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineColor="";
-/**
-* property MozOutlineRadius
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineRadius="";
-/**
-* property MozOutlineRadiusTopleft
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineRadiusTopleft="";
-/**
-* property MozOutlineRadiusTopright
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineRadiusTopright="";
-/**
-* property MozOutlineRadiusBottomleft
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineRadiusBottomleft="";
-/**
-* property MozOutlineRadiusBottomright
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineRadiusBottomright="";
-/**
-* property MozOutlineStyle
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineStyle="";
-/**
-* property MozOutlineWidth
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineWidth="";
-/**
-* property MozOutlineOffset
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozOutlineOffset="";
-/**
-* property MozPaddingEnd
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozPaddingEnd="";
-/**
-* property MozPaddingStart
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozPaddingStart="";
-/**
-* property MozUserFocus
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozUserFocus="";
-/**
-* property MozUserInput
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozUserInput="";
-/**
-* property MozUserModify
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozUserModify="";
-/**
-* property MozUserSelect
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.MozUserSelect="";
-/**
-* property opacity
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.opacity="";
-/**
-* property outlineOffset
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.outlineOffset="";
-/**
-* property overflowX
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.overflowX="";
-/**
-* property overflowY
-* @type String
-* @memberOf CSSStyleDeclaration
-* @since FireFox 2.0.0.3
-*/
-CSSStyleDeclaration.prototype.overflowY="";
-/**
-* Object HTMLBodyElement
-* @super Object
-* @type constructor
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype=new Object();
-function HTMLBodyElement(){};
-/**
-* function addEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.addEventListener=function(arg1,arg2,arg3){};
-/**
-* property nodeName
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.nodeName="";
-/**
-* property nodeValue
-* @type Object
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.nodeValue=new Object();
-/**
-* property nodeType
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.nodeType=0;
-/**
-* property parentNode
-* @type HTMLHtmlElement
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.parentNode=new HTMLHtmlElement();
-/**
-* property childNodes
-* @type NodeList
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.childNodes=new NodeList();
-/**
-* property firstChild
-* @type Text
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.firstChild=new Text();
-/**
-* property lastChild
-* @type HTMLBRElement
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.lastChild=new HTMLBRElement();
-/**
-* property previousSibling
-* @type HTMLHeadElement
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.previousSibling=new HTMLHeadElement();
-/**
-* property nextSibling
-* @type Object
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.nextSibling=new Object();
-/**
-* property attributes
-* @type NamedNodeMap
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.attributes=new NamedNodeMap();
-/**
-* property ownerDocument
-* @type HTMLDocument
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.ownerDocument=new HTMLDocument();
-/**
-* function insertBefore(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.insertBefore=function(arg1,arg2){};
-/**
-* function replaceChild(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.replaceChild=function(arg1,arg2){};
-/**
-* function removeChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.removeChild=function(arg1){};
-/**
-* function appendChild(arg1)
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.appendChild=function(arg1){};
-/**
-* function hasChildNodes()
-* @type Boolean
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.hasChildNodes=function(){};
-/**
-* function cloneNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.cloneNode=function(arg1){};
-/**
-* function normalize()
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.normalize=function(){};
-/**
-* function isSupported(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.isSupported=function(arg1,arg2){};
-/**
-* property namespaceURI
-* @type Object
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.namespaceURI=new Object();
-/**
-* property prefix
-* @type Object
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.prefix=new Object();
-/**
-* property localName
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.localName="";
-/**
-* function hasAttributes()
-* @type Boolean
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.hasAttributes=function(){};
-/**
-* property ELEMENT_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.ELEMENT_NODE=0;
-/**
-* property ATTRIBUTE_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.ATTRIBUTE_NODE=0;
-/**
-* property TEXT_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.TEXT_NODE=0;
-/**
-* property CDATA_SECTION_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.CDATA_SECTION_NODE=0;
-/**
-* property ENTITY_REFERENCE_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.ENTITY_REFERENCE_NODE=0;
-/**
-* property ENTITY_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.ENTITY_NODE=0;
-/**
-* property PROCESSING_INSTRUCTION_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.PROCESSING_INSTRUCTION_NODE=0;
-/**
-* property COMMENT_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.COMMENT_NODE=0;
-/**
-* property DOCUMENT_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_NODE=0;
-/**
-* property DOCUMENT_TYPE_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_TYPE_NODE=0;
-/**
-* property DOCUMENT_FRAGMENT_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_FRAGMENT_NODE=0;
-/**
-* property NOTATION_NODE
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.NOTATION_NODE=0;
-/**
-* property tagName
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.tagName="";
-/**
-* function getAttribute(arg1)
-* @type Attr
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getAttribute=function(arg1){};
-/**
-* function setAttribute(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.setAttribute=function(arg1,arg2){};
-/**
-* function removeAttribute(arg1)
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.removeAttribute=function(arg1){};
-/**
-* function getAttributeNode(arg1)
-* @type Element
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getAttributeNode=function(arg1){};
-/**
-* function setAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.setAttributeNode=function(arg1){};
-/**
-* function removeAttributeNode(arg1)
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.removeAttributeNode=function(arg1){};
-/**
-* function getElementsByTagName(arg1)
-* @type NodeList
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getElementsByTagName=function(arg1){};
-/**
-* function getAttributeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getAttributeNS=function(arg1,arg2){};
-/**
-* function setAttributeNS(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.setAttributeNS=function(arg1,arg2,arg3){};
-/**
-* function removeAttributeNS(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.removeAttributeNS=function(arg1,arg2){};
-/**
-* function getAttributeNodeNS(arg1,arg2)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getAttributeNodeNS=function(arg1,arg2){};
-/**
-* function setAttributeNodeNS(arg1)
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.setAttributeNodeNS=function(arg1){};
-/**
-* function getElementsByTagNameNS(arg1,arg2)
-* @type NodeList
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getElementsByTagNameNS=function(arg1,arg2){};
-/**
-* function hasAttribute(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.hasAttribute=function(arg1){};
-/**
-* function hasAttributeNS(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.hasAttributeNS=function(arg1,arg2){};
-/**
-* property id
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.id="";
-/**
-* property title
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.title="";
-/**
-* property lang
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.lang="";
-/**
-* property dir
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.dir="";
-/**
-* property className
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.className="";
-/**
-* property aLink
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.aLink="";
-/**
-* property background
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.background="";
-/**
-* property bgColor
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.bgColor="";
-/**
-* property link
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.link="";
-/**
-* property text
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.text="";
-/**
-* property vLink
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.vLink="";
-/**
-* property offsetTop
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.offsetTop=0;
-/**
-* property offsetLeft
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.offsetLeft=0;
-/**
-* property offsetWidth
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.offsetWidth=0;
-/**
-* property offsetHeight
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.offsetHeight=0;
-/**
-* property offsetParent
-* @type Object
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.offsetParent=new Object();
-/**
-* property innerHTML
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.innerHTML="";
-/**
-* property scrollTop
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.scrollTop=0;
-/**
-* property scrollLeft
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.scrollLeft=0;
-/**
-* property scrollHeight
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.scrollHeight=0;
-/**
-* property scrollWidth
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.scrollWidth=0;
-/**
-* property clientHeight
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.clientHeight=0;
-/**
-* property clientWidth
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.clientWidth=0;
-/**
-* property tabIndex
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.tabIndex=0;
-/**
-* function blur()
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.blur=function(){};
-/**
-* function focus()
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.focus=function(){};
-/**
-* property spellcheck
-* @type Boolean
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.spellcheck=false;
-/**
-* property style
-* @type CSSStyleDeclaration
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.style=new CSSStyleDeclaration();
-/**
-* function removeEventListener(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.removeEventListener=function(arg1,arg2,arg3){};
-/**
-* function dispatchEvent(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.dispatchEvent=function(arg1){};
-/**
-* property baseURI
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.baseURI="";
-/**
-* function compareDocumentPosition(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.compareDocumentPosition=function(arg1){};
-/**
-* property textContent
-* @type String
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.textContent="";
-/**
-* function isSameNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.isSameNode=function(arg1){};
-/**
-* function lookupPrefix(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.lookupPrefix=function(arg1){};
-/**
-* function isDefaultNamespace(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.isDefaultNamespace=function(arg1){};
-/**
-* function lookupNamespaceURI(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.lookupNamespaceURI=function(arg1){};
-/**
-* function isEqualNode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.isEqualNode=function(arg1){};
-/**
-* function getFeature(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getFeature=function(arg1,arg2){};
-/**
-* function setUserData(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.setUserData=function(arg1,arg2,arg3){};
-/**
-* function getUserData(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.getUserData=function(arg1){};
-/**
-* property DOCUMENT_POSITION_DISCONNECTED
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_POSITION_DISCONNECTED=0;
-/**
-* property DOCUMENT_POSITION_PRECEDING
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_POSITION_PRECEDING=0;
-/**
-* property DOCUMENT_POSITION_FOLLOWING
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_POSITION_FOLLOWING=0;
-/**
-* property DOCUMENT_POSITION_CONTAINS
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_POSITION_CONTAINS=0;
-/**
-* property DOCUMENT_POSITION_CONTAINED_BY
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_POSITION_CONTAINED_BY=0;
-/**
-* property DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
-* @type Number
-* @memberOf HTMLBodyElement
-* @since FireFox 2.0.0.3
-*/
-HTMLBodyElement.prototype.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=0;
-/**
-* Object DOMImplementation
-* @super Object
-* @type constructor
-* @memberOf DOMImplementation
-* @since FireFox 2.0.0.3
-*/
-DOMImplementation.prototype=new Object();
-function DOMImplementation(){};
-/**
-* function hasFeature(arg1,arg2)
-* @type Boolean
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf DOMImplementation
-* @since FireFox 2.0.0.3
-*/
-DOMImplementation.prototype.hasFeature=function(arg1,arg2){};
-/**
-* function createDocumentType(arg1,arg2,arg3)
-* @type Object
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf DOMImplementation
-* @since FireFox 2.0.0.3
-*/
-DOMImplementation.prototype.createDocumentType=function(arg1,arg2,arg3){};
-/**
-* function createDocument(arg1,arg2,arg3)
-* @type HTMLDocument
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf DOMImplementation
-* @since FireFox 2.0.0.3
-*/
-DOMImplementation.prototype.createDocument=function(arg1,arg2,arg3){};
-/**
-* Object HTMLCollection
-* @super Object
-* @type constructor
-* @memberOf HTMLCollection
-* @since FireFox 2.0.0.3
-*/
-HTMLCollection.prototype=new Object();
-function HTMLCollection(){};
-/**
-* property length
-* @type Number
-* @memberOf HTMLCollection
-* @since FireFox 2.0.0.3
-*/
-HTMLCollection.prototype.length=0;
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLCollection
-* @since FireFox 2.0.0.3
-*/
-HTMLCollection.prototype.item=function(arg1){};
-/**
-* function namedItem(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf HTMLCollection
-* @since FireFox 2.0.0.3
-*/
-HTMLCollection.prototype.namedItem=function(arg1){};
-/**
-* Object JavaPackage
-* @super Object
-* @type constructor
-* @memberOf JavaPackage
-* @since FireFox 2.0.0.3
-*/
-JavaPackage.prototype=new Object();
-function JavaPackage(){};
-/**
-* Object nsXPCComponents
-* @super Object
-* @type constructor
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype=new Object();
-function nsXPCComponents(){};
-/**
-* function QueryInterface(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.QueryInterface=function(arg1){};
-/**
-* property interfaces
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.interfaces=new Object();
-/**
-* property interfacesByID
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.interfacesByID=new Object();
-/**
-* property classes
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.classes=new Object();
-/**
-* property classesByID
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.classesByID=new Object();
-/**
-* property stack
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.stack=new Object();
-/**
-* property results
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.results=new Object();
-/**
-* property manager
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.manager=new Object();
-/**
-* property utils
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.utils=new Object();
-/**
-* property ID
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.ID=new Object();
-/**
-* property Exception
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.Exception=new Object();
-/**
-* property Constructor
-* @type Object
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.Constructor=new Object();
-/**
-* function isSuccessCode(arg1)
-* @type Boolean
-* @param {Object} arg1
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.isSuccessCode=function(arg1){};
-/**
-* function lookupMethod()
-* @type String
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.lookupMethod=function(){};
-/**
-* function reportError()
-* @memberOf nsXPCComponents
-* @since FireFox 2.0.0.3
-*/
-nsXPCComponents.prototype.reportError=function(){};
-/**
-* Object BarProp
-* @super Object
-* @type constructor
-* @memberOf BarProp
-* @since FireFox 2.0.0.3
-*/
-BarProp.prototype=new Object();
-function BarProp(){};
-/**
-* property visible
-* @type Boolean
-* @memberOf BarProp
-* @since FireFox 2.0.0.3
-*/
-BarProp.prototype.visible=false;
-/**
-* Object Screen
-* @super Object
-* @type constructor
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype=new Object();
-function Screen(){};
-/**
-* property top
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.top=0;
-/**
-* property left
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.left=0;
-/**
-* property width
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.width=0;
-/**
-* property height
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.height=0;
-/**
-* property pixelDepth
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.pixelDepth=0;
-/**
-* property colorDepth
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.colorDepth=0;
-/**
-* property availWidth
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.availWidth=0;
-/**
-* property availHeight
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.availHeight=0;
-/**
-* property availLeft
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.availLeft=0;
-/**
-* property availTop
-* @type Number
-* @memberOf Screen
-* @since FireFox 2.0.0.3
-*/
-Screen.prototype.availTop=0;
-/**
-* Object History
-* @super Object
-* @type constructor
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype=new Object();
-function History(){};
-/**
-* property length
-* @type Number
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.length=0;
-/**
-* property current
-* @type Object
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.current=new Object();
-/**
-* property previous
-* @type Object
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.previous=new Object();
-/**
-* property next
-* @type Object
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.next=new Object();
-/**
-* function back()
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.back=function(){};
-/**
-* function forward()
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.forward=function(){};
-/**
-* function item(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.item=function(arg1){};
-/**
-* function go()
-* @memberOf History
-* @since FireFox 2.0.0.3
-*/
-History.prototype.go=function(){};
-/**
-* Object Crypto
-* @super Object
-* @type constructor
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype=new Object();
-function Crypto(){};
-/**
-* property version
-* @type String
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.version="";
-/**
-* property enableSmartCardEvents
-* @type Boolean
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.enableSmartCardEvents=false;
-/**
-* function generateCRMFRequest()
-* @type String
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.generateCRMFRequest=function(){};
-/**
-* function importUserCertificates(arg1,arg2,arg3)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.importUserCertificates=function(arg1,arg2,arg3){};
-/**
-* function popChallengeResponse(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.popChallengeResponse=function(arg1){};
-/**
-* function random(arg1)
-* @type Number
-* @param {Object} arg1
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.random=function(arg1){};
-/**
-* function signText(arg1,arg2)
-* @type String
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.signText=function(arg1,arg2){};
-/**
-* function alert(arg1)
-* @param {Object} arg1
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.alert=function(arg1){};
-/**
-* function logout()
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.logout=function(){};
-/**
-* function disableRightClick()
-* @memberOf Crypto
-* @since FireFox 2.0.0.3
-*/
-Crypto.prototype.disableRightClick=function(){};
-/**
-* Object Pkcs11
-* @super Object
-* @type constructor
-* @memberOf Pkcs11
-* @since FireFox 2.0.0.3
-*/
-Pkcs11.prototype=new Object();
-function Pkcs11(){};
-/**
-* function deletemodule(arg1)
-* @param {Object} arg1
-* @memberOf Pkcs11
-* @since FireFox 2.0.0.3
-*/
-Pkcs11.prototype.deletemodule=function(arg1){};
-/**
-* function addmodule(arg1,arg2,arg3,arg4)
-* @param {Object} arg1
-* @param {Object} arg2
-* @param {Object} arg3
-* @param {Object} arg4
-* @memberOf Pkcs11
-* @since FireFox 2.0.0.3
-*/
-Pkcs11.prototype.addmodule=function(arg1,arg2,arg3,arg4){};
-/**
-* Object XULControllers
-* @super Object
-* @type constructor
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype=new Object();
-function XULControllers(){};
-/**
-* function QueryInterface(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.QueryInterface=function(arg1){};
-/**
-* property commandDispatcher
-* @type Object
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.commandDispatcher=new Object();
-/**
-* function getControllerForCommand(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.getControllerForCommand=function(arg1){};
-/**
-* function insertControllerAt(arg1,arg2)
-* @param {Object} arg1
-* @param {Object} arg2
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.insertControllerAt=function(arg1,arg2){};
-/**
-* function removeControllerAt(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.removeControllerAt=function(arg1){};
-/**
-* function getControllerAt(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.getControllerAt=function(arg1){};
-/**
-* function appendController(arg1)
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.appendController=function(arg1){};
-/**
-* function removeController(arg1)
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.removeController=function(arg1){};
-/**
-* function getControllerId(arg1)
-* @type String
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.getControllerId=function(arg1){};
-/**
-* function getControllerById(arg1)
-* @type Object
-* @param {Object} arg1
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.getControllerById=function(arg1){};
-/**
-* function getControllerCount()
-* @type Number
-* @memberOf XULControllers
-* @since FireFox 2.0.0.3
-*/
-XULControllers.prototype.getControllerCount=function(){};
-/**
-* Object StorageList
-* @super Object
-* @type constructor
-* @memberOf StorageList
-* @since FireFox 2.0.0.3
-*/
-StorageList.prototype=new Object();
-function StorageList(){};
-
-/**
-* Object HTMLBRElement
-* @super Object
-* @type constructor
-* @memberOf StorageList
-* @since FireFox 2.0.0.3
-*/
-HTMLBRElement.prototype=new Element();
-function HTMLBRElement(){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties b/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties
deleted file mode 100644
index 57e47c93..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.properties
+++ /dev/null
@@ -1,14 +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
-###############################################################################
-#Properties file for org.eclipse.wst.jsdt.support.firefox
-Bundle-Vendor = Eclipse.org
-Bundle-Name = FireFox Support for JSDT Plugin
-JsGlobalScopeContainerPage.name.0 = Mozilla FireFox Library \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml b/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml
deleted file mode 100644
index 725cd8e3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/plugin.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.2"?>
-<plugin>
-
- <extension point="org.eclipse.wst.jsdt.ui.JsGlobalScopeContainerPage">
- <JsGlobalScopeContainerPage
- name="%JsGlobalScopeContainerPage.name.0"
- class="org.eclipse.wst.jsdt.internal.ui.wizards.buildpaths.FireFoxLibraryWizardPage"
- id="org.eclipse.wst.jsdt.support.firefox">
- </JsGlobalScopeContainerPage>
- </extension>
- <extension
- point="org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer">
- <JsGlobalScopeContainerInitializer
- class="org.eclipse.wst.jsdt.core.compiler.libraries.FireFoxLibInitializer"
- id="org.eclipse.wst.jsdt.launching.FireFoxBrowserLibrary">
- </JsGlobalScopeContainerInitializer>
- </extension>
-
-
- <extension point="org.eclipse.wst.jsdt.ui.JsGlobalScopeUIInitializer">
- <JsGlobalScopeUIInitializer
- id="org.eclipse.wst.jsdt.launching.FireFoxBrowserLibrary"
- class="org.eclipse.wst.jsdt.core.compiler.libraries.FireFoxUiInitializer">
- </JsGlobalScopeUIInitializer>
- </extension>
-
-
-</plugin>
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.java b/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.java
deleted file mode 100644
index 9b7daedf..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.java
+++ /dev/null
@@ -1,94 +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.compiler.libraries;
-
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer;
-import org.eclipse.wst.jsdt.core.IJsGlobalScopeContainerInitializer;
-import org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer;
-
-
-public class FireFoxLibInitializer extends JsGlobalScopeContainerInitializer implements IJsGlobalScopeContainerInitializer {
- protected static final String CONTAINER_ID = "org.eclipse.wst.jsdt.launching.FireFoxBrowserLibrary";
- protected static final String ContainerDescription = "FireFox Browser Support Library";
- protected static final char[][] LIBRARY_FILE_NAMES = {{'F', 'i', 'r', 'e', 'F', 'o', 'x', '2', '.', '0', '.', '0', '.', '3', '.', 'j', 's'}};
- protected static final String PLUGIN_ID = "org.eclipse.wst.jsdt.support.firefox";
-
-
- static class FireFoxLibLocation extends SystemLibraryLocation {
- FireFoxLibLocation() {
- super();
- }
-
-
- public char[][] getLibraryFileNames() {
- return new char[][]{FireFoxLibInitializer.LIBRARY_FILE_NAMES[0]};
- }
-
-
- protected String getPluginId() {
- return FireFoxLibInitializer.PLUGIN_ID;
- }
-
- private static LibraryLocation fInstance;
-
- public static LibraryLocation getInstance(){
- if(fInstance== null){
- fInstance = new FireFoxLibLocation();
- }
- return fInstance;
- }
- }
-
- public LibraryLocation getLibraryLocation() {
- return FireFoxLibLocation.getInstance();
- }
-
-
- public String getDescription(IPath containerPath, IJavaScriptProject project) {
- return FireFoxLibInitializer.ContainerDescription;
- }
-
- public String getDescription() {
- return FireFoxLibInitializer.ContainerDescription;
- }
-
-
- public IPath getPath() {
- return new Path(FireFoxLibInitializer.CONTAINER_ID);
- }
-
-
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer#getKind()
- */
- public int getKind() {
-
-
- return IJsGlobalScopeContainer.K_SYSTEM;
- }
-
-
- public boolean canUpdateJsGlobalScopeContainer(IPath containerPath, IJavaScriptProject project) {
- return true;
-
-
- }
-
- public String[] containerSuperTypes() {
- return new String[]{"window"};
- }
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxSmall.gif b/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxSmall.gif
deleted file mode 100644
index e61e0ce5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxSmall.gif
+++ /dev/null
Binary files differ
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxUiInitializer.java b/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxUiInitializer.java
deleted file mode 100644
index 329de5a1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxUiInitializer.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.compiler.libraries;
-
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.jface.resource.ImageDescriptor;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.internal.ui.IJsGlobalScopeContainerInitializerExtension;
-
-/**
- * @author childsb
- *
- */
-public class FireFoxUiInitializer implements IJsGlobalScopeContainerInitializerExtension {
- public ImageDescriptor getImage(IPath containerPath, String element, IJavaScriptProject project) {
-
- if (containerPath == null) {
- return null;
- }
- /* Dont use the rino image for the individual files */
- String requestedContainerPath = new Path(element).lastSegment();
- if ((element != null) && requestedContainerPath.equals(new String(FireFoxLibInitializer.LIBRARY_FILE_NAMES[0]))) {
- return null;
- }
-
- return ImageDescriptor.createFromFile(this.getClass(), "FireFoxSmall.gif");
- // System.out.println("Unimplemented
- // method:BasicBrowserLibraryJsGlobalScopeContainerInitializer.getImage");
- // return null;
- }
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/FireFoxLibraryWizardPage.java b/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/FireFoxLibraryWizardPage.java
deleted file mode 100644
index 8f99ff4e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.firefox/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/FireFoxLibraryWizardPage.java
+++ /dev/null
@@ -1,78 +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.ui.wizards.buildpaths;
-
-
-
-import org.eclipse.core.runtime.Path;
-import org.eclipse.jface.dialogs.Dialog;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.wst.jsdt.core.IIncludePathEntry;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.core.JavaScriptCore;
-import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.DialogField;
-import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.LayoutUtil;
-import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPage;
-import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension;
-import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension2;
-import org.eclipse.wst.jsdt.ui.wizards.NewElementWizardPage;
-
-/**
- *
- */
-public class FireFoxLibraryWizardPage extends NewElementWizardPage implements IJsGlobalScopeContainerPage, IJsGlobalScopeContainerPageExtension, IJsGlobalScopeContainerPageExtension2 {
-
- private static final String CONTAINER_ID = "org.eclipse.wst.jsdt.launching.FireFoxBrowserLibrary";
-
- public FireFoxLibraryWizardPage() {
- super("FireFoxBrowserLib");
- }
-
- public boolean finish() {
- return true;
- }
-
- public IIncludePathEntry getSelection() {
- // TODO Auto-generated method stub
- System.out.println("Unimplemented method:BaseLibraryWizardPage.getSelection");
- return null;
- }
-
- public void setSelection(IIncludePathEntry containerEntry) {
- }
-
- public void createControl(Composite parent) {
- Composite composite = new Composite(parent, SWT.NONE);
- composite.setFont(parent.getFont());
- DialogField field = new DialogField();
-
- // field.createEmptySpace(parent);
- field.setLabelText("FireFox Browser (2.0.0.3) Library added to Project.\n\n - This library supports JavaScript elements provided by the FireFox web browser.");
- // field.setText("Default Browser Library added to project");
- LayoutUtil.doDefaultLayout(composite, new DialogField[]{field}, false, SWT.DEFAULT, SWT.DEFAULT);
- // LayoutUtil.setHorizontalGrabbing(fLibrarySelector.getListControl(null));
- Dialog.applyDialogFont(composite);
- setControl(composite);
- setDescription("FireFox Browser Support");
-
- }
-
- public void initialize(IJavaScriptProject project, IIncludePathEntry[] currentEntries) {
-
- }
-
- public IIncludePathEntry[] getNewContainers() {
- IIncludePathEntry library = JavaScriptCore.newContainerEntry(new Path(CONTAINER_ID));
- return new IIncludePathEntry[]{library};
- }
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/.classpath b/bundles/org.eclipse.wst.jsdt.support.ie/.classpath
deleted file mode 100644
index ce739334..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.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.support.ie/.project b/bundles/org.eclipse.wst.jsdt.support.ie/.project
deleted file mode 100644
index f0ac2edf..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.project
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.wst.jsdt.support.ie</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.support.ie/.settings/org.eclipse.core.resources.prefs b/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index afa5c913..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.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.support.ie/.settings/org.eclipse.core.runtime.prefs b/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.core.runtime.prefs
deleted file mode 100644
index 7ec57502..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.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.support.ie/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 6e072159..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,96 +0,0 @@
-#Wed Oct 24 19:49:45 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.codeComplete.argumentPrefixes=
-org.eclipse.jdt.core.codeComplete.argumentSuffixes=
-org.eclipse.jdt.core.codeComplete.fieldPrefixes=
-org.eclipse.jdt.core.codeComplete.fieldSuffixes=
-org.eclipse.jdt.core.codeComplete.localPrefixes=
-org.eclipse.jdt.core.codeComplete.localSuffixes=
-org.eclipse.jdt.core.codeComplete.staticFieldPrefixes=
-org.eclipse.jdt.core.codeComplete.staticFieldSuffixes=
-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.fatalOptionalError=disabled
-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.nullReference=ignore
-org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
-org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
-org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=error
-org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
-org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
-org.eclipse.jdt.core.compiler.problem.redundantNullCheck=warning
-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=warning
-org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
-org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
-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=warning
-org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
-org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
-org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
-org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
-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.support.ie/.settings/org.eclipse.jdt.ui.prefs b/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.jdt.ui.prefs
deleted file mode 100644
index c91d09d8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.jdt.ui.prefs
+++ /dev/null
@@ -1,51 +0,0 @@
-#Wed Oct 24 19:41:31 EDT 2007
-cleanup.add_default_serial_version_id=true
-cleanup.add_generated_serial_version_id=false
-cleanup.add_missing_annotations=false
-cleanup.add_missing_deprecated_annotations=true
-cleanup.add_missing_nls_tags=false
-cleanup.add_missing_override_annotations=true
-cleanup.add_serial_version_id=true
-cleanup.always_use_blocks=true
-cleanup.always_use_parentheses_in_expressions=true
-cleanup.always_use_this_for_non_static_field_access=false
-cleanup.always_use_this_for_non_static_method_access=false
-cleanup.convert_to_enhanced_for_loop=false
-cleanup.format_source_code=false
-cleanup.make_local_variable_final=true
-cleanup.make_parameters_final=false
-cleanup.make_private_fields_final=true
-cleanup.make_variable_declarations_final=false
-cleanup.never_use_blocks=false
-cleanup.never_use_parentheses_in_expressions=false
-cleanup.organize_imports=true
-cleanup.qualify_static_field_accesses_with_declaring_class=false
-cleanup.qualify_static_member_accesses_through_instances_with_declaring_class=true
-cleanup.qualify_static_member_accesses_through_subtypes_with_declaring_class=true
-cleanup.qualify_static_member_accesses_with_declaring_class=true
-cleanup.qualify_static_method_accesses_with_declaring_class=false
-cleanup.remove_private_constructors=true
-cleanup.remove_unnecessary_casts=true
-cleanup.remove_unnecessary_nls_tags=true
-cleanup.remove_unused_imports=true
-cleanup.remove_unused_local_variables=false
-cleanup.remove_unused_private_fields=true
-cleanup.remove_unused_private_members=true
-cleanup.remove_unused_private_methods=true
-cleanup.remove_unused_private_types=true
-cleanup.use_blocks=true
-cleanup.use_blocks_only_for_return_and_throw=false
-cleanup.use_parentheses_in_expressions=true
-cleanup.use_this_for_non_static_field_access=false
-cleanup.use_this_for_non_static_field_access_only_if_necessary=true
-cleanup.use_this_for_non_static_method_access=false
-cleanup.use_this_for_non_static_method_access_only_if_necessary=true
-cleanup_profile=_SSE Team Styles
-cleanup_settings_version=2
-eclipse.preferences.version=1
-internal.default.compliance=default
-org.eclipse.jdt.ui.exception.name=e
-org.eclipse.jdt.ui.gettersetter.use.is=true
-org.eclipse.jdt.ui.keywordthis=false
-org.eclipse.jdt.ui.overrideannotation=false
-org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8"?><templates/>
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.ltk.core.refactoring.prefs b/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.ltk.core.refactoring.prefs
deleted file mode 100644
index c59368c5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.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.support.ie/.settings/org.eclipse.pde.prefs b/bundles/org.eclipse.wst.jsdt.support.ie/.settings/org.eclipse.pde.prefs
deleted file mode 100644
index fc522bba..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/.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.support.ie/META-INF/MANIFEST.MF b/bundles/org.eclipse.wst.jsdt.support.ie/META-INF/MANIFEST.MF
deleted file mode 100644
index f1eb77dc..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,13 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: %Bundle-Name.0
-Bundle-SymbolicName: org.eclipse.wst.jsdt.support.ie;singleton:=true
-Bundle-Version: 1.0.103.qualifier
-Require-Bundle: org.eclipse.wst.jsdt.core;bundle-version="[1.0.0,2.0.0)",
- org.eclipse.wst.jsdt.ui;bundle-version="[1.0.0,2.0.0)",
- org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
- org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)"
-Bundle-RequiredExecutionEnvironment: J2SE-1.4
-Bundle-Localization: plugin
-Bundle-Vendor: %Bundle-Vendor.0
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/about.html b/bundles/org.eclipse.wst.jsdt.support.ie/about.html
deleted file mode 100644
index 46023304..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/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.support.ie/build.properties b/bundles/org.eclipse.wst.jsdt.support.ie/build.properties
deleted file mode 100644
index 06c79f5a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/build.properties
+++ /dev/null
@@ -1,19 +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.xml,\
- libraries/,\
- plugin.properties,\
- about.html
-src.includes = libraries/
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_@page.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_@page.js
deleted file mode 100644
index 3af51a16..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_@page.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * @see http://msdn2.microsoft.com/en-us/library/ms530841.aspx */ function @page(){}; @page.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_a.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_a.js
deleted file mode 100644
index c2eb581f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_a.js
+++ /dev/null
@@ -1,159 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object a() * @type a * @super Object * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535173.aspx */ function a(){}; a.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ a.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ a.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ a.prototype.canHaveHTML=false; /** * Property charset * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533553.aspx */ a.prototype.charset=""; /** * Property className * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ a.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ a.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ a.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ a.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ a.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ a.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ a.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ a.prototype.contentEditable=""; /** * Property coords * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533695.aspx */ a.prototype.coords=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ a.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ a.prototype.dataSrc=""; /** * Property dir * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ a.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ a.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ a.prototype.childNodes= new childNodes(); /** * Property hash * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533775.aspx */ a.prototype.hash=""; /** * Property href * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533863.aspx */ a.prototype.href=""; /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ a.prototype.hideFocus=false; /** * Property host * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533784.aspx */ a.prototype.host=""; /** * Property hostname * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533785.aspx */ a.prototype.hostname=""; /** * Property port * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534342.aspx */ a.prototype.port=""; /** * Property hreflang * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533787.aspx */ a.prototype.hreflang=""; /** * Property id * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ a.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ a.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ a.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ a.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ a.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ a.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ a.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ a.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ a.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ a.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ a.prototype.lastChild=new Object(); /** * Property Methods * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534168.aspx */ a.prototype.Methods=""; /** * Property name * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ a.prototype.name=""; /** * Property nameProp * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534180.aspx */ a.prototype.nameProp=""; /** * Property src * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534643.aspx */ a.prototype.src=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ a.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ a.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ a.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ a.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ a.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ a.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ a.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ a.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ a.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ a.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ a.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ a.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ a.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ a.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ a.prototype.parentTextEdit=new Object(); /** * Property pathname * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534332.aspx */ a.prototype.pathname=""; /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ a.prototype.previousSibling=new Object(); /** * Property protocol * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534353.aspx */ a.prototype.protocol=""; /** * Property readyState * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ a.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ a.prototype.recordNumber=new Object(); /** * Property rel * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534366.aspx */ a.prototype.rel=""; /** * Property rev * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534373.aspx */ a.prototype.rev=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ a.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ a.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ a.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ a.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ a.prototype.scrollWidth=new Object(); /** * Property search * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534620.aspx */ a.prototype.search=""; /** * Property href * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533867.aspx */ a.prototype.href=""; /** * Property shape * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534628.aspx */ a.prototype.shape=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ a.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ a.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ a.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ a.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ a.prototype.tagUrn=""; /** * Property target * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534659.aspx */ a.prototype.target=""; /** * Property title * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ a.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534698.aspx */ a.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ a.prototype.uniqueID=""; /** * Property urn * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534710.aspx */ a.prototype.urn=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ a.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ a.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ a.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ a.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ a.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ a.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ a.prototype.clearAttributes=function(){}; /** * function click() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ a.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ a.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ a.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ a.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ a.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ a.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ a.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ a.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ a.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ a.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ a.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ a.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ a.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ a.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ a.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ a.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ a.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ a.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ a.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ a.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ a.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ a.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ a.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ a.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ a.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ a.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ a.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ a.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ a.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ a.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ a.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ a.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ a.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ a.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ a.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ a.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ a.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ a.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ a.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ a.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ a.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ a.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ a.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ a.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ a.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ a.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ a.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ a.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ a.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ a.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ a.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ a.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ a.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ a.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ a.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ a.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ a.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ a.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ a.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ a.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ a.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ a.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ a.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ a.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ a.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ a.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ a.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ a.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ a.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ a.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ a.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ a.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ a.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ a.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ a.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ a.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ a.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ a.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ a.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ a.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ a.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ a.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ a.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ a.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ a.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ a.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ a.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ a.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ a.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ a.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ a.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ a.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ a.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ a.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ a.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ a.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ a.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ a.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ a.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ a.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ a.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ a.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf a * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ a.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abbr.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abbr.js
deleted file mode 100644
index aa28c6ee..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abbr.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object abbr() * @type abbr * @super Object * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535177.aspx */ function abbr(){}; abbr.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ abbr.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ abbr.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ abbr.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ abbr.prototype.className=""; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ abbr.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ abbr.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ abbr.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ abbr.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ abbr.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ abbr.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ abbr.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ abbr.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ abbr.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ abbr.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ abbr.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ abbr.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ abbr.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ abbr.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ abbr.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ abbr.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ abbr.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ abbr.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ abbr.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ abbr.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ abbr.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ abbr.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ abbr.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ abbr.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ abbr.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ abbr.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ abbr.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ abbr.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ abbr.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ abbr.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ abbr.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ abbr.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ abbr.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ abbr.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ abbr.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ abbr.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ abbr.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ abbr.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ abbr.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ abbr.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ abbr.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ abbr.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ abbr.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ abbr.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ abbr.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ abbr.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ abbr.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ abbr.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ abbr.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ abbr.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ abbr.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ abbr.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ abbr.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ abbr.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ abbr.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ abbr.prototype.getAdjacentText=function(sWhere){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ abbr.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ abbr.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ abbr.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ abbr.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ abbr.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ abbr.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ abbr.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ abbr.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ abbr.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ abbr.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ abbr.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ abbr.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ abbr.prototype.normalize=function(){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ abbr.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ abbr.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ abbr.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ abbr.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ abbr.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ abbr.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ abbr.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ abbr.prototype.replaceNode=function(oNewNode){}; /** * function setActive() * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ abbr.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ abbr.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ abbr.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ abbr.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ abbr.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ abbr.prototype.activeElement=new Object(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ abbr.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ abbr.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ abbr.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ abbr.prototype.onclick= new onclick(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ abbr.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ abbr.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ abbr.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ abbr.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ abbr.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ abbr.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ abbr.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ abbr.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ abbr.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ abbr.prototype.onfocus= new onfocus(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ abbr.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ abbr.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ abbr.prototype.onkeyup= new onkeyup(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ abbr.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ abbr.prototype.onmouseleave= new onmouseleave(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ abbr.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ abbr.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ abbr.prototype.onmovestart= new onmovestart(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ abbr.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ abbr.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ abbr.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ abbr.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ abbr.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ abbr.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ abbr.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ abbr.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ abbr.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ abbr.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf abbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ abbr.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abstract.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abstract.js
deleted file mode 100644
index 56777e65..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_abstract.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object Abstract() * @type Abstract * @super Object * @memberOf Abstract * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533126.aspx */ function Abstract(){}; Abstract.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_acronym.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_acronym.js
deleted file mode 100644
index 13365790..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_acronym.js
+++ /dev/null
@@ -1,96 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object acronym() * @type acronym * @super Object * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535179.aspx */ function acronym(){}; acronym.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ acronym.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ acronym.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ acronym.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ acronym.prototype.className=""; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ acronym.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ acronym.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ acronym.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ acronym.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ acronym.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ acronym.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ acronym.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ acronym.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ acronym.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ acronym.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ acronym.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ acronym.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ acronym.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ acronym.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ acronym.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ acronym.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ acronym.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ acronym.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ acronym.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ acronym.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ acronym.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ acronym.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ acronym.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ acronym.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ acronym.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ acronym.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ acronym.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ acronym.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ acronym.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ acronym.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ acronym.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ acronym.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ acronym.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ acronym.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ acronym.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ acronym.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ acronym.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ acronym.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ acronym.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ acronym.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ acronym.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ acronym.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ acronym.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ acronym.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ acronym.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ acronym.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ acronym.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ acronym.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ acronym.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ acronym.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ acronym.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ acronym.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ acronym.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ acronym.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ acronym.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ acronym.prototype.getAdjacentText=function(sWhere){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ acronym.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ acronym.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ acronym.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ acronym.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ acronym.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ acronym.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ acronym.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ acronym.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ acronym.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ acronym.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ acronym.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ acronym.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ acronym.prototype.normalize=function(){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ acronym.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ acronym.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ acronym.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ acronym.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ acronym.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ acronym.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ acronym.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ acronym.prototype.replaceNode=function(oNewNode){}; /** * function setActive() * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ acronym.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ acronym.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ acronym.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ acronym.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ acronym.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ acronym.prototype.activeElement=new Object(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ acronym.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ acronym.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ acronym.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ acronym.prototype.onclick= new onclick(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ acronym.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ acronym.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ acronym.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ acronym.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ acronym.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ acronym.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ acronym.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ acronym.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ acronym.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ acronym.prototype.onfocus= new onfocus(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ acronym.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ acronym.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ acronym.prototype.onkeyup= new onkeyup(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ acronym.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ acronym.prototype.onmouseleave= new onmouseleave(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ acronym.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ acronym.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ acronym.prototype.onmovestart= new onmovestart(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ acronym.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ acronym.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ acronym.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ acronym.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ acronym.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ acronym.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ acronym.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ acronym.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ acronym.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ acronym.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf acronym * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ acronym.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_address.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_address.js
deleted file mode 100644
index c1478f3c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_address.js
+++ /dev/null
@@ -1,131 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object address() * @type address * @super Object * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535181.aspx */ function address(){}; address.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ address.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ address.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ address.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ address.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ address.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ address.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ address.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ address.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ address.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ address.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ address.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ address.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ address.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ address.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ address.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ address.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ address.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ address.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ address.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ address.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ address.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ address.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ address.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ address.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ address.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ address.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ address.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ address.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ address.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ address.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ address.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ address.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ address.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ address.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ address.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ address.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ address.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ address.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ address.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ address.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ address.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ address.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ address.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ address.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ address.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ address.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ address.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ address.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ address.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ address.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ address.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ address.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ address.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ address.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ address.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ address.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ address.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ address.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ address.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ address.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ address.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ address.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ address.prototype.clearAttributes=function(){}; /** * function click() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ address.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ address.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ address.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ address.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ address.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ address.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ address.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ address.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ address.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ address.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ address.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ address.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ address.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ address.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ address.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ address.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ address.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ address.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ address.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ address.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ address.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ address.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ address.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ address.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ address.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ address.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ address.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ address.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ address.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ address.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ address.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ address.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ address.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ address.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ address.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ address.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ address.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ address.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ address.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ address.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ address.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ address.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ address.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ address.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ address.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ address.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ address.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ address.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ address.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ address.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ address.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ address.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ address.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ address.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ address.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ address.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ address.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ address.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ address.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ address.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ address.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ address.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ address.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ address.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ address.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ address.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ address.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ address.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ address.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ address.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ address.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ address.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ address.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ address.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ address.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ address.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ address.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ address.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ address.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ address.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ address.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ address.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ address.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ address.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ address.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ address.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ address.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ address.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ address.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ address.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ address.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ address.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ address.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ address.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ address.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ address.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ address.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ address.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf address * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ address.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_all.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_all.js
deleted file mode 100644
index 805f0559..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_all.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object all() * @type all * @super Array * @memberOf all * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ function all(){}; all.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf all * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ all.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf all * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ all.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf all * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ all.prototype.item=function(vIndex,iSubindex){}; /** * function namedItem(sName) * @param {String} sName * @memberOf all * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ all.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf all * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ all.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf all * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ all.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altkey.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altkey.js
deleted file mode 100644
index ba63a346..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altkey.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object altKey() * @type altKey * @super Object * @memberOf altKey * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533075.aspx */ function altKey(){}; altKey.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altleft.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altleft.js
deleted file mode 100644
index 7ddaca41..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_altleft.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object altLeft() * @type altLeft * @super Object * @memberOf altLeft * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533076.aspx */ function altLeft(){}; altLeft.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_anchors.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_anchors.js
deleted file mode 100644
index c495b0dd..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_anchors.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object anchors() * @type anchors * @super Array * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537435.aspx */ function anchors(){}; anchors.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ anchors.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ anchors.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ anchors.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ anchors.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ anchors.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ anchors.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf anchors * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ anchors.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applet.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applet.js
deleted file mode 100644
index 751630b3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applet.js
+++ /dev/null
@@ -1,137 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object applet() * @type applet * @super Object * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535183.aspx */ function applet(){}; applet.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ applet.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533066.aspx */ applet.prototype.align=""; /** * Property alt * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533073.aspx */ applet.prototype.alt=""; /** * Property altHTML * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533074.aspx */ applet.prototype.altHTML=""; /** * Property archive * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533081.aspx */ applet.prototype.archive=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ applet.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ applet.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ applet.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ applet.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ applet.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ applet.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ applet.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ applet.prototype.clientWidth=0; /** * Property code * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533575.aspx */ applet.prototype.code=""; /** * Property codeBase * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533576.aspx */ applet.prototype.codeBase=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ applet.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ applet.prototype.dataSrc=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ applet.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ applet.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ applet.prototype.hideFocus=false; /** * Property hspace * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533868.aspx */ applet.prototype.hspace=0; /** * Property id * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ applet.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ applet.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ applet.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ applet.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ applet.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ applet.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ applet.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ applet.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ applet.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ applet.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ applet.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ applet.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ applet.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ applet.prototype.nodeValue=new Object(); /** * Property object * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534197.aspx */ applet.prototype.object=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ applet.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ applet.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ applet.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ applet.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ applet.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ applet.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ applet.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ applet.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ applet.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ applet.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ applet.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ applet.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ applet.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ applet.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ applet.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ applet.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ applet.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ applet.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ applet.prototype.all= new all(); /** * Property src * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534643.aspx */ applet.prototype.src=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ applet.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ applet.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ applet.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ applet.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ applet.prototype.uniqueID=""; /** * Property vspace * @type Number * @returns {Number}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535141.aspx */ applet.prototype.vspace=0; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ applet.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ applet.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ applet.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ applet.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ applet.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ applet.prototype.clearAttributes=function(){}; /** * function click() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ applet.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ applet.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ applet.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ applet.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ applet.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ applet.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ applet.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ applet.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ applet.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ applet.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ applet.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ applet.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ applet.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ applet.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ applet.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ applet.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ applet.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ applet.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ applet.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ applet.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ applet.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function namedRecordset(sQualifier,sSubChapter) * @param {String} sQualifier * @param {String} sSubChapter * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536636.aspx */ applet.prototype.namedRecordset=function(sQualifier,sSubChapter){}; /** * function normalize() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ applet.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ applet.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ applet.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ applet.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ applet.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ applet.prototype.removeExpression=function(sPropertyName){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ applet.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ applet.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ applet.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ applet.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ applet.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ applet.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ applet.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ applet.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ applet.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ applet.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ applet.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ applet.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ applet.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ applet.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ applet.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ applet.prototype.onblur= new onblur(); /** * Property oncellchange * @type oncellchange * @returns {oncellchange}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536911.aspx */ applet.prototype.oncellchange= new oncellchange(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ applet.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ applet.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ applet.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ applet.prototype.oncut= new oncut(); /** * Property ondataavailable * @type ondataavailable * @returns {ondataavailable}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536918.aspx */ applet.prototype.ondataavailable= new ondataavailable(); /** * Property ondatasetchanged * @type ondatasetchanged * @returns {ondatasetchanged}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536919.aspx */ applet.prototype.ondatasetchanged= new ondatasetchanged(); /** * Property ondatasetcomplete * @type ondatasetcomplete * @returns {ondatasetcomplete}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536920.aspx */ applet.prototype.ondatasetcomplete= new ondatasetcomplete(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ applet.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ applet.prototype.ondeactivate= new ondeactivate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ applet.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ applet.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ applet.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ applet.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ applet.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ applet.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ applet.prototype.onkeyup= new onkeyup(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ applet.prototype.onload= new onload(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ applet.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ applet.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ applet.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ applet.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ applet.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ applet.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ applet.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ applet.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ applet.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ applet.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ applet.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ applet.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ applet.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ applet.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ applet.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ applet.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ applet.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ applet.prototype.onresizestart= new onresizestart(); /** * Property onrowenter * @type onrowenter * @returns {onrowenter}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536962.aspx */ applet.prototype.onrowenter= new onrowenter(); /** * Property onrowexit * @type onrowexit * @returns {onrowexit}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536963.aspx */ applet.prototype.onrowexit= new onrowexit(); /** * Property onrowsdelete * @type onrowsdelete * @returns {onrowsdelete}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536964.aspx */ applet.prototype.onrowsdelete= new onrowsdelete(); /** * Property onrowsinserted * @type onrowsinserted * @returns {onrowsinserted}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536965.aspx */ applet.prototype.onrowsinserted= new onrowsinserted(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ applet.prototype.onscroll= new onscroll(); /** * Property all * @type all * @returns {all}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ applet.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ applet.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ applet.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ applet.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ applet.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf applet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ applet.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applets.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applets.js
deleted file mode 100644
index 573c4f92..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_applets.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2004, 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 ****************************************************************************** * **/ /** * Object applets() * @type applets * @super Array * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537436.aspx */ function applets(){}; applets.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ applets.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ applets.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ applets.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ applets.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ applets.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ applets.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf applets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ applets.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_area.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_area.js
deleted file mode 100644
index 117a754d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_area.js
+++ /dev/null
@@ -1,131 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object area() * @type area * @super Object * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535185.aspx */ function area(){}; area.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ area.prototype.accessKey=""; /** * Property alt * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533073.aspx */ area.prototype.alt=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ area.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ area.prototype.className=""; /** * Property coords * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533695.aspx */ area.prototype.coords=""; /** * Property dir * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ area.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ area.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ area.prototype.childNodes= new childNodes(); /** * Property hash * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533775.aspx */ area.prototype.hash=""; /** * Property href * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533863.aspx */ area.prototype.href=""; /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ area.prototype.hideFocus=false; /** * Property host * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533784.aspx */ area.prototype.host=""; /** * Property hostname * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533785.aspx */ area.prototype.hostname=""; /** * Property port * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534342.aspx */ area.prototype.port=""; /** * Property id * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ area.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ area.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ area.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ area.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ area.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ area.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ area.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ area.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ area.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ area.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ area.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ area.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ area.prototype.nodeValue=new Object(); /** * Property noHref * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534193.aspx */ area.prototype.noHref=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ area.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ area.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ area.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ area.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ area.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ area.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ area.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ area.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ area.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ area.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ area.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ area.prototype.parentTextEdit=new Object(); /** * Property pathname * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534332.aspx */ area.prototype.pathname=""; /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ area.prototype.previousSibling=new Object(); /** * Property protocol * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534353.aspx */ area.prototype.protocol=""; /** * Property readyState * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ area.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ area.prototype.scopeName=""; /** * Property search * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534620.aspx */ area.prototype.search=""; /** * Property href * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533867.aspx */ area.prototype.href=""; /** * Property shape * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534628.aspx */ area.prototype.shape=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ area.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ area.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ area.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ area.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ area.prototype.tagUrn=""; /** * Property target * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534659.aspx */ area.prototype.target=""; /** * Property title * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ area.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ area.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ area.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ area.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ area.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ area.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ area.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ area.prototype.clearAttributes=function(){}; /** * function click() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ area.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ area.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ area.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ area.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ area.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ area.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ area.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ area.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ area.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ area.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ area.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ area.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ area.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ area.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ area.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ area.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ area.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ area.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ area.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ area.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ area.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ area.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ area.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ area.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ area.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ area.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ area.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ area.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ area.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ area.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ area.prototype.removeExpression=function(sPropertyName){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ area.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ area.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ area.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ area.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ area.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ area.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ area.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ area.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ area.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ area.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ area.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ area.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ area.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ area.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ area.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ area.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ area.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ area.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ area.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ area.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ area.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ area.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ area.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ area.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ area.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ area.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ area.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ area.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ area.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ area.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ area.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ area.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ area.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ area.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ area.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ area.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ area.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ area.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ area.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ area.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ area.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ area.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ area.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ area.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ area.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ area.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ area.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ area.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ area.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ area.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ area.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ area.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ area.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ area.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ area.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ area.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ area.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ area.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ area.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ area.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ area.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ area.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf area * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ area.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_areas.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_areas.js
deleted file mode 100644
index f7f907d7..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_areas.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object areas() * @type areas * @super Array * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537437.aspx */ function areas(){}; areas.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ areas.prototype.length=0; /** * function add(oElement,iIndex) * @param {Object} oElement * @param {Number} iIndex * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535921.aspx */ areas.prototype.add=function(oElement,iIndex){}; /** * function add(oElement,iIndex) * @param {Object} oElement * @param {Number} iIndex * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535921.aspx */ areas.prototype.add=function(oElement,iIndex){}; /** * Property controlRange * @type controlRange * @returns {controlRange}
- * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537447.aspx */ areas.prototype.controlRange= new controlRange(); /** * Property options * @type options * @returns {options}
- * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537472.aspx */ areas.prototype.options= new options(); /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ areas.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ areas.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ areas.prototype.namedItem=function(sName){}; /** * function remove(iIndex) * @param {Number} iIndex * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536694.aspx */ areas.prototype.remove=function(iIndex){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ areas.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf areas * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ areas.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attribute.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attribute.js
deleted file mode 100644
index bf827047..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attribute.js
+++ /dev/null
@@ -1,21 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object attribute() * @type attribute * @super Object * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ function attribute(){}; attribute.prototype= new Object(); /** * Property expando * @type Boolean * @returns {Boolean}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533747.aspx */ attribute.prototype.expando=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ attribute.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ attribute.prototype.childNodes= new childNodes(); /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ attribute.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ attribute.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ attribute.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ attribute.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ attribute.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ attribute.prototype.nodeValue=new Object(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ attribute.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ attribute.prototype.document= new document(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ attribute.prototype.parentNode=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ attribute.prototype.previousSibling=new Object(); /** * Property specified * @type Boolean * @returns {Boolean}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534637.aspx */ attribute.prototype.specified=false; /** * Property value * @type String * @returns {String}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535129.aspx */ attribute.prototype.value=""; /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ attribute.prototype.attributes= new attributes(); /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ attribute.prototype.appendChild=function(oNode){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ attribute.prototype.cloneNode=function(bCloneChildren){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ attribute.prototype.hasChildNodes=function(){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ attribute.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ attribute.prototype.removeChild=function(oNode){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ attribute.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ attribute.prototype.attributes= new attributes(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ attribute.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf attribute * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ attribute.prototype.TextNode= new TextNode(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attributes.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attributes.js
deleted file mode 100644
index 76ed065b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_attributes.js
+++ /dev/null
@@ -1,8 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object attributes() * @type attributes * @super Array * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ function attributes(){}; attributes.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ attributes.prototype.length=0; /** * function getNamedItem(sGetName) * @param {String} sGetName * @type attribute * @returns {attribute}
- * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536441.aspx */ attributes.prototype.getNamedItem=function(sGetName){}; /** * function getNamedItem(sGetName) * @param {String} sGetName * @type attribute * @returns {attribute}
- * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536441.aspx */ attributes.prototype.getNamedItem=function(sGetName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ attributes.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ attributes.prototype.name=""; /** * function item(vIndex) * @param {Number} vIndex * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536462.aspx */ attributes.prototype.item=function(vIndex){}; /** * function removeNamedItem(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536706.aspx */ attributes.prototype.removeNamedItem=function(sName){}; /** * function setNamedItem(oNamedItem) * @param {attribute} oNamedItem * @type attribute * @returns {attribute}
- * @memberOf attributes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536751.aspx */ attributes.prototype.setNamedItem=function(oNamedItem){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_b.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_b.js
deleted file mode 100644
index 2354d755..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_b.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object b() * @type b * @super Object * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535189.aspx */ function b(){}; b.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ b.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ b.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ b.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ b.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ b.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ b.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ b.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ b.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ b.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ b.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ b.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ b.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ b.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ b.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ b.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ b.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ b.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ b.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ b.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ b.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ b.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ b.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ b.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ b.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ b.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ b.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ b.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ b.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ b.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ b.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ b.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ b.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ b.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ b.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ b.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ b.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ b.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ b.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ b.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ b.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ b.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ b.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ b.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ b.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ b.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ b.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ b.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ b.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ b.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ b.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ b.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ b.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ b.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ b.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ b.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ b.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ b.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ b.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ b.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ b.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ b.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ b.prototype.clearAttributes=function(){}; /** * function click() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ b.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ b.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ b.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ b.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ b.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ b.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ b.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ b.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ b.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ b.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ b.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ b.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ b.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ b.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ b.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ b.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ b.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ b.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ b.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ b.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ b.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ b.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ b.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ b.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ b.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ b.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ b.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ b.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ b.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ b.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ b.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ b.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ b.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ b.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ b.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ b.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ b.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ b.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ b.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ b.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ b.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ b.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ b.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ b.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ b.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ b.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ b.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ b.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ b.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ b.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ b.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ b.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ b.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ b.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ b.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ b.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ b.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ b.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ b.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ b.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ b.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ b.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ b.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ b.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ b.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ b.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ b.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ b.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ b.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ b.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ b.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ b.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ b.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ b.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ b.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ b.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ b.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ b.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ b.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ b.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ b.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ b.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ b.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ b.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ b.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ b.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ b.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ b.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ b.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ b.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ b.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ b.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ b.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ b.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ b.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ b.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ b.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ b.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf b * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ b.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_banner.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_banner.js
deleted file mode 100644
index 1d21b2e5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_banner.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object Banner() * @type Banner * @super Object * @memberOf Banner * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533136.aspx */ function Banner(){}; Banner.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_base.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_base.js
deleted file mode 100644
index 967adbe6..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_base.js
+++ /dev/null
@@ -1,55 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object base() * @type base * @super Object * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535191.aspx */ function base(){}; base.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ base.prototype.canHaveHTML=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ base.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ base.prototype.childNodes= new childNodes(); /** * Property href * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533865.aspx */ base.prototype.href=""; /** * Property id * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ base.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ base.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ base.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ base.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ base.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ base.prototype.TextRange= new TextRange(); /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ base.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ base.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ base.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ base.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ base.prototype.nodeValue=new Object(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ base.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ base.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ base.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ base.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ base.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ base.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ base.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ base.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ base.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ base.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ base.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ base.prototype.tagUrn=""; /** * Property target * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534659.aspx */ base.prototype.target=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ base.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ base.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ base.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ base.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ base.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ base.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ base.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ base.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ base.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ base.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ base.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ base.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ base.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ base.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ base.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ base.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ base.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ base.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ base.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ base.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ base.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ base.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ base.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ base.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ base.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ base.prototype.removeBehavior=function(iID){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ base.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ base.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ base.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ base.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ base.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ base.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ base.prototype.onmouseleave= new onmouseleave(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ base.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ base.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ base.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ base.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ base.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ base.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf base * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ base.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_basefont.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_basefont.js
deleted file mode 100644
index 33413dd4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_basefont.js
+++ /dev/null
@@ -1,57 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object baseFont() * @type baseFont * @super Object * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535193.aspx */ function baseFont(){}; baseFont.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ baseFont.prototype.canHaveHTML=false; /** * Property color * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533579.aspx */ baseFont.prototype.color=new Object(); /** * Property face * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533748.aspx */ baseFont.prototype.face=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ baseFont.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ baseFont.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ baseFont.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ baseFont.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ baseFont.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ baseFont.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ baseFont.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ baseFont.prototype.TextRange= new TextRange(); /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ baseFont.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ baseFont.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ baseFont.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ baseFont.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ baseFont.prototype.nodeValue=new Object(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ baseFont.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ baseFont.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ baseFont.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ baseFont.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ baseFont.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ baseFont.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ baseFont.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ baseFont.prototype.scopeName=""; /** * Property size * @type Number * @returns {Number}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534631.aspx */ baseFont.prototype.size=0; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ baseFont.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ baseFont.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ baseFont.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ baseFont.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ baseFont.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ baseFont.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ baseFont.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ baseFont.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ baseFont.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ baseFont.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ baseFont.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ baseFont.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ baseFont.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ baseFont.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ baseFont.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ baseFont.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ baseFont.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ baseFont.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ baseFont.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ baseFont.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ baseFont.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ baseFont.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ baseFont.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ baseFont.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ baseFont.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ baseFont.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ baseFont.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ baseFont.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ baseFont.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ baseFont.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ baseFont.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ baseFont.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ baseFont.prototype.removeBehavior=function(iID){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ baseFont.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ baseFont.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ baseFont.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ baseFont.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ baseFont.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ baseFont.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ baseFont.prototype.onmouseleave= new onmouseleave(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ baseFont.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ baseFont.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ baseFont.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ baseFont.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ baseFont.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ baseFont.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf baseFont * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ baseFont.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bdo.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bdo.js
deleted file mode 100644
index 5e22957c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bdo.js
+++ /dev/null
@@ -1,125 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object bdo() * @type bdo * @super Object * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535196.aspx */ function bdo(){}; bdo.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ bdo.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ bdo.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ bdo.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ bdo.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ bdo.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ bdo.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ bdo.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ bdo.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ bdo.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ bdo.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ bdo.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ bdo.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ bdo.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ bdo.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ bdo.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ bdo.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ bdo.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ bdo.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ bdo.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ bdo.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ bdo.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ bdo.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ bdo.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ bdo.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ bdo.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ bdo.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ bdo.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ bdo.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ bdo.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ bdo.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ bdo.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ bdo.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ bdo.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ bdo.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ bdo.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ bdo.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ bdo.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ bdo.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ bdo.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ bdo.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ bdo.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ bdo.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ bdo.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ bdo.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ bdo.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ bdo.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ bdo.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ bdo.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ bdo.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ bdo.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ bdo.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ bdo.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ bdo.prototype.title=""; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ bdo.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ bdo.prototype.applyElement=function(oNewElement){}; /** * function blur() * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ bdo.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ bdo.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ bdo.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ bdo.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ bdo.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ bdo.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ bdo.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ bdo.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ bdo.prototype.getAdjacentText=function(sWhere){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ bdo.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ bdo.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ bdo.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ bdo.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ bdo.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ bdo.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ bdo.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ bdo.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ bdo.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ bdo.prototype.normalize=function(){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ bdo.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ bdo.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ bdo.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ bdo.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ bdo.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ bdo.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ bdo.prototype.replaceNode=function(oNewNode){}; /** * function setActive() * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ bdo.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ bdo.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ bdo.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ bdo.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ bdo.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ bdo.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ bdo.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ bdo.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ bdo.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ bdo.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ bdo.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ bdo.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ bdo.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ bdo.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ bdo.prototype.onblur= new onblur(); /** * Property oncellchange * @type oncellchange * @returns {oncellchange}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536911.aspx */ bdo.prototype.oncellchange= new oncellchange(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ bdo.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ bdo.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ bdo.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ bdo.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ bdo.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ bdo.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ bdo.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ bdo.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ bdo.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ bdo.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ bdo.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ bdo.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ bdo.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ bdo.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ bdo.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ bdo.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ bdo.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ bdo.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ bdo.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ bdo.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ bdo.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ bdo.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ bdo.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ bdo.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ bdo.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ bdo.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ bdo.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ bdo.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ bdo.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ bdo.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ bdo.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ bdo.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ bdo.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ bdo.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ bdo.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ bdo.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ bdo.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ bdo.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ bdo.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ bdo.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ bdo.prototype.onscroll= new onscroll(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ bdo.prototype.onselectstart= new onselectstart(); /** * Property all * @type all * @returns {all}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ bdo.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ bdo.prototype.attributes= new attributes(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ bdo.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ bdo.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ bdo.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf bdo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ bdo.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_behaviorurns.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_behaviorurns.js
deleted file mode 100644
index 6ec1ce86..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_behaviorurns.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object behaviorUrns() * @type behaviorUrns * @super Array * @memberOf behaviorUrns * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ function behaviorUrns(){}; behaviorUrns.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf behaviorUrns * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ behaviorUrns.prototype.length=0; /** * function item(iIndex) * @param {Number} iIndex * @memberOf behaviorUrns * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536463.aspx */ behaviorUrns.prototype.item=function(iIndex){}; /** * function item(iIndex) * @param {Number} iIndex * @memberOf behaviorUrns * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536463.aspx */ behaviorUrns.prototype.item=function(iIndex){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bgsound.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bgsound.js
deleted file mode 100644
index 7d2e1613..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bgsound.js
+++ /dev/null
@@ -1,47 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object bgSound() * @type bgSound * @super Object * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535198.aspx */ function bgSound(){}; bgSound.prototype= new Object(); /** * Property balance * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533500.aspx */ bgSound.prototype.balance=new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ bgSound.prototype.canHaveHTML=false; /** * Property id * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ bgSound.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ bgSound.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ bgSound.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ bgSound.prototype.isMultiLine=false; /** * Property loop * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534134.aspx */ bgSound.prototype.loop=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ bgSound.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ bgSound.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ bgSound.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ bgSound.prototype.nodeValue=new Object(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ bgSound.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ bgSound.prototype.outerText=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ bgSound.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ bgSound.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ bgSound.prototype.parentTextEdit=new Object(); /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ bgSound.prototype.TextRange= new TextRange(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ bgSound.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ bgSound.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ bgSound.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ bgSound.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ bgSound.prototype.all= new all(); /** * Property src * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534641.aspx */ bgSound.prototype.src=""; /** * Property tagName * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ bgSound.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ bgSound.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ bgSound.prototype.uniqueID=""; /** * Property volume * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535140.aspx */ bgSound.prototype.volume=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ bgSound.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ bgSound.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ bgSound.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ bgSound.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ bgSound.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ bgSound.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ bgSound.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ bgSound.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ bgSound.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ bgSound.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ bgSound.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ bgSound.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ bgSound.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ bgSound.prototype.getElementsByTagName=function(sTagName){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ bgSound.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ bgSound.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ bgSound.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ bgSound.prototype.TextNode= new TextNode(); /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ bgSound.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ bgSound.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ bgSound.prototype.removeBehavior=function(iID){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ bgSound.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ bgSound.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ bgSound.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ bgSound.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ bgSound.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ bgSound.prototype.onmouseleave= new onmouseleave(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ bgSound.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ bgSound.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ bgSound.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf bgSound * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ bgSound.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_big.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_big.js
deleted file mode 100644
index 7af20a30..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_big.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object big() * @type big * @super Object * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535200.aspx */ function big(){}; big.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ big.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ big.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ big.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ big.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ big.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ big.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ big.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ big.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ big.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ big.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ big.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ big.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ big.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ big.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ big.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ big.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ big.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ big.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ big.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ big.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ big.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ big.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ big.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ big.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ big.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ big.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ big.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ big.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ big.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ big.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ big.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ big.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ big.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ big.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ big.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ big.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ big.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ big.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ big.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ big.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ big.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ big.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ big.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ big.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ big.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ big.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ big.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ big.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ big.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ big.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ big.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ big.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ big.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ big.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ big.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ big.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ big.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ big.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ big.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ big.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ big.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ big.prototype.clearAttributes=function(){}; /** * function click() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ big.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ big.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ big.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ big.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ big.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ big.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ big.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ big.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ big.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ big.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ big.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ big.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ big.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ big.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ big.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ big.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ big.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ big.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ big.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ big.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ big.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ big.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ big.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ big.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ big.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ big.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ big.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ big.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ big.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ big.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ big.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ big.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ big.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ big.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ big.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ big.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ big.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ big.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ big.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ big.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ big.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ big.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ big.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ big.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ big.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ big.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ big.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ big.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ big.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ big.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ big.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ big.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ big.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ big.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ big.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ big.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ big.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ big.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ big.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ big.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ big.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ big.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ big.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ big.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ big.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ big.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ big.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ big.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ big.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ big.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ big.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ big.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ big.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ big.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ big.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ big.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ big.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ big.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ big.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ big.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ big.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ big.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ big.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ big.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ big.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ big.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ big.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ big.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ big.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ big.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ big.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ big.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ big.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ big.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ big.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ big.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ big.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ big.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf big * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ big.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockformats.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockformats.js
deleted file mode 100644
index be41688d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockformats.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object blockFormats() * @type blockFormats * @super Array * @memberOf blockFormats * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537440.aspx */ function blockFormats(){}; blockFormats.prototype= new Array(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf blockFormats * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533696.aspx */ blockFormats.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf blockFormats * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533924.aspx */ blockFormats.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf blockFormats * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533924.aspx */ blockFormats.prototype.TF-8"= new TF-8"(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockquote.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockquote.js
deleted file mode 100644
index 72878b36..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_blockquote.js
+++ /dev/null
@@ -1,132 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object blockQuote() * @type blockQuote * @super Object * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535202.aspx */ function blockQuote(){}; blockQuote.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ blockQuote.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ blockQuote.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ blockQuote.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ blockQuote.prototype.canHaveHTML=false; /** * Property cite * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533558.aspx */ blockQuote.prototype.cite=""; /** * Property className * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ blockQuote.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ blockQuote.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ blockQuote.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ blockQuote.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ blockQuote.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ blockQuote.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ blockQuote.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ blockQuote.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ blockQuote.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ blockQuote.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ blockQuote.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ blockQuote.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ blockQuote.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ blockQuote.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ blockQuote.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ blockQuote.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ blockQuote.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ blockQuote.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ blockQuote.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ blockQuote.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ blockQuote.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ blockQuote.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ blockQuote.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ blockQuote.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ blockQuote.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ blockQuote.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ blockQuote.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ blockQuote.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ blockQuote.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ blockQuote.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ blockQuote.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ blockQuote.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ blockQuote.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ blockQuote.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ blockQuote.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ blockQuote.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ blockQuote.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ blockQuote.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ blockQuote.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ blockQuote.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ blockQuote.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ blockQuote.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ blockQuote.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ blockQuote.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ blockQuote.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ blockQuote.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ blockQuote.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ blockQuote.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ blockQuote.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ blockQuote.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ blockQuote.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ blockQuote.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ blockQuote.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ blockQuote.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ blockQuote.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ blockQuote.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ blockQuote.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ blockQuote.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ blockQuote.prototype.clearAttributes=function(){}; /** * function click() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ blockQuote.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ blockQuote.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ blockQuote.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ blockQuote.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ blockQuote.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ blockQuote.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ blockQuote.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ blockQuote.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ blockQuote.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ blockQuote.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ blockQuote.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ blockQuote.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ blockQuote.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ blockQuote.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ blockQuote.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ blockQuote.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ blockQuote.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ blockQuote.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ blockQuote.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ blockQuote.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ blockQuote.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ blockQuote.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ blockQuote.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ blockQuote.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ blockQuote.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ blockQuote.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ blockQuote.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ blockQuote.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ blockQuote.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ blockQuote.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ blockQuote.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ blockQuote.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ blockQuote.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ blockQuote.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ blockQuote.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ blockQuote.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ blockQuote.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ blockQuote.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ blockQuote.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ blockQuote.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ blockQuote.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ blockQuote.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ blockQuote.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ blockQuote.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ blockQuote.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ blockQuote.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ blockQuote.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ blockQuote.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ blockQuote.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ blockQuote.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ blockQuote.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ blockQuote.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ blockQuote.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ blockQuote.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ blockQuote.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ blockQuote.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ blockQuote.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ blockQuote.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ blockQuote.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ blockQuote.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ blockQuote.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ blockQuote.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ blockQuote.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ blockQuote.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ blockQuote.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ blockQuote.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ blockQuote.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ blockQuote.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ blockQuote.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ blockQuote.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ blockQuote.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ blockQuote.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ blockQuote.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ blockQuote.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ blockQuote.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ blockQuote.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ blockQuote.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ blockQuote.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ blockQuote.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ blockQuote.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ blockQuote.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ blockQuote.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ blockQuote.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ blockQuote.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ blockQuote.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ blockQuote.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ blockQuote.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ blockQuote.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ blockQuote.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ blockQuote.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ blockQuote.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ blockQuote.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ blockQuote.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ blockQuote.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ blockQuote.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ blockQuote.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ blockQuote.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ blockQuote.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf blockQuote * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ blockQuote.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_body.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_body.js
deleted file mode 100644
index a9e26b19..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_body.js
+++ /dev/null
@@ -1,152 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object body() * @type body * @super Object * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535205.aspx */ function body(){}; body.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ body.prototype.accessKey=""; /** * Property aLink * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533070.aspx */ body.prototype.aLink=new Object(); /** * Property background * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533498.aspx */ body.prototype.background=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ body.prototype.bgColor=new Object(); /** * Property bgProperties * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533507.aspx */ body.prototype.bgProperties=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ body.prototype.blockDirection=""; /** * Property bottomMargin * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533536.aspx */ body.prototype.bottomMargin=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ body.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ body.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ body.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ body.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ body.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ body.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ body.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ body.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ body.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ body.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ body.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ body.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ body.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ body.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ body.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ body.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ body.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ body.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ body.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ body.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ body.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ body.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ body.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ body.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ body.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ body.prototype.lastChild=new Object(); /** * Property leftMargin * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534096.aspx */ body.prototype.leftMargin=new Object(); /** * Property link * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534119.aspx */ body.prototype.link=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ body.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ body.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ body.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ body.prototype.nodeValue=new Object(); /** * Property noWrap * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534196.aspx */ body.prototype.noWrap=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ body.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ body.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ body.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ body.prototype.onOffBehavior=new DABoolean(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ body.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ body.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ body.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ body.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ body.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ body.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ body.prototype.readyState=new Object(); /** * Property rightMargin * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534375.aspx */ body.prototype.rightMargin=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ body.prototype.scopeName=""; /** * Property scroll * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534393.aspx */ body.prototype.scroll=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ body.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ body.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ body.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ body.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ body.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ body.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ body.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ body.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ body.prototype.tagUrn=""; /** * Property text * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534677.aspx */ body.prototype.text=new Object(); /** * Property timeStartRule * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533642.aspx */ body.prototype.timeStartRule=""; /** * Property title * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ body.prototype.title=""; /** * Property topMargin * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534685.aspx */ body.prototype.topMargin=new Object(); /** * Property uniqueID * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ body.prototype.uniqueID=""; /** * Property vLink * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535138.aspx */ body.prototype.vLink=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ body.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ body.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ body.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ body.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ body.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ body.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ body.prototype.clearAttributes=function(){}; /** * function click() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ body.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ body.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ body.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ body.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ body.prototype.contains=function(oElement){}; /** * function createControlRange() * @type controlRange * @returns {controlRange}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536385.aspx */ body.prototype.createControlRange=function(){}; /** * Property controlRange * @type controlRange * @returns {controlRange}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537447.aspx */ body.prototype.controlRange= new controlRange(); /** * function createTextRange() * @type TextRange * @returns {TextRange}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536401.aspx */ body.prototype.createTextRange=function(){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ body.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function doScroll(sScrollAction) * @param {String} sScrollAction * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536414.aspx */ body.prototype.doScroll=function(sScrollAction){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ body.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ body.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ body.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ body.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ body.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ body.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ body.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ body.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ body.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ body.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ body.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ body.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ body.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ body.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ body.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ body.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ body.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ body.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ body.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ body.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ body.prototype.normalize=function(){}; /** * function pause() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533646.aspx */ body.prototype.pause=function(){}; /** * function releaseCapture() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ body.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ body.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ body.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ body.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ body.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ body.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ body.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ body.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ body.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ body.prototype.replaceNode=function(oNewNode){}; /** * function resume() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533647.aspx */ body.prototype.resume=function(){}; /** * function setActive() * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ body.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ body.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ body.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ body.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ body.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ body.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ body.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ body.prototype.activeElement=new Object(); /** * Property onafterprint * @type onafterprint * @returns {onafterprint}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536788.aspx */ body.prototype.onafterprint= new onafterprint(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ body.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ body.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ body.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ body.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ body.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeprint * @type onbeforeprint * @returns {onbeforeprint}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536906.aspx */ body.prototype.onbeforeprint= new onbeforeprint(); /** * Property onbeforeunload * @type onbeforeunload * @returns {onbeforeunload}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536907.aspx */ body.prototype.onbeforeunload= new onbeforeunload(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ body.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ body.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ body.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ body.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ body.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ body.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ body.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ body.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ body.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ body.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ body.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ body.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ body.prototype.ondrop= new ondrop(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ body.prototype.onfilterchange= new onfilterchange(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ body.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ body.prototype.onfocusout= new onfocusout(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ body.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ body.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ body.prototype.onkeyup= new onkeyup(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ body.prototype.onload= new onload(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ body.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ body.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ body.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ body.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ body.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ body.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ body.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ body.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ body.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ body.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ body.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ body.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ body.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ body.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ body.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ body.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ body.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ body.prototype.onscroll= new onscroll(); /** * Property onselect * @type onselect * @returns {onselect}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536967.aspx */ body.prototype.onselect= new onselect(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ body.prototype.onselectstart= new onselectstart(); /** * Property onunload * @type onunload * @returns {onunload}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536973.aspx */ body.prototype.onunload= new onunload(); /** * Property all * @type all * @returns {all}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ body.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ body.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ body.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ body.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ body.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ body.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ body.prototype.filters= new filters(); /** * Property timeAll * @type timeAll * @returns {timeAll}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533609.aspx */ body.prototype.timeAll= new timeAll(); /** * Property timeChildren * @type timeChildren * @returns {timeChildren}
- * @memberOf body * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533610.aspx */ body.prototype.timeChildren= new timeChildren(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bookmarks.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bookmarks.js
deleted file mode 100644
index 492ebe9a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_bookmarks.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object bookmarks() * @type bookmarks * @super Array * @memberOf bookmarks * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537441.aspx */ function bookmarks(){}; bookmarks.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf bookmarks * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ bookmarks.prototype.length=0; /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf bookmarks * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536607.aspx */ bookmarks.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf bookmarks * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536607.aspx */ bookmarks.prototype.TF-8"= new TF-8"(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_boundelements.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_boundelements.js
deleted file mode 100644
index 9eb8f1f9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_boundelements.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object boundElements() * @type boundElements * @super Array * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537442.aspx */ function boundElements(){}; boundElements.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ boundElements.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ boundElements.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ boundElements.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ boundElements.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ boundElements.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ boundElements.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf boundElements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ boundElements.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_br.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_br.js
deleted file mode 100644
index ec068383..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_br.js
+++ /dev/null
@@ -1,53 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object br() * @type br * @super Object * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535208.aspx */ function br(){}; br.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ br.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ br.prototype.className=""; /** * Property clear * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533562.aspx */ br.prototype.clear=""; /** * Property id * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ br.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ br.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ br.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ br.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ br.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ br.prototype.TextRange= new TextRange(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ br.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ br.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ br.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ br.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ br.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ br.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ br.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ br.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ br.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ br.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ br.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ br.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ br.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ br.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ br.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ br.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ br.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ br.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ br.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ br.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ br.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ br.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ br.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ br.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ br.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ br.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ br.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ br.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ br.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ br.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ br.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ br.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ br.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ br.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ br.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ br.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ br.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ br.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ br.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ br.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ br.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ br.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ br.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ br.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ br.prototype.TextNode= new TextNode(); /** * function releaseCapture() * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ br.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ br.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ br.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ br.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ br.prototype.removeExpression=function(sPropertyName){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ br.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ br.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ br.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ br.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ br.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ br.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ br.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ br.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ br.prototype.onlosecapture= new onlosecapture(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ br.prototype.onreadystatechange= new onreadystatechange(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ br.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf br * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ br.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_button.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_button.js
deleted file mode 100644
index 0801b94a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_button.js
+++ /dev/null
@@ -1,141 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object button() * @type button * @super Object * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535211.aspx */ function button(){}; button.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ button.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ button.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ button.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ button.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ button.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ button.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ button.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ button.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ button.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ button.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ button.prototype.contentEditable=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ button.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ button.prototype.dataSrc=""; /** * Property dataFormatAs * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533706.aspx */ button.prototype.dataFormatAs=""; /** * Property dir * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ button.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ button.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ button.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ button.prototype.childNodes= new childNodes(); /** * Property form * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ button.prototype.form=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ button.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ button.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ button.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ button.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ button.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ button.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ button.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ button.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ button.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ button.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ button.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ button.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ button.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ button.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ button.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ button.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ button.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ button.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ button.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ button.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ button.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ button.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ button.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ button.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ button.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ button.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ button.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ button.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ button.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ button.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ button.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ button.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ button.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ button.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ button.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ button.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ button.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ button.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ button.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ button.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ button.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ button.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534696.aspx */ button.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ button.prototype.uniqueID=""; /** * Property value * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535123.aspx */ button.prototype.value=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ button.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ button.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ button.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ button.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ button.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ button.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ button.prototype.clearAttributes=function(){}; /** * function click() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ button.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ button.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ button.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ button.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ button.prototype.contains=function(oElement){}; /** * function createTextRange() * @type TextRange * @returns {TextRange}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536401.aspx */ button.prototype.createTextRange=function(){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ button.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ button.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ button.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ button.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ button.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ button.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ button.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ button.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ button.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ button.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ button.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ button.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ button.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ button.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ button.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ button.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ button.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ button.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ button.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ button.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ button.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ button.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ button.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ button.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ button.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ button.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ button.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ button.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ button.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ button.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ button.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ button.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ button.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ button.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ button.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ button.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ button.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ button.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ button.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ button.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ button.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ button.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ button.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ button.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ button.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ button.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ button.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ button.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ button.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ button.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ button.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ button.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ button.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ button.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ button.prototype.ondeactivate= new ondeactivate(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ button.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ button.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ button.prototype.ondragover= new ondragover(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ button.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ button.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ button.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ button.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ button.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ button.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ button.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ button.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ button.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ button.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ button.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ button.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ button.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ button.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ button.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ button.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ button.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ button.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ button.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ button.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ button.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ button.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ button.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ button.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ button.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ button.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ button.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ button.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ button.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ button.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ button.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ button.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ button.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ button.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ button.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ button.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf button * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ button.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cancelbubble.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cancelbubble.js
deleted file mode 100644
index 2794f4f0..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cancelbubble.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object cancelBubble() * @type cancelBubble * @super Object * @memberOf cancelBubble * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533545.aspx */ function cancelBubble(){}; cancelBubble.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_caption.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_caption.js
deleted file mode 100644
index 7f9bf22f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_caption.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object caption() * @type caption * @super Object * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535213.aspx */ function caption(){}; caption.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ caption.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533067.aspx */ caption.prototype.align=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ caption.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ caption.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ caption.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ caption.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ caption.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ caption.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ caption.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ caption.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ caption.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ caption.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ caption.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ caption.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ caption.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ caption.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ caption.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ caption.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ caption.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ caption.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ caption.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ caption.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ caption.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ caption.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ caption.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ caption.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ caption.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ caption.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ caption.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ caption.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ caption.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ caption.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ caption.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ caption.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ caption.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ caption.prototype.outerHTML=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ caption.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ caption.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ caption.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ caption.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ caption.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ caption.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ caption.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ caption.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ caption.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ caption.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ caption.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ caption.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ caption.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ caption.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ caption.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ caption.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ caption.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ caption.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ caption.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534714.aspx */ caption.prototype.vAlign=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ caption.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ caption.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ caption.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ caption.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ caption.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ caption.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ caption.prototype.clearAttributes=function(){}; /** * function click() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ caption.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ caption.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ caption.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ caption.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ caption.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ caption.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ caption.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ caption.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ caption.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ caption.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ caption.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ caption.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ caption.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ caption.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ caption.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ caption.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ caption.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ caption.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ caption.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ caption.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ caption.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ caption.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ caption.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ caption.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ caption.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ caption.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ caption.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ caption.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ caption.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ caption.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ caption.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ caption.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ caption.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ caption.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ caption.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ caption.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ caption.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ caption.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ caption.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ caption.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ caption.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ caption.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ caption.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ caption.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ caption.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ caption.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ caption.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ caption.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ caption.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ caption.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ caption.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ caption.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ caption.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ caption.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ caption.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ caption.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ caption.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ caption.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ caption.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ caption.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ caption.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ caption.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ caption.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ caption.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ caption.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ caption.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ caption.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ caption.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ caption.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ caption.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ caption.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ caption.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ caption.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ caption.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ caption.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ caption.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ caption.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ caption.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ caption.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ caption.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ caption.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ caption.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ caption.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ caption.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ caption.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ caption.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ caption.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ caption.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ caption.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ caption.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ caption.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ caption.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ caption.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ caption.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ caption.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ caption.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ caption.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf caption * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ caption.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cells.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cells.js
deleted file mode 100644
index 5979a90e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cells.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object cells() * @type cells * @super Array * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537443.aspx */ function cells(){}; cells.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ cells.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ cells.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ cells.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ cells.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ cells.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ cells.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf cells * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ cells.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_center.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_center.js
deleted file mode 100644
index 62d953b4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_center.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object center() * @type center * @super Object * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535215.aspx */ function center(){}; center.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ center.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ center.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ center.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ center.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ center.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ center.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ center.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ center.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ center.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ center.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ center.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ center.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ center.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ center.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ center.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ center.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ center.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ center.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ center.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ center.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ center.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ center.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ center.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ center.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ center.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ center.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ center.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ center.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ center.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ center.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ center.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ center.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ center.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ center.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ center.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ center.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ center.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ center.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ center.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ center.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ center.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ center.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ center.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ center.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ center.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ center.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ center.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ center.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ center.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ center.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ center.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ center.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ center.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ center.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ center.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ center.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ center.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ center.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ center.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ center.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ center.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ center.prototype.clearAttributes=function(){}; /** * function click() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ center.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ center.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ center.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ center.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ center.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ center.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ center.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ center.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ center.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ center.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ center.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ center.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ center.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ center.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ center.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ center.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ center.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ center.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ center.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ center.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ center.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ center.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ center.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ center.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ center.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ center.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ center.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ center.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ center.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ center.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ center.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ center.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ center.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ center.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ center.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ center.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ center.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ center.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ center.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ center.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ center.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ center.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ center.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ center.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ center.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ center.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ center.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ center.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ center.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ center.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ center.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ center.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ center.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ center.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ center.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ center.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ center.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ center.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ center.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ center.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ center.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ center.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ center.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ center.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ center.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ center.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ center.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ center.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ center.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ center.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ center.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ center.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ center.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ center.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ center.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ center.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ center.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ center.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ center.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ center.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ center.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ center.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ center.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ center.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ center.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ center.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ center.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ center.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ center.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ center.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ center.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ center.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ center.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ center.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ center.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ center.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ center.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ center.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf center * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ center.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_childnodes.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_childnodes.js
deleted file mode 100644
index c4a47757..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_childnodes.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object childNodes() * @type childNodes * @super Array * @memberOf childNodes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ function childNodes(){}; childNodes.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf childNodes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ childNodes.prototype.length=0; /** * function item(vIndex) * @param {Number} vIndex * @memberOf childNodes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536609.aspx */ childNodes.prototype.item=function(vIndex){}; /** * function item(vIndex) * @param {Number} vIndex * @memberOf childNodes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536609.aspx */ childNodes.prototype.item=function(vIndex){}; /** * Property children * @type children * @returns {children}
- * @memberOf childNodes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ childNodes.prototype.children= new children(); /** * function urns(sUrn) * @param {String} sUrn * @memberOf childNodes * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ childNodes.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_children.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_children.js
deleted file mode 100644
index 0b6f40e7..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_children.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object children() * @type children * @super Array * @memberOf children * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ function children(){}; children.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf children * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ children.prototype.length=0; /** * function item(vIndex) * @param {Number} vIndex * @memberOf children * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536609.aspx */ children.prototype.item=function(vIndex){}; /** * function item(vIndex) * @param {Number} vIndex * @memberOf children * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536609.aspx */ children.prototype.item=function(vIndex){}; /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf children * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ children.prototype.childNodes= new childNodes(); /** * function tags(sTag) * @param {Variant} sTag * @memberOf children * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ children.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf children * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ children.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cite.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cite.js
deleted file mode 100644
index a69913cb..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_cite.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object cite() * @type cite * @super Object * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535218.aspx */ function cite(){}; cite.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ cite.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ cite.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ cite.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ cite.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ cite.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ cite.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ cite.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ cite.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ cite.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ cite.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ cite.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ cite.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ cite.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ cite.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ cite.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ cite.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ cite.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ cite.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ cite.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ cite.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ cite.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ cite.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ cite.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ cite.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ cite.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ cite.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ cite.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ cite.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ cite.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ cite.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ cite.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ cite.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ cite.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ cite.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ cite.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ cite.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ cite.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ cite.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ cite.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ cite.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ cite.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ cite.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ cite.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ cite.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ cite.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ cite.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ cite.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ cite.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ cite.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ cite.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ cite.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ cite.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ cite.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ cite.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ cite.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ cite.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ cite.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ cite.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ cite.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ cite.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ cite.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ cite.prototype.clearAttributes=function(){}; /** * function click() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ cite.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ cite.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ cite.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ cite.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ cite.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ cite.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ cite.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ cite.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ cite.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ cite.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ cite.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ cite.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ cite.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ cite.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ cite.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ cite.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ cite.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ cite.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ cite.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ cite.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ cite.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ cite.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ cite.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ cite.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ cite.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ cite.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ cite.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ cite.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ cite.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ cite.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ cite.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ cite.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ cite.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ cite.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ cite.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ cite.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ cite.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ cite.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ cite.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ cite.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ cite.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ cite.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ cite.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ cite.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ cite.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ cite.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ cite.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ cite.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ cite.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ cite.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ cite.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ cite.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ cite.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ cite.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ cite.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ cite.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ cite.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ cite.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ cite.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ cite.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ cite.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ cite.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ cite.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ cite.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ cite.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ cite.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ cite.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ cite.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ cite.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ cite.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ cite.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ cite.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ cite.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ cite.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ cite.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ cite.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ cite.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ cite.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ cite.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ cite.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ cite.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ cite.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ cite.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ cite.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ cite.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ cite.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ cite.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ cite.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ cite.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ cite.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ cite.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ cite.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ cite.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ cite.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ cite.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ cite.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ cite.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ cite.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf cite * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ cite.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientinformation.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientinformation.js
deleted file mode 100644
index 10e83349..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientinformation.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object clientInformation() * @type clientInformation * @super Object * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535860.aspx */ function clientInformation(){}; clientInformation.prototype= new Object(); /** * Property appCodeName * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533077.aspx */ clientInformation.prototype.appCodeName=""; /** * Property appMinorVersion * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533078.aspx */ clientInformation.prototype.appMinorVersion=""; /** * Property appName * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533079.aspx */ clientInformation.prototype.appName=""; /** * Property appVersion * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533080.aspx */ clientInformation.prototype.appVersion=""; /** * Property browserLanguage * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533542.aspx */ clientInformation.prototype.browserLanguage=""; /** * Property cookieEnabled * @type Boolean * @returns {Boolean}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533694.aspx */ clientInformation.prototype.cookieEnabled=false; /** * Property cpuClass * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533697.aspx */ clientInformation.prototype.cpuClass=""; /** * Property onLine * @type Boolean * @returns {Boolean}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534307.aspx */ clientInformation.prototype.onLine=false; /** * Property platform * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534340.aspx */ clientInformation.prototype.platform=""; /** * Property systemLanguage * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534653.aspx */ clientInformation.prototype.systemLanguage=""; /** * Property userAgent * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534712.aspx */ clientInformation.prototype.userAgent=""; /** * Property userLanguage * @type String * @returns {String}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534713.aspx */ clientInformation.prototype.userLanguage=""; /** * Property plugins * @type plugins * @returns {plugins}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537477.aspx */ clientInformation.prototype.plugins= new plugins(); /** * function javaEnabled() * @type Boolean * @returns {Boolean}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536610.aspx */ clientInformation.prototype.javaEnabled=function(){}; /** * function taintEnabled() * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536778.aspx */ clientInformation.prototype.taintEnabled=function(){}; /** * Property userProfile * @type userProfile * @returns {userProfile}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535915.aspx */ clientInformation.prototype.userProfile= new userProfile(); /** * Property plugins * @type plugins * @returns {plugins}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537477.aspx */ clientInformation.prototype.plugins= new plugins(); /** * Property embed * @type embed * @returns {embed}
- * @memberOf clientInformation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535245.aspx */ clientInformation.prototype.embed= new embed(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientx.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientx.js
deleted file mode 100644
index 469489c6..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clientx.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object clientX() * @type clientX * @super Object * @memberOf clientX * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533567.aspx */ function clientX(){}; clientX.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clienty.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clienty.js
deleted file mode 100644
index 43883b50..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clienty.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object clientY() * @type clientY * @super Object * @memberOf clientY * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533568.aspx */ function clientY(){}; clientY.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clipboarddata.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clipboarddata.js
deleted file mode 100644
index 4a29066e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_clipboarddata.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object clipboardData() * @type clipboardData * @super Object * @memberOf clipboardData * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535220.aspx */ function clipboardData(){}; clipboardData.prototype= new Object(); /** * function clearData(sDataFormat) * @param {String} sDataFormat * @memberOf clipboardData * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536352.aspx */ clipboardData.prototype.clearData=function(sDataFormat){}; /** * Property dataTransfer * @type dataTransfer * @returns {dataTransfer}
- * @memberOf clipboardData * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535861.aspx */ clipboardData.prototype.dataTransfer= new dataTransfer(); /** * function getData(sDataFormat) * @param {String} sDataFormat * @type String * @returns {String}
- * @memberOf clipboardData * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536436.aspx */ clipboardData.prototype.getData=function(sDataFormat){}; /** * function setData(sDataFormat,sData) * @param {String} sDataFormat * @param {String} sData * @type Boolean * @returns {Boolean}
- * @memberOf clipboardData * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536744.aspx */ clipboardData.prototype.setData=function(sDataFormat,sData){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_code.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_code.js
deleted file mode 100644
index fc97042f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_code.js
+++ /dev/null
@@ -1,114 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object code() * @type code * @super Object * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535224.aspx */ function code(){}; code.prototype= new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ code.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ code.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ code.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ code.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ code.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ code.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ code.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ code.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ code.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ code.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ code.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ code.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ code.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ code.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ code.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ code.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ code.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ code.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ code.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ code.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ code.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ code.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ code.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ code.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ code.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ code.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ code.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ code.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ code.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ code.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ code.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ code.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ code.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ code.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ code.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ code.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ code.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ code.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ code.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ code.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ code.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ code.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ code.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ code.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ code.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ code.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ code.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ code.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ code.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ code.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ code.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ code.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ code.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ code.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ code.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ code.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ code.prototype.clearAttributes=function(){}; /** * function click() * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ code.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ code.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ code.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ code.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ code.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ code.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ code.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ code.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ code.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ code.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ code.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ code.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ code.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ code.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ code.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ code.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ code.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ code.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ code.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ code.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ code.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ code.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ code.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ code.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ code.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ code.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ code.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ code.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ code.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ code.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ code.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ code.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ code.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ code.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ code.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ code.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ code.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ code.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ code.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ code.prototype.swapNode=function(oNode){}; /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ code.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ code.prototype.activeElement=new Object(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ code.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ code.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ code.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ code.prototype.onbeforepaste= new onbeforepaste(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ code.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ code.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ code.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ code.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ code.prototype.ondblclick= new ondblclick(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ code.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ code.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ code.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ code.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ code.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ code.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ code.prototype.ondrop= new ondrop(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ code.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ code.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ code.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ code.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ code.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ code.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ code.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ code.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ code.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ code.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ code.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ code.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ code.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ code.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ code.prototype.onmousewheel= new onmousewheel(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ code.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ code.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ code.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ code.prototype.onresize= new onresize(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ code.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ code.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ code.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ code.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ code.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ code.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ code.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf code * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ code.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_col.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_col.js
deleted file mode 100644
index 4e75c3c8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_col.js
+++ /dev/null
@@ -1,78 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object col() * @type col * @super Object * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535225.aspx */ function col(){}; col.prototype= new Object(); /** * Property align * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ col.prototype.align=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ col.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ col.prototype.canHaveHTML=false; /** * Property ch * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533552.aspx */ col.prototype.ch=""; /** * Property chOff * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533557.aspx */ col.prototype.chOff=""; /** * Property className * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ col.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ col.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ col.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ col.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ col.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ col.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ col.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ col.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ col.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ col.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ col.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ col.prototype.innerHTML=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ col.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ col.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ col.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ col.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ col.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ col.prototype.lang=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ col.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ col.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ col.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ col.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ col.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ col.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ col.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ col.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ col.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ col.prototype.outerHTML=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ col.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ col.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ col.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ col.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ col.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ col.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ col.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ col.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ col.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ col.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ col.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ col.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ col.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ col.prototype.all= new all(); /** * Property span * @type Number * @returns {Number}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534636.aspx */ col.prototype.span=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ col.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ col.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ col.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ col.prototype.vAlign=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ col.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ col.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ col.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ col.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ col.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ col.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ col.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ col.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ col.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ col.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ col.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ col.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ col.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ col.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ col.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ col.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ col.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ col.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ col.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ col.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ col.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ col.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ col.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ col.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ col.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ col.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ col.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ col.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ col.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ col.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ col.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ col.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ col.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ col.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ col.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ col.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ col.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ col.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ col.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ col.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ col.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ col.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ col.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ col.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ col.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ col.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ col.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ col.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf col * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ col.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_colgroup.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_colgroup.js
deleted file mode 100644
index fed7caf6..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_colgroup.js
+++ /dev/null
@@ -1,74 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object colGroup() * @type colGroup * @super Object * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535227.aspx */ function colGroup(){}; colGroup.prototype= new Object(); /** * Property align * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ colGroup.prototype.align=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ colGroup.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ colGroup.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ colGroup.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ colGroup.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ colGroup.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ colGroup.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ colGroup.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ colGroup.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ colGroup.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ colGroup.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ colGroup.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ colGroup.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ colGroup.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ colGroup.prototype.innerHTML=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ colGroup.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ colGroup.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ colGroup.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ colGroup.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ colGroup.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ colGroup.prototype.lang=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ colGroup.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ colGroup.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ colGroup.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ colGroup.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ colGroup.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ colGroup.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ colGroup.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ colGroup.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ colGroup.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ colGroup.prototype.outerHTML=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ colGroup.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ colGroup.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ colGroup.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ colGroup.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ colGroup.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ colGroup.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ colGroup.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ colGroup.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ colGroup.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ colGroup.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ colGroup.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ colGroup.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ colGroup.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ colGroup.prototype.all= new all(); /** * Property span * @type Number * @returns {Number}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534636.aspx */ colGroup.prototype.span=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ colGroup.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ colGroup.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ colGroup.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ colGroup.prototype.vAlign=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ colGroup.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ colGroup.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ colGroup.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ colGroup.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ colGroup.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ colGroup.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ colGroup.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ colGroup.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ colGroup.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ colGroup.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ colGroup.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ colGroup.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ colGroup.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ colGroup.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ colGroup.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ colGroup.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ colGroup.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ colGroup.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ colGroup.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ colGroup.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ colGroup.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ colGroup.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ colGroup.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ colGroup.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ colGroup.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ colGroup.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ colGroup.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ colGroup.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ colGroup.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ colGroup.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ colGroup.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ colGroup.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ colGroup.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ colGroup.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ colGroup.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ colGroup.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ colGroup.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ colGroup.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ colGroup.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ colGroup.prototype.swapNode=function(oNode){}; /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ colGroup.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ colGroup.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ colGroup.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ colGroup.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ colGroup.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ colGroup.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf colGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ colGroup.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_comment.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_comment.js
deleted file mode 100644
index 566eaef0..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_comment.js
+++ /dev/null
@@ -1,58 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object comment() * @type comment * @super Object * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535229.aspx */ function comment(){}; comment.prototype= new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ comment.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ comment.prototype.canHaveHTML=false; /** * Property data * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533702.aspx */ comment.prototype.data=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ comment.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ comment.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ comment.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ comment.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ comment.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ comment.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ comment.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ comment.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ comment.prototype.lang=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ comment.prototype.lastChild=new Object(); /** * Property length * @type Number * @returns {Number}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ comment.prototype.length=0; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ comment.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ comment.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ comment.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ comment.prototype.nodeValue=new Object(); /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ comment.prototype.offsetParent=new Object(); /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ comment.prototype.offsetTop=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ comment.prototype.offsetLeft=0; /** * Property outerText * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ comment.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ comment.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ comment.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ comment.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ comment.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ comment.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ comment.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ comment.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ comment.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ comment.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ comment.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ comment.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ comment.prototype.tagUrn=""; /** * Property text * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534678.aspx */ comment.prototype.text=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ comment.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ comment.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ comment.prototype.appendChild=function(oNode){}; /** * function appendData(sString) * @param {String} sString * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535935.aspx */ comment.prototype.appendData=function(sString){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ comment.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ comment.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ comment.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ comment.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ comment.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function deleteData(nOffset,nCount) * @param {Number} nOffset * @param {Number} nCount * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536407.aspx */ comment.prototype.deleteData=function(nOffset,nCount){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ comment.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ comment.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ comment.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ comment.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ comment.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ comment.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ comment.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ comment.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ comment.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ comment.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ comment.prototype.getClientRects=function(){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ comment.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ comment.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ comment.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ comment.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ comment.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function insertData(nOffset,sString) * @param {Number} nOffset * @param {String} sString * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536456.aspx */ comment.prototype.insertData=function(nOffset,sString){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ comment.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ comment.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ comment.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ comment.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ comment.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ comment.prototype.removeChild=function(oNode){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ comment.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ comment.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ comment.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceData(nOffset,nCount,sString) * @param {Number} nOffset * @param {Number} nCount * @param {String} sString * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536718.aspx */ comment.prototype.replaceData=function(nOffset,nCount,sString){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ comment.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ comment.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ comment.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ comment.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function substringData(nOffset,nCount) * @param {Number} nOffset * @param {Number} nCount * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536772.aspx */ comment.prototype.substringData=function(nOffset,nCount){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ comment.prototype.swapNode=function(oNode){}; /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ comment.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ comment.prototype.onreadystatechange= new onreadystatechange(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ comment.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ comment.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ comment.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf comment * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ comment.prototype.TextNode= new TextNode(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_contentoverflow.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_contentoverflow.js
deleted file mode 100644
index 2212c284..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_contentoverflow.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object contentOverflow() * @type contentOverflow * @super Object * @memberOf contentOverflow * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533691.aspx */ function contentOverflow(){}; contentOverflow.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_controlrange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_controlrange.js
deleted file mode 100644
index 50edbe9e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_controlrange.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object controlRange() * @type controlRange * @super Array * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537447.aspx */ function controlRange(){}; controlRange.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ controlRange.prototype.length=0; /** * function add(oElement,iIndex) * @param {Object} oElement * @param {Number} iIndex * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535921.aspx */ controlRange.prototype.add=function(oElement,iIndex){}; /** * function add(oElement,iIndex) * @param {Object} oElement * @param {Number} iIndex * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535921.aspx */ controlRange.prototype.add=function(oElement,iIndex){}; /** * Property areas * @type areas * @returns {areas}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537437.aspx */ controlRange.prototype.areas= new areas(); /** * Property options * @type options * @returns {options}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537472.aspx */ controlRange.prototype.options= new options(); /** * function addElement(oElement) * @param {Object} oElement * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535925.aspx */ controlRange.prototype.addElement=function(oElement){}; /** * function execCommand(sCommand,bUserInterface,vValue) * @param {String} sCommand * @param {Boolean} bUserInterface * @param {Variant} vValue * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536419.aspx */ controlRange.prototype.execCommand=function(sCommand,bUserInterface,vValue){}; /** * function item(iIndex) * @param {Number} iIndex * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536605.aspx */ controlRange.prototype.item=function(iIndex){}; /** * function queryCommandEnabled(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536676.aspx */ controlRange.prototype.queryCommandEnabled=function(sCmdID){}; /** * function queryCommandIndeterm(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536678.aspx */ controlRange.prototype.queryCommandIndeterm=function(sCmdID){}; /** * function queryCommandState(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536679.aspx */ controlRange.prototype.queryCommandState=function(sCmdID){}; /** * function queryCommandSupported(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536681.aspx */ controlRange.prototype.queryCommandSupported=function(sCmdID){}; /** * function queryCommandValue(sCmdID) * @param {String} sCmdID * @type Object * @returns {Object}
- * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536683.aspx */ controlRange.prototype.queryCommandValue=function(sCmdID){}; /** * function remove(iIndex) * @param {Number} iIndex * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536694.aspx */ controlRange.prototype.remove=function(iIndex){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ controlRange.prototype.scrollIntoView=function(bAlignToTop){}; /** * function select() * @memberOf controlRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536735.aspx */ controlRange.prototype.select=function(){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlkey.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlkey.js
deleted file mode 100644
index cd4f84a9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlkey.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ctrlKey() * @type ctrlKey * @super Object * @memberOf ctrlKey * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533699.aspx */ function ctrlKey(){}; ctrlKey.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlleft.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlleft.js
deleted file mode 100644
index f9668fec..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ctrlleft.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ctrlLeft() * @type ctrlLeft * @super Object * @memberOf ctrlLeft * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533700.aspx */ function ctrlLeft(){}; ctrlLeft.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_custom.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_custom.js
deleted file mode 100644
index cfca99f5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_custom.js
+++ /dev/null
@@ -1,122 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object custom() * @type custom * @super Object * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535233.aspx */ function custom(){}; custom.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ custom.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ custom.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ custom.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ custom.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ custom.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ custom.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ custom.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ custom.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ custom.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ custom.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ custom.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ custom.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ custom.prototype.dir=""; /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ custom.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ custom.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ custom.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ custom.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ custom.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ custom.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ custom.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ custom.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ custom.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ custom.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ custom.prototype.language=""; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ custom.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ custom.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ custom.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ custom.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ custom.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ custom.prototype.outerText=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ custom.prototype.parentElement=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ custom.prototype.parentTextEdit=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ custom.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ custom.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ custom.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ custom.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ custom.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ custom.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ custom.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ custom.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ custom.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ custom.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ custom.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ custom.prototype.title=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ custom.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ custom.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ custom.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ custom.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ custom.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ custom.prototype.clearAttributes=function(){}; /** * function click() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ custom.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ custom.prototype.onclick= new onclick(); /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ custom.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ custom.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ custom.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function doScroll(sScrollAction) * @param {String} sScrollAction * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536414.aspx */ custom.prototype.doScroll=function(sScrollAction){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ custom.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ custom.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ custom.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ custom.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ custom.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ custom.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ custom.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ custom.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ custom.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ custom.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ custom.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ custom.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ custom.prototype.getExpression=function(sPropertyName){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ custom.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ custom.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ custom.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ custom.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ custom.prototype.TextNode= new TextNode(); /** * function releaseCapture() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ custom.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ custom.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ custom.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ custom.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ custom.prototype.removeExpression=function(sPropertyName){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ custom.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ custom.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ custom.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ custom.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ custom.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ custom.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ custom.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * Property document * @type document * @returns {document}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ custom.prototype.document= new document(); /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ custom.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ custom.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ custom.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ custom.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ custom.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ custom.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ custom.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ custom.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ custom.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ custom.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ custom.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ custom.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ custom.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ custom.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ custom.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ custom.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ custom.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ custom.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ custom.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ custom.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ custom.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ custom.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ custom.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ custom.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ custom.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ custom.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ custom.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ custom.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ custom.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ custom.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ custom.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ custom.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ custom.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ custom.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ custom.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ custom.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ custom.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ custom.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ custom.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ custom.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ custom.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ custom.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ custom.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ custom.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ custom.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ custom.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ custom.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ custom.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ custom.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ custom.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ custom.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ custom.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ custom.prototype.onscroll= new onscroll(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ custom.prototype.onselectstart= new onselectstart(); /** * Property all * @type all * @returns {all}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ custom.prototype.all= new all(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ custom.prototype.behaviorUrns= new behaviorUrns(); /** * Property children * @type children * @returns {children}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ custom.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf custom * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ custom.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datafld.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datafld.js
deleted file mode 100644
index 17aa0208..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datafld.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object dataFld() * @type dataFld * @super Object * @memberOf dataFld * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533704.aspx */ function dataFld(){}; dataFld.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datatransfer.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datatransfer.js
deleted file mode 100644
index 819ae5f4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_datatransfer.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object dataTransfer() * @type dataTransfer * @super Object * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535861.aspx */ function dataTransfer(){}; dataTransfer.prototype= new Object(); /** * Property dropEffect * @type String * @returns {String}
- * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533741.aspx */ dataTransfer.prototype.dropEffect=""; /** * Property effectAllowed * @type String * @returns {String}
- * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533743.aspx */ dataTransfer.prototype.effectAllowed=""; /** * function clearData(sDataFormat) * @param {String} sDataFormat * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536352.aspx */ dataTransfer.prototype.clearData=function(sDataFormat){}; /** * function clearData(sDataFormat) * @param {String} sDataFormat * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536352.aspx */ dataTransfer.prototype.clearData=function(sDataFormat){}; /** * Property clipboardData * @type clipboardData * @returns {clipboardData}
- * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535220.aspx */ dataTransfer.prototype.clipboardData= new clipboardData(); /** * function getData(sDataFormat) * @param {String} sDataFormat * @type String * @returns {String}
- * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536436.aspx */ dataTransfer.prototype.getData=function(sDataFormat){}; /** * function setData(sDataFormat,sData) * @param {String} sDataFormat * @param {String} sData * @type Boolean * @returns {Boolean}
- * @memberOf dataTransfer * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536744.aspx */ dataTransfer.prototype.setData=function(sDataFormat,sData){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dd.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dd.js
deleted file mode 100644
index 03f3dbfc..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dd.js
+++ /dev/null
@@ -1,135 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object dd() * @type dd * @super Object * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535234.aspx */ function dd(){}; dd.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ dd.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ dd.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ dd.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ dd.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ dd.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ dd.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ dd.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ dd.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ dd.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ dd.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ dd.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ dd.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ dd.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ dd.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ dd.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dd.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ dd.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ dd.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ dd.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ dd.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ dd.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ dd.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ dd.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ dd.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ dd.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ dd.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ dd.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ dd.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ dd.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ dd.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ dd.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ dd.prototype.nodeValue=new Object(); /** * Property noWrap * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534196.aspx */ dd.prototype.noWrap=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ dd.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ dd.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ dd.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ dd.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ dd.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ dd.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ dd.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ dd.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ dd.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ dd.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ dd.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ dd.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ dd.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ dd.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ dd.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ dd.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ dd.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ dd.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ dd.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dd.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ dd.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ dd.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ dd.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ dd.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ dd.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ dd.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ dd.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ dd.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ dd.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ dd.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dd.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ dd.prototype.clearAttributes=function(){}; /** * function click() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ dd.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dd.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ dd.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ dd.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ dd.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ dd.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ dd.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ dd.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ dd.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dd.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ dd.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ dd.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ dd.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ dd.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ dd.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ dd.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ dd.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ dd.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ dd.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ dd.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ dd.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ dd.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ dd.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ dd.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ dd.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ dd.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ dd.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ dd.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ dd.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ dd.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ dd.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ dd.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ dd.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ dd.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ dd.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ dd.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ dd.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ dd.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ dd.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ dd.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ dd.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ dd.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ dd.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ dd.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ dd.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ dd.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ dd.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ dd.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ dd.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ dd.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ dd.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ dd.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dd.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dd.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ dd.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ dd.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ dd.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ dd.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ dd.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ dd.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ dd.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ dd.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ dd.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ dd.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ dd.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ dd.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ dd.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dd.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ dd.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ dd.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ dd.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ dd.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ dd.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ dd.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ dd.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ dd.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ dd.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ dd.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ dd.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ dd.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ dd.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ dd.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ dd.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ dd.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ dd.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ dd.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ dd.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ dd.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ dd.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ dd.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ dd.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ dd.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ dd.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ dd.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ dd.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dd.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ dd.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ dd.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dd.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ dd.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf dd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ dd.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_defaults.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_defaults.js
deleted file mode 100644
index f9892bd5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_defaults.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object defaults() * @type defaults * @super Object * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535235.aspx */ function defaults(){}; defaults.prototype= new Object(); /** * Property blockDirection * @type String * @returns {String}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ defaults.prototype.blockDirection=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ defaults.prototype.canHaveHTML=false; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ defaults.prototype.contentEditable=""; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ defaults.prototype.isMultiLine=false; /** * Property tabStop * @type Boolean * @returns {Boolean}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534656.aspx */ defaults.prototype.tabStop=false; /** * Property viewInheritStyle * @type Boolean * @returns {Boolean}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535133.aspx */ defaults.prototype.viewInheritStyle=false; /** * Property viewLink * @type document * @returns {document}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535134.aspx */ defaults.prototype.viewLink=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ defaults.prototype.document= new document(); /** * Property viewMasterTab * @type Boolean * @returns {Boolean}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535135.aspx */ defaults.prototype.viewMasterTab=false; /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ defaults.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf defaults * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ defaults.prototype.onbeforeeditfocus= new onbeforeeditfocus(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_del.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_del.js
deleted file mode 100644
index f53831a1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_del.js
+++ /dev/null
@@ -1,84 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object del() * @type del * @super Object * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535236.aspx */ function del(){}; del.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ del.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ del.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ del.prototype.canHaveHTML=false; /** * Property cite * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533558.aspx */ del.prototype.cite=""; /** * Property className * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ del.prototype.className=""; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ del.prototype.contentEditable=""; /** * Property dateTime * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533712.aspx */ del.prototype.dateTime=""; /** * Property dir * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ del.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ del.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ del.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ del.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ del.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ del.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ del.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ del.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ del.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ del.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ del.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ del.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ del.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ del.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ del.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ del.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ del.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ del.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ del.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ del.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ del.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ del.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ del.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ del.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ del.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ del.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ del.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ del.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ del.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ del.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ del.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ del.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ del.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ del.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ del.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ del.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ del.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ del.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ del.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ del.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ del.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ del.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ del.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ del.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ del.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ del.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ del.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ del.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ del.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ del.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ del.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ del.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ del.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ del.prototype.getAdjacentText=function(sWhere){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ del.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ del.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ del.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ del.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ del.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ del.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ del.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ del.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ del.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ del.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ del.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ del.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ del.prototype.normalize=function(){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ del.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ del.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ del.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ del.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ del.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ del.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ del.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ del.prototype.replaceNode=function(oNewNode){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ del.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ del.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ del.prototype.swapNode=function(oNode){}; /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ del.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ del.prototype.onblur= new onblur(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ del.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ del.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ del.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ del.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ del.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ del.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ del.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ del.prototype.onfocus= new onfocus(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ del.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ del.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ del.prototype.onkeyup= new onkeyup(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ del.prototype.onreadystatechange= new onreadystatechange(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ del.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ del.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ del.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ del.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ del.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ del.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ del.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf del * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ del.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dfn.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dfn.js
deleted file mode 100644
index 04f80446..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dfn.js
+++ /dev/null
@@ -1,129 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object dfn() * @type dfn * @super Object * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535237.aspx */ function dfn(){}; dfn.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ dfn.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ dfn.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ dfn.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ dfn.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ dfn.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ dfn.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ dfn.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ dfn.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ dfn.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ dfn.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ dfn.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ dfn.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ dfn.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dfn.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ dfn.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ dfn.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ dfn.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ dfn.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ dfn.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ dfn.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ dfn.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ dfn.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ dfn.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ dfn.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ dfn.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ dfn.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ dfn.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ dfn.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ dfn.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ dfn.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ dfn.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ dfn.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ dfn.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ dfn.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ dfn.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ dfn.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ dfn.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ dfn.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ dfn.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ dfn.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ dfn.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ dfn.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ dfn.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ dfn.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ dfn.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ dfn.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ dfn.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ dfn.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ dfn.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dfn.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ dfn.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ dfn.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ dfn.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ dfn.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ dfn.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ dfn.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ dfn.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ dfn.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ dfn.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ dfn.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dfn.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ dfn.prototype.clearAttributes=function(){}; /** * function click() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ dfn.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dfn.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ dfn.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ dfn.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ dfn.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ dfn.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ dfn.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ dfn.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dfn.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ dfn.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ dfn.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ dfn.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ dfn.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ dfn.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ dfn.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ dfn.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ dfn.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ dfn.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ dfn.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ dfn.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ dfn.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ dfn.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ dfn.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ dfn.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ dfn.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ dfn.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ dfn.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ dfn.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ dfn.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ dfn.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ dfn.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ dfn.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ dfn.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ dfn.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ dfn.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ dfn.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ dfn.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ dfn.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ dfn.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ dfn.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ dfn.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ dfn.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ dfn.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ dfn.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ dfn.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ dfn.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ dfn.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ dfn.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ dfn.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ dfn.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ dfn.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dfn.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dfn.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ dfn.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ dfn.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ dfn.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ dfn.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ dfn.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ dfn.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ dfn.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ dfn.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ dfn.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ dfn.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ dfn.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ dfn.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ dfn.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dfn.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ dfn.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ dfn.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ dfn.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ dfn.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ dfn.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ dfn.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ dfn.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ dfn.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ dfn.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ dfn.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ dfn.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ dfn.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ dfn.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ dfn.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ dfn.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ dfn.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ dfn.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ dfn.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ dfn.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ dfn.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ dfn.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ dfn.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ dfn.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ dfn.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ dfn.prototype.onselectstart= new onselectstart(); /** * Property all * @type all * @returns {all}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dfn.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ dfn.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ dfn.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dfn.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ dfn.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf dfn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ dfn.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dialog.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dialog.js
deleted file mode 100644
index 61eb4e59..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dialog.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object Dialog() * @type Dialog * @super Object * @memberOf Dialog * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535238.aspx */ function Dialog(){}; Dialog.prototype= new Object(); /** * function ChooseColorDlg(initColor) * @param {Variant} initColor * @type Object * @returns {Object}
- * @memberOf Dialog * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536349.aspx */ Dialog.prototype.ChooseColorDlg=function(initColor){}; /** * function getCharset(fontName) * @param {String} fontName * @type Number * @returns {Number}
- * @memberOf Dialog * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536434.aspx */ Dialog.prototype.getCharset=function(fontName){}; /** * Property blockFormats * @type blockFormats * @returns {blockFormats}
- * @memberOf Dialog * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537440.aspx */ Dialog.prototype.blockFormats= new blockFormats(); /** * Property fonts * @type fonts * @returns {fonts}
- * @memberOf Dialog * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537454.aspx */ Dialog.prototype.fonts= new fonts(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dir.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dir.js
deleted file mode 100644
index b9c08262..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dir.js
+++ /dev/null
@@ -1,131 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object dir() * @type dir * @super Object * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535239.aspx */ function dir(){}; dir.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ dir.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ dir.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ dir.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ dir.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ dir.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ dir.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ dir.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ dir.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ dir.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ dir.prototype.clientWidth=0; /** * Property compact * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533585.aspx */ dir.prototype.compact=false; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ dir.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ dir.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ dir.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dir.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ dir.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ dir.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ dir.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ dir.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ dir.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ dir.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ dir.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ dir.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ dir.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ dir.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ dir.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ dir.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ dir.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ dir.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ dir.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ dir.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ dir.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ dir.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ dir.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ dir.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ dir.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ dir.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ dir.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ dir.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ dir.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ dir.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ dir.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ dir.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ dir.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ dir.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ dir.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ dir.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ dir.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ dir.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ dir.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dir.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ dir.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ dir.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ dir.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ dir.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ dir.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ dir.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ dir.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ dir.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ dir.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ dir.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dir.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ dir.prototype.clearAttributes=function(){}; /** * function click() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ dir.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dir.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ dir.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ dir.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ dir.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ dir.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ dir.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ dir.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dir.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ dir.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ dir.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ dir.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ dir.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ dir.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ dir.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ dir.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ dir.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ dir.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ dir.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ dir.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ dir.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ dir.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ dir.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ dir.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ dir.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ dir.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ dir.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ dir.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ dir.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ dir.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ dir.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ dir.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ dir.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ dir.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ dir.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ dir.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ dir.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ dir.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ dir.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ dir.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ dir.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ dir.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ dir.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ dir.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ dir.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ dir.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ dir.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ dir.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ dir.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ dir.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ dir.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dir.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dir.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ dir.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ dir.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ dir.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ dir.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ dir.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ dir.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ dir.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ dir.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ dir.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ dir.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ dir.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ dir.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ dir.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dir.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ dir.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ dir.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ dir.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ dir.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ dir.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ dir.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ dir.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ dir.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ dir.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ dir.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ dir.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ dir.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ dir.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ dir.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ dir.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ dir.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ dir.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ dir.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ dir.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ dir.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ dir.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ dir.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ dir.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ dir.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ dir.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ dir.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dir.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ dir.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ dir.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dir.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ dir.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf dir * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ dir.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_div.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_div.js
deleted file mode 100644
index fe58c56b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_div.js
+++ /dev/null
@@ -1,145 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object div() * @type div * @super Object * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535240.aspx */ function div(){}; div.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ div.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ div.prototype.align=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ div.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ div.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ div.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ div.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ div.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ div.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ div.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ div.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ div.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ div.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ div.prototype.contentEditable=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ div.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ div.prototype.dataSrc=""; /** * Property dataFormatAs * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533706.aspx */ div.prototype.dataFormatAs=""; /** * Property dir * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ div.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ div.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ div.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ div.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ div.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ div.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ div.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ div.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ div.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ div.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ div.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ div.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ div.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ div.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ div.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ div.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ div.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ div.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ div.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ div.prototype.nodeValue=new Object(); /** * Property noWrap * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534196.aspx */ div.prototype.noWrap=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ div.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ div.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ div.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ div.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ div.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ div.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ div.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ div.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ div.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ div.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ div.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ div.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ div.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ div.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ div.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ div.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ div.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ div.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ div.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ div.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ div.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ div.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ div.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ div.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ div.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ div.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ div.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ div.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ div.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ div.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ div.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ div.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ div.prototype.clearAttributes=function(){}; /** * function click() * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ div.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ div.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ div.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ div.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ div.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ div.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function doScroll(sScrollAction) * @param {String} sScrollAction * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536414.aspx */ div.prototype.doScroll=function(sScrollAction){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ div.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ div.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ div.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ div.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ div.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ div.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ div.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ div.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ div.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ div.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ div.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ div.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ div.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ div.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ div.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ div.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ div.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ div.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ div.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ div.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ div.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ div.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ div.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ div.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ div.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ div.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ div.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ div.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ div.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ div.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ div.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ div.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ div.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ div.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ div.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ div.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ div.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ div.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ div.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ div.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ div.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ div.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ div.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ div.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ div.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ div.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ div.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ div.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ div.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ div.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ div.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ div.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ div.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ div.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ div.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ div.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ div.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ div.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ div.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ div.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ div.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ div.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ div.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ div.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ div.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ div.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ div.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ div.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ div.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ div.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ div.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ div.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ div.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ div.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ div.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ div.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ div.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ div.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ div.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ div.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ div.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ div.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ div.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ div.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ div.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ div.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ div.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ div.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ div.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ div.prototype.onscroll= new onscroll(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ div.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ div.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ div.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ div.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ div.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ div.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ div.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ div.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf div * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ div.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dl.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dl.js
deleted file mode 100644
index 9a3d4844..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dl.js
+++ /dev/null
@@ -1,129 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object dl() * @type dl * @super Object * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535241.aspx */ function dl(){}; dl.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ dl.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ dl.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ dl.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ dl.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ dl.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ dl.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ dl.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ dl.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ dl.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ dl.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ dl.prototype.clientWidth=0; /** * Property compact * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533585.aspx */ dl.prototype.compact=false; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ dl.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ dl.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ dl.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dl.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ dl.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ dl.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ dl.prototype.innerHTML=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ dl.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ dl.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ dl.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ dl.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ dl.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ dl.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ dl.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ dl.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ dl.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ dl.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ dl.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ dl.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ dl.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ dl.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ dl.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ dl.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ dl.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ dl.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ dl.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ dl.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ dl.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ dl.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ dl.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ dl.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ dl.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ dl.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ dl.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ dl.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ dl.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ dl.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ dl.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dl.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ dl.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ dl.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ dl.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ dl.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ dl.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ dl.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ dl.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ dl.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ dl.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ dl.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dl.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ dl.prototype.clearAttributes=function(){}; /** * function click() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ dl.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dl.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ dl.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ dl.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ dl.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ dl.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ dl.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ dl.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dl.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ dl.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ dl.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ dl.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ dl.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ dl.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ dl.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ dl.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ dl.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ dl.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ dl.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ dl.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ dl.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ dl.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ dl.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ dl.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ dl.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ dl.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ dl.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ dl.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ dl.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ dl.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ dl.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ dl.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ dl.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ dl.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ dl.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ dl.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ dl.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ dl.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ dl.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ dl.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ dl.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ dl.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ dl.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ dl.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ dl.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ dl.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ dl.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ dl.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ dl.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ dl.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ dl.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dl.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dl.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ dl.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ dl.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ dl.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ dl.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ dl.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ dl.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ dl.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ dl.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ dl.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ dl.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ dl.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ dl.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ dl.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dl.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ dl.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ dl.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ dl.prototype.onhelp= new onhelp(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ dl.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ dl.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ dl.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ dl.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ dl.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ dl.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ dl.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ dl.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ dl.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ dl.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ dl.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ dl.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ dl.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ dl.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ dl.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ dl.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ dl.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ dl.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ dl.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ dl.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ dl.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dl.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ dl.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ dl.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dl.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ dl.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf dl * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ dl.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_document.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_document.js
deleted file mode 100644
index 431c6e46..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_document.js
+++ /dev/null
@@ -1,128 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object document() * @type document * @super Object * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ function document(){}; document.prototype= new Object(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ document.prototype.activeElement=new Object(); /** * Property alinkColor * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533071.aspx */ document.prototype.alinkColor=new Object(); /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533506.aspx */ document.prototype.bgColor=new Object(); /** * Property charset * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533553.aspx */ document.prototype.charset=""; /** * Property compatMode * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533687.aspx */ document.prototype.compatMode=""; /** * Property cookie * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533693.aspx */ document.prototype.cookie=""; /** * Property defaultCharset * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533714.aspx */ document.prototype.defaultCharset=""; /** * Property designMode * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533720.aspx */ document.prototype.designMode=""; /** * Property dir * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533731.aspx */ document.prototype.dir=""; /** * Property doctype * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533737.aspx */ document.prototype.doctype=new Object(); /** * Property documentElement * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533739.aspx */ document.prototype.documentElement=new Object(); /** * Property domain * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533740.aspx */ document.prototype.domain=""; /** * Property expando * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533747.aspx */ document.prototype.expando=false; /** * Property fgColor * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533749.aspx */ document.prototype.fgColor=new Object(); /** * Property fileCreatedDate * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533750.aspx */ document.prototype.fileCreatedDate=""; /** * Property fileModifiedDate * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533751.aspx */ document.prototype.fileModifiedDate=""; /** * Property fileSize * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533752.aspx */ document.prototype.fileSize=""; /** * Property implementation * @type implementation * @returns {implementation}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533884.aspx */ document.prototype.implementation=new implementation(); /** * Property implementation * @type implementation * @returns {implementation}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535865.aspx */ document.prototype.implementation= new implementation(); /** * Property lastModified * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533946.aspx */ document.prototype.lastModified=""; /** * Property linkColor * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534117.aspx */ document.prototype.linkColor=new Object(); /** * Property parentWindow * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534331.aspx */ document.prototype.parentWindow=new Object(); /** * Property protocol * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534353.aspx */ document.prototype.protocol=""; /** * Property readyState * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ document.prototype.readyState=""; /** * Property referrer * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534365.aspx */ document.prototype.referrer=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ document.prototype.uniqueID=""; /** * Property URL * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534708.aspx */ document.prototype.URL=""; /** * Property URLUnencoded * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534709.aspx */ document.prototype.URLUnencoded=""; /** * Property vlinkColor * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535139.aspx */ document.prototype.vlinkColor=new Object(); /** * Property XMLDocument * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535155.aspx */ document.prototype.XMLDocument=new Object(); /** * Property XSLDocument * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535163.aspx */ document.prototype.XSLDocument=new Object(); /** * Property all * @type all * @returns {all}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ document.prototype.all= new all(); /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ document.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clear() * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536361.aspx */ document.prototype.clear=function(){}; /** * function close() * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536369.aspx */ document.prototype.close=function(){}; /** * function createAttribute(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536379.aspx */ document.prototype.createAttribute=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ document.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ document.prototype.name=""; /** * function createComment(sData) * @param {String} sData * @type comment * @returns {comment}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536383.aspx */ document.prototype.createComment=function(sData){}; /** * Property comment * @type comment * @returns {comment}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535229.aspx */ document.prototype.comment= new comment(); /** * Property data * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533702.aspx */ document.prototype.data=""; /** * function createDocumentFragment() * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536387.aspx */ document.prototype.createDocumentFragment=function(){}; /** * function createElement(sTag) * @param {String} sTag * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536389.aspx */ document.prototype.createElement=function(sTag){}; /** * function createEventObject(oExistingEvent) * @param {event} oExistingEvent * @type event * @returns {event}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536390.aspx */ document.prototype.createEventObject=function(oExistingEvent){}; /** * Property event * @type event * @returns {event}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535863.aspx */ document.prototype.event= new event(); /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ document.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function createStyleSheet(sURL,iIndex) * @param {String} sURL * @param {Number} iIndex * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531194.aspx */ document.prototype.createStyleSheet=function(sURL,iIndex){}; /** * function createTextNode(sText) * @param {String} sText * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536400.aspx */ document.prototype.createTextNode=function(sText){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ document.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function elementFromPoint(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536417.aspx */ document.prototype.elementFromPoint=function(iX,iY){}; /** * function execCommand(sCommand,bUserInterface,vValue) * @param {String} sCommand * @param {Boolean} bUserInterface * @param {Variant} vValue * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536419.aspx */ document.prototype.execCommand=function(sCommand,bUserInterface,vValue){}; /** * function focus() * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ document.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ document.prototype.onfocus= new onfocus(); /** * function getElementById(sIDValue) * @param {String} sIDValue * @type ID * @returns {ID}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536437.aspx */ document.prototype.getElementById=function(sIDValue){}; /** * Property id * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ document.prototype.id=""; /** * function getElementsByName(sNameValue) * @param {String} sNameValue * @type NAME * @returns {NAME}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536438.aspx */ document.prototype.getElementsByName=function(sNameValue){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ document.prototype.getElementsByTagName=function(sTagName){}; /** * function hasFocus() * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536447.aspx */ document.prototype.hasFocus=function(){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ document.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function open(sUrl,sName,sUrl,sFeature,bReplace,sUrl) * @param {String} sUrl * @param {String} sName * @param {String} sUrl * @param {Favorites} sFeature Center * @param {Boolean} bReplace * @param {open} sUrl * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536652.aspx */ document.prototype.open=function(sUrl,sName,sUrl,sFeature,bReplace,sUrl){}; /** * function write(sText) * @param {String} sText * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536782.aspx */ document.prototype.write=function(sText){}; /** * function writeln(sText) * @param {String} sText * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536783.aspx */ document.prototype.writeln=function(sText){}; /** * function queryCommandEnabled(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536676.aspx */ document.prototype.queryCommandEnabled=function(sCmdID){}; /** * function queryCommandIndeterm(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536678.aspx */ document.prototype.queryCommandIndeterm=function(sCmdID){}; /** * function queryCommandState(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536679.aspx */ document.prototype.queryCommandState=function(sCmdID){}; /** * function queryCommandSupported(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536681.aspx */ document.prototype.queryCommandSupported=function(sCmdID){}; /** * function queryCommandValue(sCmdID) * @param {String} sCmdID * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536683.aspx */ document.prototype.queryCommandValue=function(sCmdID){}; /** * function recalc(bForceAll) * @param {Boolean} bForceAll * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536685.aspx */ document.prototype.recalc=function(bForceAll){}; /** * function releaseCapture() * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ document.prototype.releaseCapture=function(){}; /** * function setActive() * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ document.prototype.setActive=function(){}; /** * Property body * @type body * @returns {body}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535205.aspx */ document.prototype.body= new body(); /** * Property implementation * @type implementation * @returns {implementation}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535865.aspx */ document.prototype.implementation= new implementation(); /** * Property location * @type location * @returns {location}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535866.aspx */ document.prototype.location= new location(); /** * Property selection * @type selection * @returns {selection}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535869.aspx */ document.prototype.selection= new selection(); /** * Property title * @type title * @returns {title}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535910.aspx */ document.prototype.title= new title(); /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ document.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ document.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ document.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ document.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ document.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ document.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ document.prototype.onbeforepaste= new onbeforepaste(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ document.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ document.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ document.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ document.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ document.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ document.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ document.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ document.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ document.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ document.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ document.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ document.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ document.prototype.ondrop= new ondrop(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ document.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ document.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ document.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ document.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ document.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ document.prototype.onkeyup= new onkeyup(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ document.prototype.onmousedown= new onmousedown(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ document.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ document.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ document.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ document.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ document.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ document.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ document.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ document.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ document.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ document.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ document.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ document.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ document.prototype.onresizestart= new onresizestart(); /** * Property onselectionchange * @type onselectionchange * @returns {onselectionchange}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537845.aspx */ document.prototype.onselectionchange= new onselectionchange(); /** * Property onstop * @type onstop * @returns {onstop}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536971.aspx */ document.prototype.onstop= new onstop(); /** * Property all * @type all * @returns {all}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ document.prototype.all= new all(); /** * Property anchors * @type anchors * @returns {anchors}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537435.aspx */ document.prototype.anchors= new anchors(); /** * Property a * @type a * @returns {a}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535173.aspx */ document.prototype.a= new a(); /** * Property name * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534182.aspx */ document.prototype.name=""; /** * Property id * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ document.prototype.id=""; /** * Property applets * @type applets * @returns {applets}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537436.aspx */ document.prototype.applets= new applets(); /** * Property applet * @type applet * @returns {applet}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535183.aspx */ document.prototype.applet= new applet(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ document.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ document.prototype.TextNode= new TextNode(); /** * Property embeds * @type embeds * @returns {embeds}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537450.aspx */ document.prototype.embeds= new embeds(); /** * Property embed * @type embed * @returns {embed}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535245.aspx */ document.prototype.embed= new embed(); /** * Property forms * @type forms * @returns {forms}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537457.aspx */ document.prototype.forms= new forms(); /** * Property form * @type form * @returns {form}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535249.aspx */ document.prototype.form= new form(); /** * Property frames * @type frames * @returns {frames}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537459.aspx */ document.prototype.frames= new frames(); /** * Property window * @type window * @returns {window}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535873.aspx */ document.prototype.window= new window(); /** * Property images * @type images * @returns {images}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537461.aspx */ document.prototype.images= new images(); /** * Property img * @type img * @returns {img}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535259.aspx */ document.prototype.img= new img(); /** * Property links * @type links * @returns {links}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537465.aspx */ document.prototype.links= new links(); /** * Property href * @type String * @returns {String}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533863.aspx */ document.prototype.href=""; /** * Property area * @type area * @returns {area}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535185.aspx */ document.prototype.area= new area(); /** * Property namespaces * @type namespaces * @returns {namespaces}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537470.aspx */ document.prototype.namespaces= new namespaces(); /** * Property namespace * @type namespace * @returns {namespace}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535854.aspx */ document.prototype.namespace= new namespace(); /** * Property scripts * @type scripts * @returns {scripts}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537487.aspx */ document.prototype.scripts= new scripts(); /** * Property script * @type script * @returns {script}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535892.aspx */ document.prototype.script= new script(); /** * Property styleSheets * @type styleSheets * @returns {styleSheets}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531200.aspx */ document.prototype.styleSheets= new styleSheets(); /** * Property styleSheet * @type styleSheet * @returns {styleSheet}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535871.aspx */ document.prototype.styleSheet= new styleSheet(); /** * Property link * @type link * @returns {link}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535848.aspx */ document.prototype.link= new link(); /** * Property style * @type style * @returns {style}
- * @memberOf document * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535898.aspx */ document.prototype.style= new style(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dt.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dt.js
deleted file mode 100644
index 0a3a824e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_dt.js
+++ /dev/null
@@ -1,134 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object dt() * @type dt * @super Object * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535243.aspx */ function dt(){}; dt.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ dt.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ dt.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ dt.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ dt.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ dt.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ dt.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ dt.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ dt.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ dt.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ dt.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ dt.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ dt.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ dt.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ dt.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ dt.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dt.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ dt.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ dt.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ dt.prototype.innerHTML=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ dt.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ dt.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ dt.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ dt.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ dt.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ dt.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ dt.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ dt.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ dt.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ dt.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ dt.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ dt.prototype.nodeValue=new Object(); /** * Property noWrap * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534196.aspx */ dt.prototype.noWrap=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ dt.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ dt.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ dt.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ dt.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ dt.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ dt.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ dt.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ dt.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ dt.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ dt.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ dt.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ dt.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ dt.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ dt.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ dt.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ dt.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ dt.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ dt.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ dt.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dt.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ dt.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ dt.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ dt.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ dt.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ dt.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ dt.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ dt.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ dt.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ dt.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ dt.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dt.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ dt.prototype.clearAttributes=function(){}; /** * function click() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ dt.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dt.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ dt.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ dt.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ dt.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ dt.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ dt.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ dt.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ dt.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dt.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ dt.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ dt.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ dt.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ dt.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ dt.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ dt.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ dt.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ dt.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ dt.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ dt.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ dt.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ dt.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ dt.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ dt.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ dt.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ dt.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ dt.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ dt.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ dt.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ dt.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ dt.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ dt.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ dt.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ dt.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ dt.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ dt.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ dt.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ dt.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ dt.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ dt.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ dt.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ dt.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ dt.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ dt.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ dt.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ dt.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ dt.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ dt.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ dt.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ dt.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ dt.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ dt.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ dt.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ dt.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ dt.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ dt.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ dt.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ dt.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ dt.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ dt.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ dt.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ dt.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ dt.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ dt.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ dt.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ dt.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ dt.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ dt.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ dt.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ dt.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ dt.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ dt.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ dt.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ dt.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ dt.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ dt.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ dt.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ dt.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ dt.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ dt.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ dt.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ dt.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ dt.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ dt.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ dt.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ dt.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ dt.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ dt.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ dt.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ dt.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ dt.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ dt.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ dt.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ dt.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ dt.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ dt.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ dt.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ dt.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ dt.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ dt.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf dt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ dt.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_elements.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_elements.js
deleted file mode 100644
index 9add5235..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_elements.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object elements() * @type elements * @super Array * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537449.aspx */ function elements(){}; elements.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ elements.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ elements.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ elements.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ elements.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ elements.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ elements.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf elements * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ elements.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_em.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_em.js
deleted file mode 100644
index 3b9257bf..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_em.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object em() * @type em * @super Object * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535244.aspx */ function em(){}; em.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ em.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ em.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ em.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ em.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ em.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ em.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ em.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ em.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ em.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ em.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ em.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ em.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ em.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ em.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ em.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ em.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ em.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ em.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ em.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ em.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ em.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ em.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ em.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ em.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ em.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ em.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ em.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ em.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ em.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ em.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ em.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ em.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ em.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ em.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ em.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ em.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ em.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ em.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ em.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ em.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ em.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ em.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ em.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ em.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ em.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ em.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ em.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ em.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ em.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ em.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ em.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ em.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ em.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ em.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ em.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ em.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ em.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ em.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ em.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ em.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ em.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ em.prototype.clearAttributes=function(){}; /** * function click() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ em.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ em.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ em.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ em.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ em.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ em.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ em.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ em.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ em.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ em.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ em.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ em.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ em.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ em.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ em.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ em.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ em.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ em.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ em.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ em.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ em.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ em.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ em.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ em.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ em.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ em.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ em.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ em.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ em.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ em.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ em.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ em.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ em.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ em.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ em.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ em.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ em.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ em.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ em.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ em.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ em.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ em.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ em.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ em.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ em.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ em.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ em.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ em.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ em.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ em.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ em.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ em.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ em.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ em.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ em.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ em.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ em.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ em.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ em.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ em.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ em.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ em.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ em.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ em.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ em.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ em.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ em.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ em.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ em.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ em.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ em.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ em.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ em.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ em.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ em.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ em.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ em.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ em.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ em.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ em.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ em.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ em.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ em.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ em.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ em.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ em.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ em.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ em.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ em.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ em.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ em.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ em.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ em.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ em.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ em.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ em.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ em.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ em.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf em * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ em.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embed.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embed.js
deleted file mode 100644
index 99659aa5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embed.js
+++ /dev/null
@@ -1,122 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object embed() * @type embed * @super Object * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535245.aspx */ function embed(){}; embed.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ embed.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533066.aspx */ embed.prototype.align=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ embed.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ embed.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ embed.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ embed.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ embed.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ embed.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ embed.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ embed.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ embed.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ embed.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ embed.prototype.childNodes= new childNodes(); /** * Property height * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ embed.prototype.height=new Object(); /** * Property hidden * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533782.aspx */ embed.prototype.hidden=""; /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ embed.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ embed.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ embed.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ embed.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ embed.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ embed.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ embed.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ embed.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ embed.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ embed.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ embed.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ embed.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ embed.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ embed.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ embed.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ embed.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ embed.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ embed.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ embed.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ embed.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ embed.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ embed.prototype.document= new document(); /** * Property palette * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534325.aspx */ embed.prototype.palette=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ embed.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ embed.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ embed.prototype.parentTextEdit=new Object(); /** * Property pluginspage * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534341.aspx */ embed.prototype.pluginspage=""; /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ embed.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ embed.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ embed.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ embed.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ embed.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ embed.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ embed.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ embed.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ embed.prototype.all= new all(); /** * Property src * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534643.aspx */ embed.prototype.src=""; /** * Property tagName * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ embed.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ embed.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ embed.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534698.aspx */ embed.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ embed.prototype.uniqueID=""; /** * Property units * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534705.aspx */ embed.prototype.units=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ embed.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ embed.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ embed.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ embed.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ embed.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ embed.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ embed.prototype.clearAttributes=function(){}; /** * function click() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ embed.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ embed.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ embed.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ embed.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ embed.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ embed.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ embed.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ embed.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ embed.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ embed.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ embed.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ embed.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ embed.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ embed.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ embed.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ embed.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ embed.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ embed.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ embed.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ embed.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ embed.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ embed.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ embed.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ embed.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ embed.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ embed.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ embed.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ embed.prototype.removeExpression=function(sPropertyName){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ embed.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ embed.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ embed.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ embed.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ embed.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ embed.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ embed.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ embed.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ embed.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ embed.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ embed.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ embed.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ embed.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ embed.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ embed.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ embed.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ embed.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ embed.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ embed.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ embed.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ embed.prototype.ondeactivate= new ondeactivate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ embed.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ embed.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ embed.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ embed.prototype.onhelp= new onhelp(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ embed.prototype.onload= new onload(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ embed.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ embed.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ embed.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ embed.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ embed.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ embed.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ embed.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ embed.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ embed.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ embed.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ embed.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ embed.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ embed.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ embed.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ embed.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ embed.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ embed.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ embed.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ embed.prototype.onscroll= new onscroll(); /** * Property all * @type all * @returns {all}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ embed.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ embed.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ embed.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ embed.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ embed.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf embed * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ embed.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embeds.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embeds.js
deleted file mode 100644
index 44684a61..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_embeds.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object embeds() * @type embeds * @super Array * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537450.aspx */ function embeds(){}; embeds.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ embeds.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ embeds.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ embeds.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ embeds.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ embeds.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ embeds.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf embeds * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ embeds.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_event.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_event.js
deleted file mode 100644
index cc59cd08..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_event.js
+++ /dev/null
@@ -1,47 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object event() * @type event * @super Object * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535863.aspx */ function event(){}; event.prototype= new Object(); /** * Property Abstract * @type Abstract * @returns {Abstract}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533126.aspx */ event.prototype.Abstract= new Abstract(); /** * Property altKey * @type altKey * @returns {altKey}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533075.aspx */ event.prototype.altKey= new altKey(); /** * Property altLeft * @type altLeft * @returns {altLeft}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533076.aspx */ event.prototype.altLeft= new altLeft(); /** * Property Banner * @type Banner * @returns {Banner}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533136.aspx */ event.prototype.Banner= new Banner(); /** * Property button * @type button * @returns {button}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533544.aspx */ event.prototype.button= new button(); /** * Property cancelBubble * @type cancelBubble * @returns {cancelBubble}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533545.aspx */ event.prototype.cancelBubble= new cancelBubble(); /** * Property clientX * @type clientX * @returns {clientX}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533567.aspx */ event.prototype.clientX= new clientX(); /** * Property clientY * @type clientY * @returns {clientY}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533568.aspx */ event.prototype.clientY= new clientY(); /** * Property contentOverflow * @type contentOverflow * @returns {contentOverflow}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533691.aspx */ event.prototype.contentOverflow= new contentOverflow(); /** * Property ctrlKey * @type ctrlKey * @returns {ctrlKey}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533699.aspx */ event.prototype.ctrlKey= new ctrlKey(); /** * Property ctrlLeft * @type ctrlLeft * @returns {ctrlLeft}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533700.aspx */ event.prototype.ctrlLeft= new ctrlLeft(); /** * Property dataFld * @type dataFld * @returns {dataFld}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533704.aspx */ event.prototype.dataFld= new dataFld(); /** * Property oncellchange * @type oncellchange * @returns {oncellchange}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536911.aspx */ event.prototype.oncellchange= new oncellchange(); /** * Property fromElement * @type fromElement * @returns {fromElement}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533773.aspx */ event.prototype.fromElement= new fromElement(); /** * Property keyCode * @type keyCode * @returns {keyCode}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533927.aspx */ event.prototype.keyCode= new keyCode(); /** * Property MoreInfo * @type MoreInfo * @returns {MoreInfo}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533294.aspx */ event.prototype.MoreInfo= new MoreInfo(); /** * Property nextPage * @type nextPage * @returns {nextPage}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534188.aspx */ event.prototype.nextPage= new nextPage(); /** * Property offsetX * @type offsetX * @returns {offsetX}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534305.aspx */ event.prototype.offsetX= new offsetX(); /** * Property offsetY * @type offsetY * @returns {offsetY}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534306.aspx */ event.prototype.offsetY= new offsetY(); /** * Property propertyName * @type propertyName * @returns {propertyName}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534352.aspx */ event.prototype.propertyName= new propertyName(); /** * Property qualifier * @type qualifier * @returns {qualifier}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534355.aspx */ event.prototype.qualifier= new qualifier(); /** * Property reason * @type reason * @returns {reason}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534362.aspx */ event.prototype.reason= new reason(); /** * Property recordset * @type recordset * @returns {recordset}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534364.aspx */ event.prototype.recordset= new recordset(); /** * Property repeat * @type repeat * @returns {repeat}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534367.aspx */ event.prototype.repeat= new repeat(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ event.prototype.onkeydown= new onkeydown(); /** * Property returnValue * @type returnValue * @returns {returnValue}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534372.aspx */ event.prototype.returnValue= new returnValue(); /** * Property saveType * @type saveType * @returns {saveType}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534385.aspx */ event.prototype.saveType= new saveType(); /** * Property oncontentsave * @type oncontentsave * @returns {oncontentsave}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531022.aspx */ event.prototype.oncontentsave= new oncontentsave(); /** * Property screenX * @type screenX * @returns {screenX}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534391.aspx */ event.prototype.screenX= new screenX(); /** * Property screenY * @type screenY * @returns {screenY}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534392.aspx */ event.prototype.screenY= new screenY(); /** * Property shiftKey * @type shiftKey * @returns {shiftKey}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534629.aspx */ event.prototype.shiftKey= new shiftKey(); /** * Property shiftLeft * @type shiftLeft * @returns {shiftLeft}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534630.aspx */ event.prototype.shiftLeft= new shiftLeft(); /** * Property srcElement * @type srcElement * @returns {srcElement}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534638.aspx */ event.prototype.srcElement= new srcElement(); /** * Property srcFilter * @type srcFilter * @returns {srcFilter}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534639.aspx */ event.prototype.srcFilter= new srcFilter(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ event.prototype.onfilterchange= new onfilterchange(); /** * Property srcUrn * @type srcUrn * @returns {srcUrn}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534640.aspx */ event.prototype.srcUrn= new srcUrn(); /** * Property toElement * @type toElement * @returns {toElement}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534684.aspx */ event.prototype.toElement= new toElement(); /** * Property type * @type type * @returns {type}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534697.aspx */ event.prototype.type= new type(); /** * Property userName * @type String * @returns {String}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531053.aspx */ event.prototype.userName=""; /** * function useService(sElementID,sFriendlyName,oUseOptions) * @param {String} sElementID * @param {String} sFriendlyName * @param {useOptions} oUseOptions * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531063.aspx */ event.prototype.useService=function(sElementID,sFriendlyName,oUseOptions){}; /** * Property wheelDelta * @type wheelDelta * @returns {wheelDelta}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535142.aspx */ event.prototype.wheelDelta= new wheelDelta(); /** * Property x * @type x * @returns {x}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535154.aspx */ event.prototype.x= new x(); /** * Property y * @type y * @returns {y}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535164.aspx */ event.prototype.y= new y(); /** * Property bookmarks * @type bookmarks * @returns {bookmarks}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537441.aspx */ event.prototype.bookmarks= new bookmarks(); /** * Property dataTransfer * @type dataTransfer * @returns {dataTransfer}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535861.aspx */ event.prototype.dataTransfer= new dataTransfer(); /** * Property bookmarks * @type bookmarks * @returns {bookmarks}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537441.aspx */ event.prototype.bookmarks= new bookmarks(); /** * Property boundElements * @type boundElements * @returns {boundElements}
- * @memberOf event * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537442.aspx */ event.prototype.boundElements= new boundElements(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_external.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_external.js
deleted file mode 100644
index fac7e9e7..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_external.js
+++ /dev/null
@@ -1,12 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object external() * @type external * @super Object * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535246.aspx */ function external(){}; external.prototype= new Object(); /** * Property frozen * @type Boolean * @returns {Boolean}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342516.aspx */ external.prototype.frozen=false; /** * Property menuArguments * @type Object * @returns {Object}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534165.aspx */ external.prototype.menuArguments=new Object(); /** * Property onvisibilitychange * @type Object * @returns {Object}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342517.aspx */ external.prototype.onvisibilitychange=new Object(); /** * Property scrollbar * @type Boolean * @returns {Boolean}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342519.aspx */ external.prototype.scrollbar=false; /** * Property selectableContent * @type Boolean * @returns {Boolean}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342520.aspx */ external.prototype.selectableContent=false; /** * Property version * @type String * @returns {String}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342522.aspx */ external.prototype.version=""; /** * Property visibility * @type Boolean * @returns {Boolean}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342523.aspx */ external.prototype.visibility=false; /** * function AddChannel(sURLToCDF) * @param {String} sURLToCDF * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535923.aspx */ external.prototype.AddChannel=function(sURLToCDF){}; /** * function AddChannel(sURLToCDF) * @param {String} sURLToCDF * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535923.aspx */ external.prototype.AddChannel=function(sURLToCDF){}; /** * function AddDesktopComponent(sURL,sType,iLeft,iTop,iWidth,iHeight) * @param {String} sURL * @param {String} sType * @param {Number} iLeft * @param {Number} iTop * @param {Number} iWidth * @param {Number} iHeight * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535924.aspx */ external.prototype.AddDesktopComponent=function(sURL,sType,iLeft,iTop,iWidth,iHeight){}; /** * function AddFavorite(sURL,sTitle) * @param {String} sURL * @param {String} sTitle * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535926.aspx */ external.prototype.AddFavorite=function(sURL,sTitle){}; /** * function AddSearchProvider(sUrl) * @param {AddSearchProvider} sUrl * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535931.aspx */ external.prototype.AddSearchProvider=function(sUrl){}; /** * function AutoCompleteSaveForm(oForm) * @param {Object} oForm * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536344.aspx */ external.prototype.AutoCompleteSaveForm=function(oForm){}; /** * function AutoScan(sUserQuery,sURL,sTarget) * @param {String} sUserQuery * @param {String} sURL * @param {String} sTarget * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536345.aspx */ external.prototype.AutoScan=function(sUserQuery,sURL,sTarget){}; /** * function BrandImageUri() * @type String * @returns {String}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536348.aspx */ external.prototype.BrandImageUri=function(){}; /** * function bubbleEvent() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342525.aspx */ external.prototype.bubbleEvent=function(){}; /** * function CustomizeClearType(fSet) * @param {CustomizeClearType} fSet * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/bb245715.aspx */ external.prototype.CustomizeClearType=function(fSet){}; /** * function CustomizeSettings(fSQM,fPhishing,sLocale) * @param {Boolean} fSQM * @param {Boolean} fPhishing * @param {String} sLocale * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536404.aspx */ external.prototype.CustomizeSettings=function(fSQM,fPhishing,sLocale){}; /** * function DefaultSearchProvider() * @type String * @returns {String}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/bb245716.aspx */ external.prototype.DefaultSearchProvider=function(){}; /** * function DiagnoseConnection() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/bb245717.aspx */ external.prototype.DiagnoseConnection=function(){}; /** * function ImportExportFavorites(bImportExport,sImportExportPath) * @param {Boolean} bImportExport * @param {String} sImportExportPath * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536449.aspx */ external.prototype.ImportExportFavorites=function(bImportExport,sImportExportPath){}; /** * function IsSearchMigrated() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/bb245718.aspx */ external.prototype.IsSearchMigrated=function(){}; /** * function IsSearchProviderInstalled(sUrl) * @param {IsSearchProviderInstalled} sUrl * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342526.aspx */ external.prototype.IsSearchProviderInstalled=function(sUrl){}; /** * function IsSubscribed(sURLToCDF) * @param {String} sURLToCDF * @type Boolean * @returns {Boolean}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536459.aspx */ external.prototype.IsSubscribed=function(sURLToCDF){}; /** * function NavigateAndFind(sLocation,sQuery,sTargetFrame) * @param {String} sLocation * @param {String} sQuery * @param {String} sTargetFrame * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536641.aspx */ external.prototype.NavigateAndFind=function(sLocation,sQuery,sTargetFrame){}; /** * function PhishingEnabled() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536658.aspx */ external.prototype.PhishingEnabled=function(){}; /** * function raiseEvent(name,eventData) * @param {Required.} name Specifies a valid event name as a string. * @param {Required.} eventData Specifies event data. * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342527.aspx */ external.prototype.raiseEvent=function(name,eventData){}; /** * function RunOnceHasShown() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/bb245719.aspx */ external.prototype.RunOnceHasShown=function(){}; /** * function RunOnceShown() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536725.aspx */ external.prototype.RunOnceShown=function(){}; /** * function SearchGuideUrl() * @type String * @returns {String}
- * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/bb245721.aspx */ external.prototype.SearchGuideUrl=function(){}; /** * function setContextMenu(menuItemPairs) * @param {Required.} menuItemPairs Specifies menu item pairs, which are command text and commands contained within the context menu. * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342529.aspx */ external.prototype.setContextMenu=function(menuItemPairs){}; /** * function ShowBrowserUI(sUI,null) * @param {String} sUI * @param {ShowBrowserUI} null * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536756.aspx */ external.prototype.ShowBrowserUI=function(sUI,null){}; /** * function SkipRunOnce() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536763.aspx */ external.prototype.SkipRunOnce=function(){}; /** * function SkipTabsWelcome() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa342530.aspx */ external.prototype.SkipTabsWelcome=function(){}; /** * function SqmEnabled() * @memberOf external * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536766.aspx */ external.prototype.SqmEnabled=function(){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fieldset.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fieldset.js
deleted file mode 100644
index ed491251..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fieldset.js
+++ /dev/null
@@ -1,137 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object fieldSet() * @type fieldSet * @super Object * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535247.aspx */ function fieldSet(){}; fieldSet.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ fieldSet.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533066.aspx */ fieldSet.prototype.align=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ fieldSet.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ fieldSet.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ fieldSet.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ fieldSet.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ fieldSet.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ fieldSet.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ fieldSet.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ fieldSet.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ fieldSet.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ fieldSet.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ fieldSet.prototype.contentEditable=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ fieldSet.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ fieldSet.prototype.dataSrc=""; /** * Property dir * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ fieldSet.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ fieldSet.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ fieldSet.prototype.childNodes= new childNodes(); /** * Property form * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ fieldSet.prototype.form=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ fieldSet.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ fieldSet.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ fieldSet.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ fieldSet.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ fieldSet.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ fieldSet.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ fieldSet.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ fieldSet.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ fieldSet.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ fieldSet.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ fieldSet.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ fieldSet.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ fieldSet.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ fieldSet.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ fieldSet.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ fieldSet.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ fieldSet.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ fieldSet.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ fieldSet.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ fieldSet.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ fieldSet.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ fieldSet.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ fieldSet.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ fieldSet.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ fieldSet.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ fieldSet.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ fieldSet.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ fieldSet.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ fieldSet.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ fieldSet.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ fieldSet.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ fieldSet.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ fieldSet.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ fieldSet.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ fieldSet.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ fieldSet.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ fieldSet.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ fieldSet.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ fieldSet.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ fieldSet.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ fieldSet.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ fieldSet.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ fieldSet.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ fieldSet.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ fieldSet.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ fieldSet.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ fieldSet.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ fieldSet.prototype.clearAttributes=function(){}; /** * function click() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ fieldSet.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ fieldSet.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ fieldSet.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ fieldSet.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ fieldSet.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ fieldSet.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ fieldSet.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ fieldSet.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ fieldSet.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ fieldSet.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ fieldSet.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ fieldSet.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ fieldSet.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ fieldSet.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ fieldSet.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ fieldSet.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ fieldSet.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ fieldSet.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ fieldSet.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ fieldSet.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ fieldSet.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ fieldSet.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ fieldSet.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ fieldSet.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ fieldSet.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ fieldSet.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ fieldSet.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ fieldSet.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ fieldSet.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ fieldSet.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ fieldSet.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ fieldSet.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ fieldSet.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ fieldSet.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ fieldSet.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ fieldSet.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ fieldSet.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ fieldSet.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ fieldSet.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ fieldSet.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ fieldSet.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ fieldSet.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ fieldSet.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ fieldSet.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ fieldSet.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ fieldSet.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ fieldSet.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ fieldSet.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ fieldSet.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ fieldSet.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ fieldSet.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ fieldSet.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ fieldSet.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ fieldSet.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ fieldSet.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ fieldSet.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ fieldSet.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ fieldSet.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ fieldSet.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ fieldSet.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ fieldSet.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ fieldSet.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ fieldSet.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ fieldSet.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ fieldSet.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ fieldSet.prototype.ondrop= new ondrop(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ fieldSet.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ fieldSet.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ fieldSet.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ fieldSet.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ fieldSet.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ fieldSet.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ fieldSet.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ fieldSet.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ fieldSet.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ fieldSet.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ fieldSet.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ fieldSet.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ fieldSet.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ fieldSet.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ fieldSet.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ fieldSet.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ fieldSet.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ fieldSet.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ fieldSet.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ fieldSet.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ fieldSet.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ fieldSet.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ fieldSet.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ fieldSet.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ fieldSet.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ fieldSet.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ fieldSet.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ fieldSet.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ fieldSet.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ fieldSet.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ fieldSet.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ fieldSet.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ fieldSet.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ fieldSet.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf fieldSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ fieldSet.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_filters.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_filters.js
deleted file mode 100644
index a451d7eb..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_filters.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object filters() * @type filters * @super Array * @memberOf filters * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ function filters(){}; filters.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf filters * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ filters.prototype.length=0; /** * function item(vIndex) * @param {Number} vIndex * @memberOf filters * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ filters.prototype.item=function(vIndex){}; /** * function item(vIndex) * @param {Number} vIndex * @memberOf filters * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ filters.prototype.item=function(vIndex){}; /** * function namedItem(sName) * @param {String} sName * @memberOf filters * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ filters.prototype.namedItem=function(sName){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_font.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_font.js
deleted file mode 100644
index b7e4b57f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_font.js
+++ /dev/null
@@ -1,123 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object font() * @type font * @super Object * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535248.aspx */ function font(){}; font.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ font.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ font.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ font.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ font.prototype.className=""; /** * Property color * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533579.aspx */ font.prototype.color=new Object(); /** * Property contentEditable * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ font.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ font.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ font.prototype.disabled=false; /** * Property face * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533748.aspx */ font.prototype.face=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ font.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ font.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ font.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ font.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ font.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ font.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ font.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ font.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ font.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ font.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ font.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ font.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ font.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ font.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ font.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ font.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ font.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ font.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ font.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ font.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ font.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ font.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ font.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ font.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ font.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ font.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ font.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ font.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ font.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ font.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ font.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ font.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ font.prototype.scopeName=""; /** * Property size * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534631.aspx */ font.prototype.size=0; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ font.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ font.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ font.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ font.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ font.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ font.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ font.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ font.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ font.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ font.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ font.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ font.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ font.prototype.clearAttributes=function(){}; /** * function click() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ font.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ font.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ font.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ font.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ font.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ font.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ font.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ font.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ font.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ font.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ font.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ font.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ font.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ font.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ font.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ font.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ font.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ font.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ font.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ font.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ font.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ font.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ font.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ font.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ font.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ font.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ font.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ font.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ font.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ font.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ font.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ font.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ font.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ font.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ font.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ font.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ font.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ font.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ font.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ font.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ font.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ font.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ font.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ font.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ font.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ font.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ font.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ font.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ font.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ font.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ font.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ font.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ font.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ font.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ font.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ font.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ font.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ font.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ font.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ font.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ font.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ font.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ font.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ font.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ font.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ font.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ font.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ font.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ font.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ font.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ font.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ font.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ font.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ font.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ font.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ font.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ font.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ font.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ font.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ font.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ font.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ font.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ font.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ font.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ font.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ font.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ font.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ font.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ font.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ font.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ font.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ font.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ font.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ font.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ font.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ font.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ font.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf font * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ font.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fonts.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fonts.js
deleted file mode 100644
index cd87fa9b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fonts.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object fonts() * @type fonts * @super Array * @memberOf fonts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537454.aspx */ function fonts(){}; fonts.prototype= new Array(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf fonts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533696.aspx */ fonts.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf fonts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533924.aspx */ fonts.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf fonts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533924.aspx */ fonts.prototype.TF-8"= new TF-8"(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_form.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_form.js
deleted file mode 100644
index f344bcd9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_form.js
+++ /dev/null
@@ -1,145 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **//** * Object form() * @type form * @super Object * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535249.aspx */ function form(){}; form.prototype= new Object(); /** * Property acceptCharset * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533061.aspx */ form.prototype.acceptCharset=""; /** * Property action * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533063.aspx */ form.prototype.action=""; /** * Property autocomplete * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533486.aspx */ form.prototype.autocomplete=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ form.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ form.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ form.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ form.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ form.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ form.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ form.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ form.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ form.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ form.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ form.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ form.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ form.prototype.disabled=false; /** * Property encoding * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533744.aspx */ form.prototype.encoding=""; /** * Property enctype * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533745.aspx */ form.prototype.enctype=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ form.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ form.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ form.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ form.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ form.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ form.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ form.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ form.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ form.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ form.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ form.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ form.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ form.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ form.prototype.lastChild=new Object(); /** * Property length * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ form.prototype.length=0; /** * Property method * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534167.aspx */ form.prototype.method=""; /** * Property name * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ form.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ form.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ form.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ form.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ form.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ form.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ form.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ form.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ form.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ form.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ form.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ form.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ form.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ form.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ form.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ form.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ form.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ form.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ form.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ form.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ form.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ form.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ form.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ form.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ form.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ form.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ form.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ form.prototype.tagUrn=""; /** * Property target * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534659.aspx */ form.prototype.target=""; /** * Property title * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ form.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ form.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ form.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ form.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ form.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ form.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ form.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ form.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ form.prototype.clearAttributes=function(){}; /** * function click() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ form.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ form.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ form.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ form.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ form.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ form.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ form.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ form.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ form.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ form.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ form.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ form.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ form.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ form.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ form.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ form.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ form.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ form.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ form.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ form.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ form.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ form.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ form.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ form.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ form.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ form.prototype.item=function(vIndex,iSubindex){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ form.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function namedItem(sName) * @param {String} sName * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ form.prototype.namedItem=function(sName){}; /** * function normalize() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ form.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ form.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ form.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ form.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ form.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ form.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ form.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ form.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ form.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ form.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ form.prototype.replaceNode=function(oNewNode){}; /** * function reset() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536721.aspx */ form.prototype.reset=function(){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ form.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ form.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ form.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ form.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ form.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ form.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function submit() * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536771.aspx */ form.prototype.submit=function(){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ form.prototype.swapNode=function(oNode){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ form.prototype.urns=function(sUrn){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ form.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ form.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ form.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ form.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ form.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ form.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ form.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ form.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ form.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ form.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ form.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ form.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ form.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ form.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ form.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ form.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ form.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ form.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ form.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ form.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ form.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ form.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ form.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ form.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ form.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ form.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ form.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ form.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ form.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ form.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ form.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ form.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ form.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ form.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ form.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ form.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ form.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ form.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ form.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ form.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ form.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ form.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ form.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ form.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ form.prototype.onreadystatechange= new onreadystatechange(); /** * Property onreset * @type onreset * @returns {onreset}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536958.aspx */ form.prototype.onreset= new onreset(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ form.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ form.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ form.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ form.prototype.onselectstart= new onselectstart(); /** * Property onsubmit * @type onsubmit * @returns {onsubmit}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536972.aspx */ form.prototype.onsubmit= new onsubmit(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ form.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ form.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ form.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ form.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ form.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ form.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ form.prototype.children= new children(); /** * Property elements * @type elements * @returns {elements}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537449.aspx */ form.prototype.elements= new elements(); /** * Property input * @type input * @returns {input}
- * @memberOf form * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535836.aspx */ form.prototype.input= new input(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_forms.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_forms.js
deleted file mode 100644
index 2d75c4bc..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_forms.js
+++ /dev/null
@@ -1,3 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object forms() * @type forms * @super Array * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537457.aspx */ function forms(){}; forms.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ forms.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ forms.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ forms.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ forms.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ forms.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ forms.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf forms * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ forms.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frame.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frame.js
deleted file mode 100644
index 8f045db3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frame.js
+++ /dev/null
@@ -1,97 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object frame() * @type frame * @super Object * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535250.aspx */ function frame(){}; frame.prototype= new Object(); /** * Property allowTransparency * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533072.aspx */ frame.prototype.allowTransparency=false; /** * Property borderColor * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533517.aspx */ frame.prototype.borderColor=new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ frame.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ frame.prototype.className=""; /** * Property contentWindow * @type window * @returns {window}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533692.aspx */ frame.prototype.contentWindow=new window(); /** * Property window * @type window * @returns {window}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535873.aspx */ frame.prototype.window= new window(); /** * Property iframe * @type iframe * @returns {iframe}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535258.aspx */ frame.prototype.iframe= new iframe(); /** * Property dataFld * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ frame.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ frame.prototype.dataSrc=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ frame.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ frame.prototype.childNodes= new childNodes(); /** * Property frameBorder * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533770.aspx */ frame.prototype.frameBorder=""; /** * Property height * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ frame.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ frame.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ frame.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ frame.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ frame.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ frame.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ frame.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ frame.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ frame.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ frame.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ frame.prototype.lastChild=new Object(); /** * Property longDesc * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534132.aspx */ frame.prototype.longDesc=""; /** * Property marginHeight * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534145.aspx */ frame.prototype.marginHeight=new Object(); /** * Property marginWidth * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534153.aspx */ frame.prototype.marginWidth=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534182.aspx */ frame.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ frame.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ frame.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ frame.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ frame.prototype.nodeValue=new Object(); /** * Property noResize * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534194.aspx */ frame.prototype.noResize=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ frame.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ frame.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ frame.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ frame.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ frame.prototype.offsetWidth=0; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ frame.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ frame.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ frame.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ frame.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ frame.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ frame.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ frame.prototype.readyState=""; /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ frame.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ frame.prototype.scopeName=""; /** * Property scrolling * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534616.aspx */ frame.prototype.scrolling=""; /** * Property self * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534627.aspx */ frame.prototype.self=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ frame.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ frame.prototype.all= new all(); /** * Property src * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534643.aspx */ frame.prototype.src=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ frame.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ frame.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ frame.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ frame.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ frame.prototype.uniqueID=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ frame.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ frame.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ frame.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ frame.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ frame.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ frame.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ frame.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ frame.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ frame.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ frame.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ frame.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ frame.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ frame.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ frame.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ frame.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ frame.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ frame.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ frame.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ frame.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ frame.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ frame.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ frame.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ frame.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ frame.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ frame.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ frame.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ frame.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ frame.prototype.removeBehavior=function(iID){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ frame.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function setActive() * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ frame.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ frame.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ frame.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ frame.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ frame.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ frame.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ frame.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ frame.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ frame.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ frame.prototype.onblur= new onblur(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ frame.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ frame.prototype.ondeactivate= new ondeactivate(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ frame.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ frame.prototype.onfocus= new onfocus(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ frame.prototype.onload= new onload(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ frame.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ frame.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ frame.prototype.onmovestart= new onmovestart(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ frame.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ frame.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ frame.prototype.onresizestart= new onresizestart(); /** * Property all * @type all * @returns {all}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ frame.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ frame.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ frame.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ frame.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ frame.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf frame * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ frame.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frames.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frames.js
deleted file mode 100644
index 18d67cfd..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frames.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object frames() * @type frames * @super Array * @memberOf frames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537459.aspx */ function frames(){}; frames.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf frames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ frames.prototype.length=0; /** * function item(vIndex) * @param {Number} vIndex * @memberOf frames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ frames.prototype.item=function(vIndex){}; /** * function item(vIndex) * @param {Number} vIndex * @memberOf frames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ frames.prototype.item=function(vIndex){}; /** * Property filters * @type filters * @returns {filters}
- * @memberOf frames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ frames.prototype.filters= new filters(); /** * function namedItem(sName) * @param {String} sName * @memberOf frames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ frames.prototype.namedItem=function(sName){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frameset.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frameset.js
deleted file mode 100644
index 307d110c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_frameset.js
+++ /dev/null
@@ -1,83 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object frameSet() * @type frameSet * @super Object * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535251.aspx */ function frameSet(){}; frameSet.prototype= new Object(); /** * Property border * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533533.aspx */ frameSet.prototype.border=new Object(); /** * Property borderColor * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533517.aspx */ frameSet.prototype.borderColor=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ frameSet.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ frameSet.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ frameSet.prototype.className=""; /** * Property cols * @type Number * @returns {Number}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533584.aspx */ frameSet.prototype.cols=0; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ frameSet.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ frameSet.prototype.childNodes= new childNodes(); /** * Property frameBorder * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533770.aspx */ frameSet.prototype.frameBorder=""; /** * Property frameSpacing * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533772.aspx */ frameSet.prototype.frameSpacing=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ frameSet.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ frameSet.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ frameSet.prototype.innerHTML=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ frameSet.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ frameSet.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ frameSet.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ frameSet.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ frameSet.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ frameSet.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ frameSet.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ frameSet.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534182.aspx */ frameSet.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ frameSet.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ frameSet.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ frameSet.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ frameSet.prototype.nodeValue=new Object(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ frameSet.prototype.outerHTML=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ frameSet.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ frameSet.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ frameSet.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ frameSet.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ frameSet.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ frameSet.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ frameSet.prototype.readyState=new Object(); /** * Property rows * @type Number * @returns {Number}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534380.aspx */ frameSet.prototype.rows=0; /** * Property scopeName * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ frameSet.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ frameSet.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ frameSet.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ frameSet.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ frameSet.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ frameSet.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ frameSet.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ frameSet.prototype.uniqueID=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ frameSet.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ frameSet.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ frameSet.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ frameSet.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ frameSet.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ frameSet.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ frameSet.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ frameSet.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ frameSet.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ frameSet.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ frameSet.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ frameSet.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ frameSet.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ frameSet.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ frameSet.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ frameSet.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ frameSet.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ frameSet.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ frameSet.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ frameSet.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ frameSet.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ frameSet.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ frameSet.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ frameSet.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ frameSet.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ frameSet.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ frameSet.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ frameSet.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ frameSet.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ frameSet.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ frameSet.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ frameSet.prototype.removeChild=function(oNode){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ frameSet.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ frameSet.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ frameSet.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ frameSet.prototype.replaceNode=function(oNewNode){}; /** * function setActive() * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ frameSet.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ frameSet.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ frameSet.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ frameSet.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ frameSet.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ frameSet.prototype.activeElement=new Object(); /** * Property onafterprint * @type onafterprint * @returns {onafterprint}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536788.aspx */ frameSet.prototype.onafterprint= new onafterprint(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ frameSet.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeprint * @type onbeforeprint * @returns {onbeforeprint}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536906.aspx */ frameSet.prototype.onbeforeprint= new onbeforeprint(); /** * Property onbeforeunload * @type onbeforeunload * @returns {onbeforeunload}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536907.aspx */ frameSet.prototype.onbeforeunload= new onbeforeunload(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ frameSet.prototype.onblur= new onblur(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ frameSet.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ frameSet.prototype.ondeactivate= new ondeactivate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ frameSet.prototype.onfocus= new onfocus(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ frameSet.prototype.onload= new onload(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ frameSet.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ frameSet.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ frameSet.prototype.onmovestart= new onmovestart(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ frameSet.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ frameSet.prototype.onresizestart= new onresizestart(); /** * Property onunload * @type onunload * @returns {onunload}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536973.aspx */ frameSet.prototype.onunload= new onunload(); /** * Property all * @type all * @returns {all}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ frameSet.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ frameSet.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ frameSet.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ frameSet.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ frameSet.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf frameSet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ frameSet.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fromelement.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fromelement.js
deleted file mode 100644
index 43262434..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_fromelement.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object fromElement() * @type fromElement * @super Object * @memberOf fromElement * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533773.aspx */ function fromElement(){}; fromElement.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_head.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_head.js
deleted file mode 100644
index fe4ecb67..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_head.js
+++ /dev/null
@@ -1,58 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object head() * @type head * @super Object * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535252.aspx */ function head(){}; head.prototype= new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ head.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ head.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ head.prototype.className=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ head.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ head.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ head.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ head.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ head.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ head.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ head.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ head.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ head.prototype.lang=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ head.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ head.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ head.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ head.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ head.prototype.nodeValue=new Object(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ head.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ head.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ head.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ head.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ head.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ head.prototype.previousSibling=new Object(); /** * Property profile * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534351.aspx */ head.prototype.profile=""; /** * Property readyState * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ head.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ head.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ head.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ head.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ head.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ head.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ head.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ head.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ head.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ head.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ head.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ head.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ head.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ head.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ head.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ head.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ head.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ head.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ head.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ head.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ head.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ head.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ head.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ head.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ head.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ head.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ head.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ head.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ head.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ head.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ head.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ head.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ head.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ head.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ head.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ head.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ head.prototype.removeChild=function(oNode){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ head.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ head.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ head.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ head.prototype.replaceNode=function(oNewNode){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ head.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ head.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ head.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ head.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ head.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ head.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ head.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ head.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ head.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ head.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf head * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ head.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_history.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_history.js
deleted file mode 100644
index a972faa8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_history.js
+++ /dev/null
@@ -1,2 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object history() * @type history * @super Object * @memberOf history * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535864.aspx */ function history(){}; history.prototype= new Object(); /** * Property length * @type Number * @returns {Number}
- * @memberOf history * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534105.aspx */ history.prototype.length=0; /** * function back(iDistance) * @param {back} iDistance * @memberOf history * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536346.aspx */ history.prototype.back=function(iDistance){}; /** * function back(iDistance) * @param {back} iDistance * @memberOf history * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536346.aspx */ history.prototype.back=function(iDistance){}; /** * function forward() * @memberOf history * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536426.aspx */ history.prototype.forward=function(){}; /** * function go(vLocation) * @param {Variant} vLocation * @memberOf history * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536443.aspx */ history.prototype.go=function(vLocation){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hn.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hn.js
deleted file mode 100644
index e16e7ca2..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hn.js
+++ /dev/null
@@ -1,132 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object hn() * @type hn * @super Object * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535253.aspx */ function hn(){}; hn.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ hn.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ hn.prototype.align=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ hn.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ hn.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ hn.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ hn.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ hn.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ hn.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ hn.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ hn.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ hn.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ hn.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ hn.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ hn.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ hn.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ hn.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ hn.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ hn.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ hn.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ hn.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ hn.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ hn.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ hn.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ hn.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ hn.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ hn.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ hn.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ hn.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ hn.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ hn.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ hn.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ hn.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ hn.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ hn.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ hn.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ hn.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ hn.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ hn.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ hn.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ hn.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ hn.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ hn.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ hn.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ hn.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ hn.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ hn.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ hn.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ hn.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ hn.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ hn.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ hn.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ hn.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ hn.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ hn.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ hn.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ hn.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ hn.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ hn.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ hn.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ hn.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ hn.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ hn.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ hn.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ hn.prototype.clearAttributes=function(){}; /** * function click() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ hn.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ hn.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ hn.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ hn.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ hn.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ hn.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ hn.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ hn.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ hn.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ hn.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ hn.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ hn.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ hn.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ hn.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ hn.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ hn.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ hn.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ hn.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ hn.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ hn.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ hn.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ hn.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ hn.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ hn.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ hn.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ hn.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ hn.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ hn.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ hn.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ hn.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ hn.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ hn.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ hn.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ hn.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ hn.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ hn.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ hn.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ hn.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ hn.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ hn.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ hn.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ hn.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ hn.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ hn.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ hn.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ hn.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ hn.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ hn.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ hn.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ hn.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ hn.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ hn.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ hn.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ hn.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ hn.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ hn.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ hn.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ hn.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ hn.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ hn.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ hn.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ hn.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ hn.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ hn.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ hn.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ hn.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ hn.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ hn.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ hn.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ hn.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ hn.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ hn.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ hn.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ hn.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ hn.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ hn.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ hn.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ hn.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ hn.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ hn.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ hn.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ hn.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ hn.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ hn.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ hn.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ hn.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ hn.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ hn.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ hn.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ hn.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ hn.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ hn.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ hn.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ hn.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ hn.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ hn.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ hn.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ hn.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf hn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ hn.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hr.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hr.js
deleted file mode 100644
index aab8a016..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_hr.js
+++ /dev/null
@@ -1,117 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object hr() * @type hr * @super Object * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535254.aspx */ function hr(){}; hr.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ hr.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ hr.prototype.align=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ hr.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ hr.prototype.className=""; /** * Property color * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533579.aspx */ hr.prototype.color=new Object(); /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ hr.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ hr.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ hr.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ hr.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ hr.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ hr.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ hr.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ hr.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ hr.prototype.TextRange= new TextRange(); /** * Property language * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ hr.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ hr.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ hr.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ hr.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ hr.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ hr.prototype.nodeValue=new Object(); /** * Property noShade * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534195.aspx */ hr.prototype.noShade=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ hr.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ hr.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ hr.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ hr.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ hr.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ hr.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ hr.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ hr.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ hr.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ hr.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ hr.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ hr.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ hr.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ hr.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ hr.prototype.scopeName=""; /** * Property size * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534632.aspx */ hr.prototype.size=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ hr.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ hr.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ hr.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ hr.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ hr.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ hr.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ hr.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ hr.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ hr.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ hr.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ hr.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ hr.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ hr.prototype.clearAttributes=function(){}; /** * function click() * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ hr.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ hr.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ hr.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ hr.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ hr.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ hr.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ hr.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ hr.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ hr.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ hr.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ hr.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ hr.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ hr.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ hr.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ hr.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ hr.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ hr.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ hr.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ hr.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ hr.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ hr.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ hr.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ hr.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ hr.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ hr.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ hr.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ hr.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ hr.prototype.removeExpression=function(sPropertyName){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ hr.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ hr.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ hr.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ hr.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ hr.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ hr.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ hr.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ hr.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ hr.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ hr.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ hr.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ hr.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ hr.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ hr.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ hr.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ hr.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ hr.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ hr.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ hr.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ hr.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ hr.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ hr.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ hr.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ hr.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ hr.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ hr.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ hr.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ hr.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ hr.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ hr.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ hr.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ hr.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ hr.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ hr.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ hr.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ hr.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ hr.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ hr.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ hr.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ hr.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ hr.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ hr.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ hr.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ hr.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ hr.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ hr.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ hr.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ hr.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ hr.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ hr.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ hr.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ hr.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ hr.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ hr.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ hr.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ hr.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ hr.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ hr.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ hr.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ hr.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ hr.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ hr.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf hr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ hr.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_html.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_html.js
deleted file mode 100644
index 40fa9591..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_html.js
+++ /dev/null
@@ -1,72 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object html() * @type html * @super Object * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535255.aspx */ function html(){}; html.prototype= new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ html.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ html.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ html.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ html.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ html.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ html.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ html.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ html.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ html.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ html.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ html.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ html.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ html.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ html.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ html.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ html.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ html.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ html.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ html.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ html.prototype.TextRange= new TextRange(); /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ html.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ html.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ html.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ html.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ html.prototype.nodeValue=new Object(); /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ html.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ html.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ html.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ html.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ html.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ html.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ html.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ html.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ html.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ html.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ html.prototype.scopeName=""; /** * Property scroll * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534393.aspx */ html.prototype.scroll=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ html.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ html.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ html.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ html.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ html.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ html.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ html.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ html.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ html.prototype.uniqueID=""; /** * Property version * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535131.aspx */ html.prototype.version=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ html.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ html.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ html.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ html.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ html.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ html.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ html.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ html.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ html.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ html.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ html.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ html.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ html.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ html.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ html.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ html.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ html.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ html.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ html.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ html.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ html.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ html.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ html.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ html.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ html.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ html.prototype.removeChild=function(oNode){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ html.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ html.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ html.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ html.prototype.replaceNode=function(oNewNode){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ html.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ html.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ html.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ html.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ html.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ html.prototype.onmouseleave= new onmouseleave(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ html.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ html.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ html.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ html.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ html.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ html.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf html * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ html.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_i.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_i.js
deleted file mode 100644
index 830369f9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_i.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object i() * @type i * @super Object * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535257.aspx */ function i(){}; i.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ i.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ i.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ i.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ i.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ i.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ i.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ i.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ i.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ i.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ i.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ i.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ i.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ i.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ i.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ i.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ i.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ i.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ i.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ i.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ i.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ i.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ i.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ i.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ i.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ i.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ i.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ i.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ i.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ i.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ i.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ i.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ i.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ i.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ i.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ i.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ i.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ i.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ i.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ i.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ i.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ i.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ i.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ i.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ i.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ i.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ i.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ i.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ i.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ i.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ i.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ i.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ i.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ i.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ i.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ i.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ i.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ i.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ i.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ i.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ i.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ i.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ i.prototype.clearAttributes=function(){}; /** * function click() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ i.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ i.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ i.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ i.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ i.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ i.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ i.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ i.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ i.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ i.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ i.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ i.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ i.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ i.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ i.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ i.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ i.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ i.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ i.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ i.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ i.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ i.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ i.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ i.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ i.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ i.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ i.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ i.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ i.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ i.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ i.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ i.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ i.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ i.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ i.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ i.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ i.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ i.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ i.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ i.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ i.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ i.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ i.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ i.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ i.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ i.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ i.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ i.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ i.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ i.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ i.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ i.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ i.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ i.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ i.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ i.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ i.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ i.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ i.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ i.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ i.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ i.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ i.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ i.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ i.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ i.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ i.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ i.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ i.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ i.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ i.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ i.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ i.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ i.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ i.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ i.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ i.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ i.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ i.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ i.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ i.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ i.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ i.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ i.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ i.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ i.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ i.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ i.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ i.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ i.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ i.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ i.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ i.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ i.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ i.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ i.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ i.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ i.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf i * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ i.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_iframe.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_iframe.js
deleted file mode 100644
index e9e93aa6..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_iframe.js
+++ /dev/null
@@ -1,105 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object iframe() * @type iframe * @super Object * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535258.aspx */ function iframe(){}; iframe.prototype= new Object(); /** * Property align * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533068.aspx */ iframe.prototype.align=""; /** * Property allowTransparency * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533072.aspx */ iframe.prototype.allowTransparency=false; /** * Property border * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533533.aspx */ iframe.prototype.border=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ iframe.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ iframe.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ iframe.prototype.className=""; /** * Property contentWindow * @type window * @returns {window}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533692.aspx */ iframe.prototype.contentWindow=new window(); /** * Property window * @type window * @returns {window}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535873.aspx */ iframe.prototype.window= new window(); /** * Property frame * @type frame * @returns {frame}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535250.aspx */ iframe.prototype.frame= new frame(); /** * Property dataFld * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ iframe.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ iframe.prototype.dataSrc=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ iframe.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ iframe.prototype.childNodes= new childNodes(); /** * Property frameBorder * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533770.aspx */ iframe.prototype.frameBorder=""; /** * Property height * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ iframe.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ iframe.prototype.hideFocus=false; /** * Property hspace * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533868.aspx */ iframe.prototype.hspace=0; /** * Property id * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ iframe.prototype.id=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ iframe.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ iframe.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ iframe.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ iframe.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ iframe.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ iframe.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ iframe.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ iframe.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ iframe.prototype.lastChild=new Object(); /** * Property longDesc * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534132.aspx */ iframe.prototype.longDesc=""; /** * Property marginHeight * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534145.aspx */ iframe.prototype.marginHeight=new Object(); /** * Property marginWidth * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534153.aspx */ iframe.prototype.marginWidth=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534182.aspx */ iframe.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ iframe.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ iframe.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ iframe.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ iframe.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ iframe.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ iframe.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ iframe.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ iframe.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ iframe.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ iframe.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ iframe.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ iframe.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ iframe.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ iframe.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ iframe.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ iframe.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ iframe.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ iframe.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ iframe.prototype.readyState=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ iframe.prototype.readyState=""; /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ iframe.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ iframe.prototype.scopeName=""; /** * Property scrolling * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534616.aspx */ iframe.prototype.scrolling=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ iframe.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ iframe.prototype.all= new all(); /** * Property src * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534643.aspx */ iframe.prototype.src=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ iframe.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ iframe.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ iframe.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ iframe.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ iframe.prototype.uniqueID=""; /** * Property vspace * @type Number * @returns {Number}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535141.aspx */ iframe.prototype.vspace=0; /** * Property width * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ iframe.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ iframe.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ iframe.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ iframe.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ iframe.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ iframe.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ iframe.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ iframe.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ iframe.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ iframe.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ iframe.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ iframe.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ iframe.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ iframe.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ iframe.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ iframe.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ iframe.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ iframe.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ iframe.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ iframe.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ iframe.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ iframe.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ iframe.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ iframe.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ iframe.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ iframe.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ iframe.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ iframe.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ iframe.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ iframe.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ iframe.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ iframe.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ iframe.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ iframe.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ iframe.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ iframe.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ iframe.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ iframe.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ iframe.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ iframe.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ iframe.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ iframe.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ iframe.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ iframe.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ iframe.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ iframe.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ iframe.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ iframe.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ iframe.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ iframe.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ iframe.prototype.onblur= new onblur(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ iframe.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ iframe.prototype.ondeactivate= new ondeactivate(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ iframe.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ iframe.prototype.onfocus= new onfocus(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ iframe.prototype.onload= new onload(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ iframe.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ iframe.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ iframe.prototype.onmovestart= new onmovestart(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ iframe.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ iframe.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ iframe.prototype.onresizestart= new onresizestart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ iframe.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ iframe.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ iframe.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ iframe.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ iframe.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ iframe.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf iframe * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ iframe.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_images.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_images.js
deleted file mode 100644
index d4ba1e3a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_images.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object images() * @type images * @super Array * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537461.aspx */ function images(){}; images.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ images.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ images.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ images.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ images.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ images.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ images.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf images * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ images.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_img.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_img.js
deleted file mode 100644
index 10d997a2..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_img.js
+++ /dev/null
@@ -1,159 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object img() * @type img * @super Object * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535259.aspx */ function img(){}; img.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ img.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533066.aspx */ img.prototype.align=""; /** * Property alt * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533073.aspx */ img.prototype.alt=""; /** * Property border * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533534.aspx */ img.prototype.border=new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ img.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ img.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ img.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ img.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ img.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ img.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ img.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ img.prototype.clientWidth=0; /** * Property complete * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533688.aspx */ img.prototype.complete=false; /** * Property dataFld * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ img.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ img.prototype.dataSrc=""; /** * Property dir * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ img.prototype.dir=""; /** * Property dynsrc * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533742.aspx */ img.prototype.dynsrc=""; /** * Property fileCreatedDate * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533750.aspx */ img.prototype.fileCreatedDate=""; /** * Property fileModifiedDate * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533751.aspx */ img.prototype.fileModifiedDate=""; /** * Property fileSize * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533752.aspx */ img.prototype.fileSize=""; /** * Property fileUpdatedDate * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533753.aspx */ img.prototype.fileUpdatedDate=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ img.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ img.prototype.childNodes= new childNodes(); /** * Property galleryImg * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533774.aspx */ img.prototype.galleryImg=0; /** * Property height * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ img.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ img.prototype.hideFocus=false; /** * Property hspace * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533868.aspx */ img.prototype.hspace=0; /** * Property id * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ img.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ img.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ img.prototype.isDisabled=false; /** * Property isMap * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533906.aspx */ img.prototype.isMap=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ img.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ img.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ img.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ img.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ img.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ img.prototype.lastChild=new Object(); /** * Property longDesc * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534132.aspx */ img.prototype.longDesc=""; /** * Property loop * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534134.aspx */ img.prototype.loop=new Object(); /** * Property lowsrc * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534138.aspx */ img.prototype.lowsrc=""; /** * Property name * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ img.prototype.name=""; /** * Property nameProp * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534180.aspx */ img.prototype.nameProp=""; /** * Property href * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533863.aspx */ img.prototype.href=""; /** * Property src * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534643.aspx */ img.prototype.src=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ img.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ img.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ img.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ img.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ img.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ img.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ img.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ img.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ img.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ img.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ img.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ img.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ img.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ img.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ img.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ img.prototype.previousSibling=new Object(); /** * Property protocol * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534353.aspx */ img.prototype.protocol=""; /** * Property readyState * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ img.prototype.readyState=""; /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ img.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ img.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ img.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ img.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ img.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ img.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ img.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ img.prototype.all= new all(); /** * Property start * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534646.aspx */ img.prototype.start=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ img.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ img.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ img.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ img.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ img.prototype.uniqueID=""; /** * Property useMap * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534711.aspx */ img.prototype.useMap=""; /** * Property vspace * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535141.aspx */ img.prototype.vspace=0; /** * Property width * @type Number * @returns {Number}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535145.aspx */ img.prototype.width=0; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ img.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ img.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ img.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ img.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ img.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ img.prototype.clearAttributes=function(){}; /** * function click() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ img.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ img.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ img.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ img.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ img.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ img.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ img.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ img.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ img.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ img.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ img.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ img.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ img.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ img.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ img.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ img.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ img.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ img.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ img.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ img.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ img.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ img.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ img.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ img.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ img.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ img.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ img.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ img.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ img.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ img.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ img.prototype.removeExpression=function(sPropertyName){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ img.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ img.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ img.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ img.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ img.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ img.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ img.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ img.prototype.swapNode=function(oNode){}; /** * Property onabort * @type onabort * @returns {onabort}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536785.aspx */ img.prototype.onabort= new onabort(); /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ img.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ img.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ img.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ img.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ img.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ img.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ img.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ img.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ img.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ img.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ img.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ img.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ img.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ img.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ img.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ img.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ img.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ img.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ img.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ img.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ img.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ img.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ img.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ img.prototype.ondrop= new ondrop(); /** * Property onerror * @type onerror * @returns {onerror}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536930.aspx */ img.prototype.onerror= new onerror(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ img.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ img.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ img.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ img.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ img.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ img.prototype.onhelp= new onhelp(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ img.prototype.onload= new onload(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ img.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ img.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ img.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ img.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ img.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ img.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ img.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ img.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ img.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ img.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ img.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ img.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ img.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ img.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ img.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ img.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ img.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ img.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ img.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ img.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ img.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ img.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ img.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ img.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ img.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ img.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf img * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ img.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_implementation.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_implementation.js
deleted file mode 100644
index 58f64bd3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_implementation.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object implementation() * @type implementation * @super Object * @memberOf implementation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535865.aspx */ function implementation(){}; implementation.prototype= new Object(); /** * function hasFeature(sFeature) * @param {hasFeature} sFeature * @memberOf implementation * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536446.aspx */ implementation.prototype.hasFeature=function(sFeature){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_import.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_import.js
deleted file mode 100644
index 9afd5a00..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_import.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * @see http://msdn2.microsoft.com/en-us/library/ms535171.aspx */ function IMPORT(){}; IMPORT.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_imports.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_imports.js
deleted file mode 100644
index ad531f16..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_imports.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object imports() * @type imports * @super Array * @memberOf imports * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358805.aspx */ function imports(){}; imports.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf imports * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ imports.prototype.length=0; /** * function item(vIndex) * @param {Number} vIndex * @memberOf imports * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ imports.prototype.item=function(vIndex){}; /** * function item(vIndex) * @param {Number} vIndex * @memberOf imports * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ imports.prototype.item=function(vIndex){}; /** * Property filters * @type filters * @returns {filters}
- * @memberOf imports * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ imports.prototype.filters= new filters(); /** * function namedItem(sName) * @param {String} sName * @memberOf imports * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ imports.prototype.namedItem=function(sName){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_input.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_input.js
deleted file mode 100644
index 2f340871..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_input.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object input() * @type input * @super Object * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535260.aspx */ function input(){}; input.prototype= new Object(); /** * Property accept * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533060.aspx */ input.prototype.accept=""; /** * Property align * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533066.aspx */ input.prototype.align=""; /** * Property alt * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533073.aspx */ input.prototype.alt=""; /** * Property complete * @type Boolean * @returns {Boolean}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533688.aspx */ input.prototype.complete=false; /** * Property dynsrc * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533742.aspx */ input.prototype.dynsrc=""; /** * Property hspace * @type Number * @returns {Number}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533868.aspx */ input.prototype.hspace=0; /** * Property loop * @type Object * @returns {Object}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534134.aspx */ input.prototype.loop=new Object(); /** * Property lowsrc * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534138.aspx */ input.prototype.lowsrc=""; /** * Property start * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534646.aspx */ input.prototype.start=""; /** * Property useMap * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534711.aspx */ input.prototype.useMap=""; /** * Property value * @type String * @returns {String}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535123.aspx */ input.prototype.value=""; /** * Property vspace * @type Number * @returns {Number}
- * @memberOf input * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535141.aspx */ input.prototype.vspace=0; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ins.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ins.js
deleted file mode 100644
index 13e4acb4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ins.js
+++ /dev/null
@@ -1,84 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ins() * @type ins * @super Object * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535842.aspx */ function ins(){}; ins.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ ins.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ ins.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ ins.prototype.canHaveHTML=false; /** * Property cite * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533558.aspx */ ins.prototype.cite=""; /** * Property className * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ ins.prototype.className=""; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ ins.prototype.contentEditable=""; /** * Property dateTime * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533712.aspx */ ins.prototype.dateTime=""; /** * Property dir * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ ins.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ ins.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ ins.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ ins.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ ins.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ ins.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ ins.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ ins.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ ins.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ ins.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ ins.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ ins.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ ins.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ ins.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ ins.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ ins.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ ins.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ ins.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ ins.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ ins.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ ins.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ ins.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ ins.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ ins.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ ins.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ ins.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ ins.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ ins.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ ins.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ ins.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ ins.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ ins.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ ins.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ ins.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ ins.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ ins.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ ins.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ ins.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ ins.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ ins.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ ins.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ ins.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ ins.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ ins.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ ins.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ ins.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ins.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ ins.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ ins.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ ins.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ ins.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ ins.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ ins.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ins.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ ins.prototype.getAdjacentText=function(sWhere){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ ins.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ ins.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ ins.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ ins.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ ins.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ ins.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ ins.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ ins.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ ins.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ ins.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ ins.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ ins.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ ins.prototype.normalize=function(){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ ins.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ ins.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ ins.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ ins.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ ins.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ ins.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ ins.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ ins.prototype.replaceNode=function(oNewNode){}; /** * function setActive() * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ ins.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ ins.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ ins.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ ins.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ ins.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ ins.prototype.activeElement=new Object(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ ins.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ ins.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ins.prototype.onblur= new onblur(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ ins.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ ins.prototype.ondeactivate= new ondeactivate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ins.prototype.onfocus= new onfocus(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ ins.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ ins.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ ins.prototype.onmovestart= new onmovestart(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ ins.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ ins.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ ins.prototype.onresizestart= new onresizestart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ ins.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ ins.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ ins.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ ins.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ ins.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ ins.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf ins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ ins.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_isindex.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_isindex.js
deleted file mode 100644
index 3ace88bc..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_isindex.js
+++ /dev/null
@@ -1,62 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object isIndex() * @type isIndex * @super Object * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535843.aspx */ function isIndex(){}; isIndex.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ isIndex.prototype.accessKey=""; /** * Property action * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533063.aspx */ isIndex.prototype.action=""; /** * Property form * @type form * @returns {form}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535249.aspx */ isIndex.prototype.form= new form(); /** * Property blockDirection * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ isIndex.prototype.blockDirection=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ isIndex.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ isIndex.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ isIndex.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ isIndex.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ isIndex.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ isIndex.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ isIndex.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ isIndex.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ isIndex.prototype.contentEditable=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ isIndex.prototype.disabled=false; /** * Property form * @type Object * @returns {Object}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ isIndex.prototype.form=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ isIndex.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ isIndex.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ isIndex.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ isIndex.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ isIndex.prototype.isMultiLine=false; /** * Property lang * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ isIndex.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ isIndex.prototype.language=""; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ isIndex.prototype.onOffBehavior=new DABoolean(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ isIndex.prototype.parentElement=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ isIndex.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ isIndex.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ isIndex.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ isIndex.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ isIndex.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ isIndex.prototype.scrollWidth=new Object(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ isIndex.prototype.tabIndex=0; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ isIndex.prototype.tagUrn=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ isIndex.prototype.addBehavior=function(sUrl){}; /** * function blur() * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ isIndex.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ isIndex.prototype.onblur= new onblur(); /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ isIndex.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ isIndex.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ isIndex.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ isIndex.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ isIndex.prototype.onfocus= new onfocus(); /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ isIndex.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ isIndex.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ isIndex.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ isIndex.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ isIndex.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ isIndex.prototype.getClientRects=function(){}; /** * function normalize() * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ isIndex.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ isIndex.prototype.TextNode= new TextNode(); /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ isIndex.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ isIndex.prototype.removeBehavior=function(iID){}; /** * function setActive() * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ isIndex.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ isIndex.prototype.setAttributeNode=function(oSrcAttribute){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ isIndex.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ isIndex.prototype.activeElement=new Object(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ isIndex.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ isIndex.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ isIndex.prototype.onblur= new onblur(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ isIndex.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ isIndex.prototype.ondeactivate= new ondeactivate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ isIndex.prototype.onfocus= new onfocus(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ isIndex.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ isIndex.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ isIndex.prototype.onmovestart= new onmovestart(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ isIndex.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ isIndex.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ isIndex.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ isIndex.prototype.onresizestart= new onresizestart(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf isIndex * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ isIndex.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_kbd.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_kbd.js
deleted file mode 100644
index d8966931..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_kbd.js
+++ /dev/null
@@ -1,128 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object kbd() * @type kbd * @super Object * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535844.aspx */ function kbd(){}; kbd.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ kbd.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ kbd.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ kbd.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ kbd.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ kbd.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ kbd.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ kbd.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ kbd.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ kbd.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ kbd.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ kbd.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ kbd.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ kbd.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ kbd.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ kbd.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ kbd.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ kbd.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ kbd.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ kbd.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ kbd.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ kbd.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ kbd.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ kbd.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ kbd.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ kbd.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ kbd.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ kbd.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ kbd.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ kbd.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ kbd.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ kbd.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ kbd.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ kbd.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ kbd.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ kbd.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ kbd.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ kbd.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ kbd.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ kbd.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ kbd.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ kbd.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ kbd.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ kbd.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ kbd.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ kbd.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ kbd.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ kbd.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ kbd.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ kbd.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ kbd.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ kbd.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ kbd.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ kbd.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ kbd.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ kbd.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ kbd.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ kbd.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ kbd.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ kbd.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ kbd.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ kbd.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ kbd.prototype.clearAttributes=function(){}; /** * function click() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ kbd.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ kbd.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ kbd.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ kbd.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ kbd.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ kbd.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ kbd.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ kbd.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ kbd.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ kbd.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ kbd.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ kbd.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ kbd.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ kbd.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ kbd.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ kbd.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ kbd.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ kbd.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ kbd.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ kbd.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ kbd.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ kbd.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ kbd.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ kbd.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ kbd.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ kbd.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ kbd.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ kbd.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ kbd.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ kbd.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ kbd.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ kbd.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ kbd.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ kbd.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ kbd.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ kbd.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ kbd.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ kbd.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ kbd.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ kbd.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ kbd.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ kbd.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ kbd.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ kbd.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ kbd.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ kbd.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ kbd.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ kbd.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ kbd.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ kbd.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ kbd.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ kbd.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ kbd.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ kbd.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ kbd.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ kbd.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ kbd.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ kbd.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ kbd.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ kbd.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ kbd.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ kbd.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ kbd.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ kbd.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ kbd.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ kbd.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ kbd.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ kbd.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ kbd.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ kbd.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ kbd.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ kbd.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ kbd.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ kbd.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ kbd.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ kbd.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ kbd.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ kbd.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ kbd.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ kbd.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ kbd.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ kbd.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ kbd.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ kbd.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ kbd.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ kbd.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ kbd.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ kbd.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ kbd.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ kbd.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ kbd.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ kbd.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ kbd.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ kbd.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ kbd.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ kbd.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf kbd * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ kbd.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_keycode.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_keycode.js
deleted file mode 100644
index 312ce2af..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_keycode.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object keyCode() * @type keyCode * @super Object * @memberOf keyCode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533927.aspx */ function keyCode(){}; keyCode.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_label.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_label.js
deleted file mode 100644
index 57e9b4f1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_label.js
+++ /dev/null
@@ -1,139 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object label() * @type label * @super Object * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535845.aspx */ function label(){}; label.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ label.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ label.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ label.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ label.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ label.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ label.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ label.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ label.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ label.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ label.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ label.prototype.contentEditable=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ label.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ label.prototype.dataSrc=""; /** * Property dataFormatAs * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533706.aspx */ label.prototype.dataFormatAs=""; /** * Property dir * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ label.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ label.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ label.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ label.prototype.childNodes= new childNodes(); /** * Property form * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ label.prototype.form=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ label.prototype.hideFocus=false; /** * Property htmlFor * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533872.aspx */ label.prototype.htmlFor=""; /** * Property id * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ label.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ label.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ label.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ label.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ label.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ label.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ label.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ label.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ label.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ label.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ label.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ label.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ label.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ label.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ label.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ label.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ label.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ label.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ label.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ label.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ label.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ label.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ label.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ label.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ label.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ label.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ label.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ label.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ label.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ label.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ label.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ label.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ label.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ label.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ label.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ label.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ label.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ label.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ label.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ label.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ label.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ label.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ label.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ label.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ label.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ label.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ label.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ label.prototype.clearAttributes=function(){}; /** * function click() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ label.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ label.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ label.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ label.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ label.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ label.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ label.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ label.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ label.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ label.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ label.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ label.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ label.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ label.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ label.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ label.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ label.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ label.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ label.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ label.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ label.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ label.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ label.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ label.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ label.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ label.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ label.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ label.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ label.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ label.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ label.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ label.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ label.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ label.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ label.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ label.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ label.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ label.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ label.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ label.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ label.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ label.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ label.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ label.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ label.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ label.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ label.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ label.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ label.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ label.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ label.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ label.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ label.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ label.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ label.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ label.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ label.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ label.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ label.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ label.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ label.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ label.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ label.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ label.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ label.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ label.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ label.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ label.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ label.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ label.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ label.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ label.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ label.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ label.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ label.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ label.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ label.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ label.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ label.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ label.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ label.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ label.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ label.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ label.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ label.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ label.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ label.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ label.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ label.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ label.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ label.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ label.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ label.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ label.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ label.prototype.onselectstart= new onselectstart(); /** * Property all * @type all * @returns {all}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ label.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ label.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ label.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ label.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ label.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf label * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ label.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_legend.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_legend.js
deleted file mode 100644
index 53794efb..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_legend.js
+++ /dev/null
@@ -1,129 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object legend() * @type legend * @super Object * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535846.aspx */ function legend(){}; legend.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ legend.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533067.aspx */ legend.prototype.align=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ legend.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ legend.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ legend.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ legend.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ legend.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ legend.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ legend.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ legend.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ legend.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ legend.prototype.contentEditable=""; /** * Property dataFormatAs * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533706.aspx */ legend.prototype.dataFormatAs=""; /** * Property dir * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ legend.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ legend.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ legend.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ legend.prototype.childNodes= new childNodes(); /** * Property form * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ legend.prototype.form=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ legend.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ legend.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ legend.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ legend.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ legend.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ legend.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ legend.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ legend.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ legend.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ legend.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ legend.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ legend.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ legend.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ legend.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ legend.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ legend.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ legend.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ legend.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ legend.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ legend.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ legend.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ legend.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ legend.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ legend.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ legend.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ legend.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ legend.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ legend.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ legend.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ legend.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ legend.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ legend.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ legend.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ legend.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ legend.prototype.scrollWidth=new Object(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ legend.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ legend.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ legend.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ legend.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ legend.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ legend.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ legend.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ legend.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ legend.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ legend.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ legend.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ legend.prototype.clearAttributes=function(){}; /** * function click() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ legend.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ legend.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ legend.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ legend.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ legend.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ legend.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ legend.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ legend.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ legend.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ legend.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ legend.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ legend.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ legend.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ legend.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ legend.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ legend.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ legend.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ legend.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ legend.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ legend.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ legend.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ legend.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ legend.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ legend.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ legend.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ legend.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ legend.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ legend.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ legend.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ legend.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ legend.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ legend.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ legend.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ legend.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ legend.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ legend.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ legend.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ legend.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ legend.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ legend.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ legend.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ legend.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ legend.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ legend.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ legend.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ legend.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ legend.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ legend.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ legend.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ legend.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ legend.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ legend.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ legend.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ legend.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ legend.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ legend.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ legend.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ legend.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ legend.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ legend.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ legend.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ legend.prototype.ondeactivate= new ondeactivate(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ legend.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ legend.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ legend.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ legend.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ legend.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ legend.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ legend.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ legend.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ legend.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ legend.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ legend.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ legend.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ legend.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ legend.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ legend.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ legend.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ legend.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ legend.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ legend.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ legend.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ legend.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ legend.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ legend.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ legend.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ legend.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ legend.prototype.onresizestart= new onresizestart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ legend.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ legend.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ legend.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ legend.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ legend.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ legend.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf legend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ legend.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_li.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_li.js
deleted file mode 100644
index d7ac9926..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_li.js
+++ /dev/null
@@ -1,136 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object li() * @type li * @super Object * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535847.aspx */ function li(){}; li.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ li.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ li.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ li.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ li.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ li.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ li.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ li.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ li.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ li.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ li.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ li.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ li.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ li.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ li.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ li.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ li.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ li.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ li.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ li.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ li.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ li.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ li.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ li.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ li.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ li.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ li.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ li.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ li.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ li.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ li.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ li.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ li.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ li.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ li.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ li.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ li.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ li.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ li.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ li.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ li.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ li.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ li.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ li.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ li.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ li.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ li.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ li.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ li.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ li.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ li.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ li.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ li.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ li.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ li.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ li.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ li.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534691.aspx */ li.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ li.prototype.uniqueID=""; /** * Property value * @type Number * @returns {Number}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535124.aspx */ li.prototype.value=0; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ li.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ li.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ li.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ li.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ li.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ li.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ li.prototype.clearAttributes=function(){}; /** * function click() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ li.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ li.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ li.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ li.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ li.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ li.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ li.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ li.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ li.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ li.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ li.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ li.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ li.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ li.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ li.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ li.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ li.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ li.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ li.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ li.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ li.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ li.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ li.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ li.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ li.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ li.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ li.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ li.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ li.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ li.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ li.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ li.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ li.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ li.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ li.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ li.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ li.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ li.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ li.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ li.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ li.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ li.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ li.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ li.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ li.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ li.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ li.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ li.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ li.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ li.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ li.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ li.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ li.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ li.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ li.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ li.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ li.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ li.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ li.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ li.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ li.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ li.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ li.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ li.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ li.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ li.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ li.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ li.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ li.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ li.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ li.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ li.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ li.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ li.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ li.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ li.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ li.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ li.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ li.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ li.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ li.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ li.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ li.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ li.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ li.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ li.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ li.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ li.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ li.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ li.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ li.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ li.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ li.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ li.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ li.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ li.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ li.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ li.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ li.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ li.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf li * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ li.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_link.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_link.js
deleted file mode 100644
index 6b29ce92..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_link.js
+++ /dev/null
@@ -1,60 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object link() * @type link * @super Object * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535848.aspx */ function link(){}; link.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ link.prototype.canHaveHTML=false; /** * Property charset * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533553.aspx */ link.prototype.charset=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ link.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ link.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ link.prototype.childNodes= new childNodes(); /** * Property href * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533863.aspx */ link.prototype.href=""; /** * Property hreflang * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533787.aspx */ link.prototype.hreflang=""; /** * Property id * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ link.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ link.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ link.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ link.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ link.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ link.prototype.TextRange= new TextRange(); /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ link.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ link.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ link.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ link.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ link.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ link.prototype.nodeValue=new Object(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ link.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ link.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ link.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ link.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ link.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ link.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ link.prototype.readyState=""; /** * Property rel * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534366.aspx */ link.prototype.rel=""; /** * Property rev * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534373.aspx */ link.prototype.rev=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ link.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ link.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ link.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ link.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ link.prototype.tagUrn=""; /** * Property target * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534659.aspx */ link.prototype.target=""; /** * Property type * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534698.aspx */ link.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ link.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ link.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ link.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ link.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ link.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ link.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ link.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ link.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ link.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ link.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ link.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ link.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ link.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ link.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ link.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ link.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ link.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ link.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ link.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ link.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ link.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ link.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ link.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ link.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ link.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ link.prototype.removeBehavior=function(iID){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ link.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ link.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ link.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ link.prototype.swapNode=function(oNode){}; /** * Property onload * @type onload * @returns {onload}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ link.prototype.onload= new onload(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ link.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ link.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ link.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ link.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ link.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ link.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf link * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ link.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_links.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_links.js
deleted file mode 100644
index a6085cd4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_links.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object links() * @type links * @super Array * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537465.aspx */ function links(){}; links.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ links.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ links.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ links.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ links.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ links.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ links.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf links * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ links.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_listing.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_listing.js
deleted file mode 100644
index 4f0b716a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_listing.js
+++ /dev/null
@@ -1,131 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object listing() * @type listing * @super Object * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535849.aspx */ function listing(){}; listing.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ listing.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ listing.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ listing.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ listing.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ listing.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ listing.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ listing.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ listing.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ listing.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ listing.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ listing.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ listing.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ listing.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ listing.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ listing.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ listing.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ listing.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ listing.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ listing.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ listing.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ listing.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ listing.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ listing.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ listing.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ listing.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ listing.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ listing.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ listing.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ listing.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ listing.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ listing.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ listing.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ listing.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ listing.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ listing.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ listing.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ listing.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ listing.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ listing.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ listing.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ listing.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ listing.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ listing.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ listing.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ listing.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ listing.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ listing.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ listing.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ listing.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ listing.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ listing.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ listing.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ listing.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ listing.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ listing.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ listing.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ listing.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ listing.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ listing.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ listing.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ listing.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ listing.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ listing.prototype.clearAttributes=function(){}; /** * function click() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ listing.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ listing.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ listing.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ listing.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ listing.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ listing.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ listing.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ listing.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ listing.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ listing.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ listing.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ listing.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ listing.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ listing.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ listing.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ listing.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ listing.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ listing.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ listing.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ listing.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ listing.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ listing.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ listing.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ listing.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ listing.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ listing.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ listing.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ listing.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ listing.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ listing.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ listing.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ listing.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ listing.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ listing.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ listing.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ listing.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ listing.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ listing.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ listing.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ listing.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ listing.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ listing.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ listing.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ listing.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ listing.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ listing.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ listing.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ listing.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ listing.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ listing.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ listing.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ listing.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ listing.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ listing.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ listing.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ listing.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ listing.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ listing.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ listing.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ listing.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ listing.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ listing.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ listing.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ listing.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ listing.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ listing.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ listing.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ listing.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ listing.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ listing.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ listing.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ listing.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ listing.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ listing.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ listing.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ listing.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ listing.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ listing.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ listing.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ listing.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ listing.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ listing.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ listing.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ listing.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ listing.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ listing.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ listing.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ listing.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ listing.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ listing.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ listing.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ listing.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ listing.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ listing.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ listing.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ listing.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ listing.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ listing.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf listing * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ listing.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_location.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_location.js
deleted file mode 100644
index 301a5adb..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_location.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object location() * @type location * @super Object * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535866.aspx */ function location(){}; location.prototype= new Object(); /** * Property hash * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533775.aspx */ location.prototype.hash=""; /** * Property href * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533863.aspx */ location.prototype.href=""; /** * Property host * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533784.aspx */ location.prototype.host=""; /** * Property hostname * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533785.aspx */ location.prototype.hostname=""; /** * Property port * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534342.aspx */ location.prototype.port=""; /** * Property href * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533867.aspx */ location.prototype.href=""; /** * Property pathname * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534332.aspx */ location.prototype.pathname=""; /** * Property protocol * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534353.aspx */ location.prototype.protocol=""; /** * Property search * @type String * @returns {String}
- * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534620.aspx */ location.prototype.search=""; /** * function assign(sURL) * @param {String} sURL * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536342.aspx */ location.prototype.assign=function(sURL){}; /** * function assign(sURL) * @param {String} sURL * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536342.aspx */ location.prototype.assign=function(sURL){}; /** * function reload(bReloadSource) * @param {Boolean} bReloadSource * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536691.aspx */ location.prototype.reload=function(bReloadSource){}; /** * function replace(sURL) * @param {String} sURL * @memberOf location * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536712.aspx */ location.prototype.replace=function(sURL){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_map.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_map.js
deleted file mode 100644
index 0469b180..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_map.js
+++ /dev/null
@@ -1,103 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object map() * @type map * @super Object * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535850.aspx */ function map(){}; map.prototype= new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ map.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ map.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ map.prototype.className=""; /** * Property dir * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ map.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ map.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ map.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ map.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ map.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ map.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ map.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ map.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ map.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ map.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ map.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ map.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ map.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ map.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ map.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ map.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ map.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ map.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ map.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ map.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ map.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ map.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ map.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ map.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ map.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ map.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ map.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ map.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ map.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ map.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ map.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ map.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ map.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ map.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ map.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ map.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ map.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ map.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ map.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ map.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ map.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ map.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ map.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ map.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ map.prototype.clearAttributes=function(){}; /** * function click() * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ map.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ map.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ map.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ map.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ map.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ map.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ map.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ map.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ map.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ map.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ map.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ map.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ map.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ map.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ map.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ map.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ map.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ map.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ map.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ map.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ map.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ map.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ map.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ map.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ map.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ map.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ map.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ map.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ map.prototype.removeChild=function(oNode){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ map.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ map.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ map.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ map.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ map.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ map.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ map.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ map.prototype.setCapture=function(bContainerCapture){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ map.prototype.swapNode=function(oNode){}; /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ map.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ map.prototype.activeElement=new Object(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ map.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ map.prototype.onbeforepaste= new onbeforepaste(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ map.prototype.onclick= new onclick(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ map.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ map.prototype.ondblclick= new ondblclick(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ map.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ map.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ map.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ map.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ map.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ map.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ map.prototype.ondrop= new ondrop(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ map.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ map.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ map.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ map.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ map.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ map.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ map.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ map.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ map.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ map.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ map.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ map.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ map.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ map.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ map.prototype.onmousewheel= new onmousewheel(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ map.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ map.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ map.prototype.onreadystatechange= new onreadystatechange(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ map.prototype.onscroll= new onscroll(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ map.prototype.onselectstart= new onselectstart(); /** * Property all * @type all * @returns {all}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ map.prototype.all= new all(); /** * Property areas * @type areas * @returns {areas}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537437.aspx */ map.prototype.areas= new areas(); /** * Property area * @type area * @returns {area}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535185.aspx */ map.prototype.area= new area(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ map.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ map.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ map.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ map.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf map * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ map.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_marquee.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_marquee.js
deleted file mode 100644
index 06242f4d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_marquee.js
+++ /dev/null
@@ -1,154 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object marquee() * @type marquee * @super Object * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535851.aspx */ function marquee(){}; marquee.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ marquee.prototype.accessKey=""; /** * Property behavior * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533502.aspx */ marquee.prototype.behavior=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ marquee.prototype.bgColor=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ marquee.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ marquee.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ marquee.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ marquee.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ marquee.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ marquee.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ marquee.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ marquee.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ marquee.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ marquee.prototype.contentEditable=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ marquee.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ marquee.prototype.dataSrc=""; /** * Property dataFormatAs * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533706.aspx */ marquee.prototype.dataFormatAs=""; /** * Property dir * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ marquee.prototype.dir=""; /** * Property direction * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533729.aspx */ marquee.prototype.direction=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ marquee.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ marquee.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ marquee.prototype.childNodes= new childNodes(); /** * Property height * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ marquee.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ marquee.prototype.hideFocus=false; /** * Property hspace * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533868.aspx */ marquee.prototype.hspace=0; /** * Property id * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ marquee.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ marquee.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ marquee.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ marquee.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ marquee.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ marquee.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ marquee.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ marquee.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ marquee.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ marquee.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ marquee.prototype.lastChild=new Object(); /** * Property loop * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534135.aspx */ marquee.prototype.loop=0; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ marquee.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ marquee.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ marquee.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ marquee.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ marquee.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ marquee.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ marquee.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ marquee.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ marquee.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ marquee.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ marquee.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ marquee.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ marquee.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ marquee.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ marquee.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ marquee.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ marquee.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ marquee.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ marquee.prototype.scopeName=""; /** * Property scrollAmount * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534394.aspx */ marquee.prototype.scrollAmount=0; /** * Property scrollDelay * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534614.aspx */ marquee.prototype.scrollDelay=0; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ marquee.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ marquee.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ marquee.prototype.scrollTop=0; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ marquee.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ marquee.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ marquee.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ marquee.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ marquee.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ marquee.prototype.title=""; /** * Property trueSpeed * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534689.aspx */ marquee.prototype.trueSpeed=false; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ marquee.prototype.uniqueID=""; /** * Property vspace * @type Number * @returns {Number}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535141.aspx */ marquee.prototype.vspace=0; /** * Property width * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ marquee.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ marquee.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ marquee.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ marquee.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ marquee.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ marquee.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ marquee.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ marquee.prototype.clearAttributes=function(){}; /** * function click() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ marquee.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ marquee.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ marquee.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ marquee.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ marquee.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ marquee.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ marquee.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ marquee.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ marquee.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ marquee.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ marquee.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ marquee.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ marquee.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ marquee.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ marquee.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ marquee.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ marquee.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ marquee.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ marquee.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ marquee.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ marquee.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ marquee.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ marquee.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ marquee.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ marquee.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ marquee.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ marquee.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ marquee.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ marquee.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ marquee.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ marquee.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ marquee.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ marquee.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ marquee.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ marquee.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ marquee.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ marquee.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ marquee.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ marquee.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ marquee.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ marquee.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ marquee.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ marquee.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function start() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536767.aspx */ marquee.prototype.start=function(){}; /** * function stop() * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536769.aspx */ marquee.prototype.stop=function(){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ marquee.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ marquee.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ marquee.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ marquee.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ marquee.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ marquee.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ marquee.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ marquee.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ marquee.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ marquee.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ marquee.prototype.onblur= new onblur(); /** * Property onbounce * @type onbounce * @returns {onbounce}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536910.aspx */ marquee.prototype.onbounce= new onbounce(); /** * Property behavior * @type String * @returns {String}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533502.aspx */ marquee.prototype.behavior=""; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ marquee.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ marquee.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ marquee.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ marquee.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ marquee.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ marquee.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ marquee.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ marquee.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ marquee.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ marquee.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ marquee.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ marquee.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ marquee.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ marquee.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ marquee.prototype.onfilterchange= new onfilterchange(); /** * Property onfinish * @type onfinish * @returns {onfinish}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536933.aspx */ marquee.prototype.onfinish= new onfinish(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ marquee.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ marquee.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ marquee.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ marquee.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ marquee.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ marquee.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ marquee.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ marquee.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ marquee.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ marquee.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ marquee.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ marquee.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ marquee.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ marquee.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ marquee.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ marquee.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ marquee.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ marquee.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ marquee.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ marquee.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ marquee.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ marquee.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ marquee.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ marquee.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ marquee.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ marquee.prototype.onscroll= new onscroll(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ marquee.prototype.onselectstart= new onselectstart(); /** * Property onstart * @type onstart * @returns {onstart}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536970.aspx */ marquee.prototype.onstart= new onstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ marquee.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ marquee.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ marquee.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ marquee.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ marquee.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ marquee.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ marquee.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf marquee * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ marquee.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_menu.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_menu.js
deleted file mode 100644
index 6bdaf688..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_menu.js
+++ /dev/null
@@ -1,131 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object menu() * @type menu * @super Object * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535852.aspx */ function menu(){}; menu.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ menu.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ menu.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ menu.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ menu.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ menu.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ menu.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ menu.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ menu.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ menu.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ menu.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ menu.prototype.clientWidth=0; /** * Property compact * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533585.aspx */ menu.prototype.compact=false; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ menu.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ menu.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ menu.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ menu.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ menu.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ menu.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ menu.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ menu.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ menu.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ menu.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ menu.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ menu.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ menu.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ menu.prototype.lang=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ menu.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ menu.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ menu.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ menu.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ menu.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ menu.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ menu.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ menu.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ menu.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ menu.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ menu.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ menu.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ menu.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ menu.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ menu.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ menu.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ menu.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ menu.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ menu.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ menu.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ menu.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ menu.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ menu.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ menu.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ menu.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ menu.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ menu.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ menu.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ menu.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ menu.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ menu.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ menu.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ menu.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ menu.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ menu.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ menu.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ menu.prototype.clearAttributes=function(){}; /** * function click() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ menu.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ menu.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ menu.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ menu.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ menu.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ menu.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ menu.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ menu.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ menu.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ menu.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ menu.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ menu.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ menu.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ menu.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ menu.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ menu.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ menu.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ menu.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ menu.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ menu.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ menu.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ menu.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ menu.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ menu.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ menu.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ menu.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ menu.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ menu.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ menu.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ menu.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ menu.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ menu.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ menu.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ menu.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ menu.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ menu.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ menu.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ menu.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ menu.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ menu.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ menu.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ menu.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ menu.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ menu.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ menu.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ menu.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ menu.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ menu.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ menu.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ menu.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ menu.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ menu.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ menu.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ menu.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ menu.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ menu.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ menu.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ menu.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ menu.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ menu.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ menu.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ menu.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ menu.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ menu.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ menu.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ menu.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ menu.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ menu.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ menu.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ menu.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ menu.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ menu.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ menu.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ menu.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ menu.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ menu.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ menu.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ menu.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ menu.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ menu.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ menu.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ menu.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ menu.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ menu.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ menu.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ menu.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ menu.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ menu.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ menu.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ menu.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ menu.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ menu.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ menu.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ menu.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ menu.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ menu.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ menu.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ menu.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf menu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ menu.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_meta.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_meta.js
deleted file mode 100644
index fd18cfc8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_meta.js
+++ /dev/null
@@ -1,28 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object meta() * @type meta * @super Object * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535853.aspx */ function meta(){}; meta.prototype= new Object(); /** * Property charset * @type String * @returns {String}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533553.aspx */ meta.prototype.charset=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ meta.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ meta.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ meta.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ meta.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ meta.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ meta.prototype.clientWidth=0; /** * Property content * @type String * @returns {String}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533689.aspx */ meta.prototype.content=""; /** * Property httpEquiv * @type String * @returns {String}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533876.aspx */ meta.prototype.httpEquiv=""; /** * Property name * @type String * @returns {String}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534183.aspx */ meta.prototype.name=""; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ meta.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ meta.prototype.TextRange= new TextRange(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ meta.prototype.parentTextEdit=new Object(); /** * Property scheme * @type String * @returns {String}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534386.aspx */ meta.prototype.scheme=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ meta.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ meta.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ meta.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ meta.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ meta.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ meta.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ meta.prototype.tagName=""; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ meta.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ meta.prototype.contains=function(oElement){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ meta.prototype.dragDrop=function(){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ meta.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ meta.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ meta.prototype.setAttribute=function(sName,vValue){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf meta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ meta.prototype.onlayoutcomplete= new onlayoutcomplete(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_moreinfo.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_moreinfo.js
deleted file mode 100644
index 1541ecae..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_moreinfo.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object MoreInfo() * @type MoreInfo * @super Object * @memberOf MoreInfo * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533294.aspx */ function MoreInfo(){}; MoreInfo.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespace.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespace.js
deleted file mode 100644
index cdfdb6b8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespace.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object namespace() * @type namespace * @super Object * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535854.aspx */ function namespace(){}; namespace.prototype= new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534185.aspx */ namespace.prototype.name=""; /** * Property readyState * @type Object * @returns {Object}
- * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ namespace.prototype.readyState=new Object(); /** * Property urn * @type String * @returns {String}
- * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534710.aspx */ namespace.prototype.urn=""; /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ namespace.prototype.onreadystatechange= new onreadystatechange(); /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ namespace.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ namespace.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function doImport(sUrl) * @param {String} sUrl * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536412.aspx */ namespace.prototype.doImport=function(sUrl){}; /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf namespace * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ namespace.prototype.onreadystatechange= new onreadystatechange(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespaces.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespaces.js
deleted file mode 100644
index c56b4baf..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_namespaces.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object namespaces() * @type namespaces * @super Array * @memberOf namespaces * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537470.aspx */ function namespaces(){}; namespaces.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf namespaces * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ namespaces.prototype.length=0; /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf namespaces * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535932.aspx */ namespaces.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf namespaces * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535932.aspx */ namespaces.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf namespaces * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536464.aspx */ namespaces.prototype.TF-8"= new TF-8"(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_navigator.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_navigator.js
deleted file mode 100644
index 67440e74..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_navigator.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object navigator() * @type navigator * @super Object * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535867.aspx */ function navigator(){}; navigator.prototype= new Object(); /** * Property appCodeName * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533077.aspx */ navigator.prototype.appCodeName=""; /** * Property appMinorVersion * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533078.aspx */ navigator.prototype.appMinorVersion=""; /** * Property appName * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533079.aspx */ navigator.prototype.appName=""; /** * Property appVersion * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533080.aspx */ navigator.prototype.appVersion=""; /** * Property browserLanguage * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533542.aspx */ navigator.prototype.browserLanguage=""; /** * Property cookieEnabled * @type Boolean * @returns {Boolean}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533694.aspx */ navigator.prototype.cookieEnabled=false; /** * Property cpuClass * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533697.aspx */ navigator.prototype.cpuClass=""; /** * Property onLine * @type Boolean * @returns {Boolean}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534307.aspx */ navigator.prototype.onLine=false; /** * Property platform * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534340.aspx */ navigator.prototype.platform=""; /** * Property systemLanguage * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534653.aspx */ navigator.prototype.systemLanguage=""; /** * Property userAgent * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534712.aspx */ navigator.prototype.userAgent=""; /** * Property userLanguage * @type String * @returns {String}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534713.aspx */ navigator.prototype.userLanguage=""; /** * Property plugins * @type plugins * @returns {plugins}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537477.aspx */ navigator.prototype.plugins= new plugins(); /** * function javaEnabled() * @type Boolean * @returns {Boolean}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536610.aspx */ navigator.prototype.javaEnabled=function(){}; /** * function taintEnabled() * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536778.aspx */ navigator.prototype.taintEnabled=function(){}; /** * Property userProfile * @type userProfile * @returns {userProfile}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535915.aspx */ navigator.prototype.userProfile= new userProfile(); /** * Property plugins * @type plugins * @returns {plugins}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537477.aspx */ navigator.prototype.plugins= new plugins(); /** * Property embed * @type embed * @returns {embed}
- * @memberOf navigator * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535245.aspx */ navigator.prototype.embed= new embed(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextid.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextid.js
deleted file mode 100644
index 3ea77998..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextid.js
+++ /dev/null
@@ -1,80 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object nextID() * @type nextID * @super Object * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535855.aspx */ function nextID(){}; nextID.prototype= new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ nextID.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ nextID.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ nextID.prototype.className=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ nextID.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ nextID.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ nextID.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ nextID.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ nextID.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ nextID.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ nextID.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ nextID.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ nextID.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ nextID.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ nextID.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ nextID.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ nextID.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ nextID.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ nextID.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ nextID.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ nextID.prototype.nodeValue=new Object(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ nextID.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ nextID.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ nextID.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ nextID.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ nextID.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ nextID.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ nextID.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ nextID.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ nextID.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ nextID.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ nextID.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ nextID.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ nextID.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ nextID.prototype.tagUrn=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ nextID.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ nextID.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ nextID.prototype.applyElement=function(oNewElement){}; /** * function clearAttributes() * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ nextID.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ nextID.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ nextID.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ nextID.prototype.contains=function(oElement){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ nextID.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ nextID.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ nextID.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ nextID.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ nextID.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ nextID.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ nextID.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ nextID.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ nextID.prototype.getClientRects=function(){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ nextID.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ nextID.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ nextID.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ nextID.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ nextID.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ nextID.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ nextID.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ nextID.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ nextID.prototype.removeChild=function(oNode){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ nextID.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ nextID.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ nextID.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ nextID.prototype.replaceNode=function(oNewNode){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ nextID.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ nextID.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ nextID.prototype.swapNode=function(oNode){}; /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ nextID.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ nextID.prototype.activeElement=new Object(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ nextID.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ nextID.prototype.onbeforepaste= new onbeforepaste(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ nextID.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ nextID.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ nextID.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ nextID.prototype.ondblclick= new ondblclick(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ nextID.prototype.ondragstart= new ondragstart(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ nextID.prototype.onfilterchange= new onfilterchange(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ nextID.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ nextID.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ nextID.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ nextID.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ nextID.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ nextID.prototype.onkeyup= new onkeyup(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ nextID.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ nextID.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ nextID.prototype.onmousemove= new onmousemove(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ nextID.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ nextID.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ nextID.prototype.onmousewheel= new onmousewheel(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ nextID.prototype.onpaste= new onpaste(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ nextID.prototype.onreadystatechange= new onreadystatechange(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ nextID.prototype.onselectstart= new onselectstart(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ nextID.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ nextID.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ nextID.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ nextID.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ nextID.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf nextID * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ nextID.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextpage.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextpage.js
deleted file mode 100644
index 61ce678b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nextpage.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object nextPage() * @type nextPage * @super Object * @memberOf nextPage * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534188.aspx */ function nextPage(){}; nextPage.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nobr.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nobr.js
deleted file mode 100644
index 0d7199f0..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_nobr.js
+++ /dev/null
@@ -1,91 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object noBR() * @type noBR * @super Object * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535856.aspx */ function noBR(){}; noBR.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ noBR.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ noBR.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ noBR.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ noBR.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ noBR.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ noBR.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ noBR.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ noBR.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ noBR.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ noBR.prototype.dir=""; /** * Property height * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ noBR.prototype.height=new Object(); /** * Property id * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ noBR.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ noBR.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ noBR.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ noBR.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ noBR.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ noBR.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ noBR.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ noBR.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ noBR.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ noBR.prototype.language=""; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ noBR.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ noBR.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ noBR.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ noBR.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ noBR.prototype.outerText=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ noBR.prototype.parentElement=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ noBR.prototype.parentTextEdit=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ noBR.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ noBR.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ noBR.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ noBR.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ noBR.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ noBR.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ noBR.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ noBR.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ noBR.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ noBR.prototype.tagUrn=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ noBR.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ noBR.prototype.addBehavior=function(sUrl){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ noBR.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function click() * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ noBR.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ noBR.prototype.onclick= new onclick(); /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ noBR.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ noBR.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ noBR.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ noBR.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ noBR.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ noBR.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ noBR.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ noBR.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ noBR.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ noBR.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ noBR.prototype.getClientRects=function(){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ noBR.prototype.getExpression=function(sPropertyName){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ noBR.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ noBR.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function normalize() * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ noBR.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ noBR.prototype.TextNode= new TextNode(); /** * function releaseCapture() * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ noBR.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ noBR.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ noBR.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ noBR.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ noBR.prototype.removeExpression=function(sPropertyName){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ noBR.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ noBR.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ noBR.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ noBR.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ noBR.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ noBR.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ noBR.prototype.activeElement=new Object(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ noBR.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ noBR.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ noBR.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ noBR.prototype.onbeforepaste= new onbeforepaste(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ noBR.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ noBR.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ noBR.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ noBR.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ noBR.prototype.ondblclick= new ondblclick(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ noBR.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ noBR.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ noBR.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ noBR.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ noBR.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ noBR.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ noBR.prototype.ondrop= new ondrop(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ noBR.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ noBR.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ noBR.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ noBR.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ noBR.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ noBR.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ noBR.prototype.onlosecapture= new onlosecapture(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ noBR.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ noBR.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ noBR.prototype.onmousemove= new onmousemove(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ noBR.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ noBR.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ noBR.prototype.onmousewheel= new onmousewheel(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ noBR.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ noBR.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ noBR.prototype.onreadystatechange= new onreadystatechange(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ noBR.prototype.onselectstart= new onselectstart(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf noBR * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ noBR.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noframes.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noframes.js
deleted file mode 100644
index 62ec881a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noframes.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object noFrames() * @type noFrames * @super Object * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535857.aspx */ function noFrames(){}; noFrames.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ noFrames.prototype.canHaveHTML=false; /** * Property id * @type String * @returns {String}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ noFrames.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ noFrames.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ noFrames.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ noFrames.prototype.isMultiLine=false; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ noFrames.prototype.parentElement=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ noFrames.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ noFrames.prototype.scopeName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ noFrames.prototype.tagUrn=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ noFrames.prototype.addBehavior=function(sUrl){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ noFrames.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ noFrames.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ noFrames.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ noFrames.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ noFrames.prototype.name=""; /** * function normalize() * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ noFrames.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ noFrames.prototype.TextNode= new TextNode(); /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ noFrames.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ noFrames.prototype.removeBehavior=function(iID){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ noFrames.prototype.setAttributeNode=function(oSrcAttribute){}; /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ noFrames.prototype.onreadystatechange= new onreadystatechange(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf noFrames * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ noFrames.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noscript.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noscript.js
deleted file mode 100644
index 23daad5c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_noscript.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object noScript() * @type noScript * @super Object * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535858.aspx */ function noScript(){}; noScript.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ noScript.prototype.canHaveHTML=false; /** * Property id * @type String * @returns {String}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ noScript.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ noScript.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ noScript.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ noScript.prototype.isMultiLine=false; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ noScript.prototype.parentElement=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ noScript.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ noScript.prototype.scopeName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ noScript.prototype.tagUrn=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ noScript.prototype.addBehavior=function(sUrl){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ noScript.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ noScript.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ noScript.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ noScript.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ noScript.prototype.name=""; /** * function normalize() * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ noScript.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ noScript.prototype.TextNode= new TextNode(); /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ noScript.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ noScript.prototype.removeBehavior=function(iID){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ noScript.prototype.setAttributeNode=function(oSrcAttribute){}; /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ noScript.prototype.onreadystatechange= new onreadystatechange(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf noScript * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ noScript.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_object.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_object.js
deleted file mode 100644
index d2566119..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_object.js
+++ /dev/null
@@ -1,134 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object object() * @type object * @super Object * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535859.aspx */ function object(){}; object.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ object.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533066.aspx */ object.prototype.align=""; /** * Property alt * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533073.aspx */ object.prototype.alt=""; /** * Property altHTML * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533074.aspx */ object.prototype.altHTML=""; /** * Property archive * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533081.aspx */ object.prototype.archive=""; /** * Property BaseHref * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533501.aspx */ object.prototype.BaseHref=""; /** * Property href * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533865.aspx */ object.prototype.href=""; /** * Property base * @type base * @returns {base}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535191.aspx */ object.prototype.base= new base(); /** * Property border * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533534.aspx */ object.prototype.border=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ object.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ object.prototype.canHaveHTML=false; /** * Property classid * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533559.aspx */ object.prototype.classid=""; /** * Property className * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ object.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ object.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ object.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ object.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ object.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ object.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ object.prototype.clientWidth=0; /** * Property code * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533575.aspx */ object.prototype.code=""; /** * Property codeBase * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533576.aspx */ object.prototype.codeBase=""; /** * Property codeType * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533577.aspx */ object.prototype.codeType=""; /** * Property data * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533702.aspx */ object.prototype.data=""; /** * Property declare * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533713.aspx */ object.prototype.declare=false; /** * Property dir * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ object.prototype.dir=""; /** * Property form * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ object.prototype.form=new Object(); /** * Property height * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ object.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ object.prototype.hideFocus=false; /** * Property hspace * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533868.aspx */ object.prototype.hspace=0; /** * Property id * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ object.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ object.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ object.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ object.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ object.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ object.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ object.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ object.prototype.language=""; /** * Property name * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ object.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ object.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ object.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ object.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ object.prototype.nodeValue=new Object(); /** * Property object * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534197.aspx */ object.prototype.object=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ object.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ object.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ object.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ object.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ object.prototype.outerText=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ object.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ object.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ object.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ object.prototype.previousSibling=new Object(); /** * Property readyState * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534360.aspx */ object.prototype.readyState=0; /** * Property recordset * @type recordset * @returns {recordset}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534364.aspx */ object.prototype.recordset= new recordset(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ object.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ object.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ object.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ object.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ object.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ object.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ object.prototype.all= new all(); /** * Property standby * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534644.aspx */ object.prototype.standby=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ object.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ object.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ object.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ object.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534698.aspx */ object.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ object.prototype.uniqueID=""; /** * Property useMap * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534711.aspx */ object.prototype.useMap=""; /** * Property vspace * @type Number * @returns {Number}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535141.aspx */ object.prototype.vspace=0; /** * Property width * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ object.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ object.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ object.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ object.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ object.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ object.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ object.prototype.clearAttributes=function(){}; /** * function click() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ object.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ object.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ object.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ object.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ object.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ object.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ object.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ object.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ object.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ object.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ object.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ object.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ object.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ object.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ object.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ object.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ object.prototype.getClientRects=function(){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ object.prototype.getExpression=function(sPropertyName){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ object.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ object.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ object.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function namedRecordset(sQualifier,sSubChapter) * @param {String} sQualifier * @param {String} sSubChapter * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536636.aspx */ object.prototype.namedRecordset=function(sQualifier,sSubChapter){}; /** * function normalize() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ object.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ object.prototype.TextNode= new TextNode(); /** * function releaseCapture() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ object.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ object.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ object.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ object.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ object.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ object.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ object.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ object.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ object.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ object.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ object.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ object.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ object.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ object.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ object.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ object.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ object.prototype.activeElement=new Object(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ object.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ object.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ object.prototype.onblur= new onblur(); /** * Property oncellchange * @type oncellchange * @returns {oncellchange}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536911.aspx */ object.prototype.oncellchange= new oncellchange(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ object.prototype.onclick= new onclick(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ object.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondataavailable * @type ondataavailable * @returns {ondataavailable}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536918.aspx */ object.prototype.ondataavailable= new ondataavailable(); /** * Property ondatasetchanged * @type ondatasetchanged * @returns {ondatasetchanged}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536919.aspx */ object.prototype.ondatasetchanged= new ondatasetchanged(); /** * Property ondatasetcomplete * @type ondatasetcomplete * @returns {ondatasetcomplete}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536920.aspx */ object.prototype.ondatasetcomplete= new ondatasetcomplete(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ object.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ object.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ object.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ object.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ object.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ object.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ object.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ object.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ object.prototype.ondrop= new ondrop(); /** * Property onerror * @type onerror * @returns {onerror}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536930.aspx */ object.prototype.onerror= new onerror(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ object.prototype.onfocus= new onfocus(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ object.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ object.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ object.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ object.prototype.onlosecapture= new onlosecapture(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ object.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ object.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ object.prototype.onmovestart= new onmovestart(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ object.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ object.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ object.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ object.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ object.prototype.onresizestart= new onresizestart(); /** * Property onrowenter * @type onrowenter * @returns {onrowenter}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536962.aspx */ object.prototype.onrowenter= new onrowenter(); /** * Property onrowexit * @type onrowexit * @returns {onrowexit}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536963.aspx */ object.prototype.onrowexit= new onrowexit(); /** * Property onrowsdelete * @type onrowsdelete * @returns {onrowsdelete}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536964.aspx */ object.prototype.onrowsdelete= new onrowsdelete(); /** * Property onrowsinserted * @type onrowsinserted * @returns {onrowsinserted}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536965.aspx */ object.prototype.onrowsinserted= new onrowsinserted(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ object.prototype.onscroll= new onscroll(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ object.prototype.onselectstart= new onselectstart(); /** * Property all * @type all * @returns {all}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ object.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ object.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf object * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ object.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsetx.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsetx.js
deleted file mode 100644
index 053efc9d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsetx.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object offsetX() * @type offsetX * @super Object * @memberOf offsetX * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534305.aspx */ function offsetX(){}; offsetX.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsety.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsety.js
deleted file mode 100644
index b594a2ed..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_offsety.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object offsetY() * @type offsetY * @super Object * @memberOf offsetY * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534306.aspx */ function offsetY(){}; offsetY.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ol.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ol.js
deleted file mode 100644
index ccd33bc0..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ol.js
+++ /dev/null
@@ -1,137 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ol() * @type ol * @super Object * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535875.aspx */ function ol(){}; ol.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ ol.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ ol.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ ol.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ ol.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ ol.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ ol.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ ol.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ ol.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ ol.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ ol.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ ol.prototype.clientWidth=0; /** * Property compact * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533585.aspx */ ol.prototype.compact=false; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ ol.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ ol.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ ol.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ ol.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ ol.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ ol.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ ol.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ ol.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ ol.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ ol.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ ol.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ ol.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ ol.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ ol.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ ol.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ ol.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ ol.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ ol.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ ol.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ ol.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ ol.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ ol.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ ol.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ ol.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ ol.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ ol.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ ol.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ ol.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ ol.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ ol.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ ol.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ ol.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ ol.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ ol.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ ol.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ ol.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ ol.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ ol.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ ol.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ ol.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ ol.prototype.all= new all(); /** * Property start * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534645.aspx */ ol.prototype.start=0; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ ol.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ ol.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ ol.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ ol.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534691.aspx */ ol.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ ol.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ ol.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ ol.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ ol.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ ol.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ ol.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ol.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ ol.prototype.clearAttributes=function(){}; /** * function click() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ ol.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ ol.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ ol.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ ol.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ ol.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ ol.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ ol.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ ol.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ ol.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ol.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ ol.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ ol.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ ol.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ ol.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ ol.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ ol.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ ol.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ ol.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ ol.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ ol.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ ol.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ ol.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ ol.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ ol.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ ol.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ ol.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ ol.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ ol.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ ol.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ ol.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ ol.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ ol.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ ol.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ ol.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ ol.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ ol.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ ol.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ ol.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ ol.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ ol.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ ol.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ ol.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ ol.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ ol.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ ol.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ ol.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ ol.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ ol.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ ol.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ ol.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ ol.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ ol.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ol.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ ol.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ ol.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ ol.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ ol.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ ol.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ ol.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ ol.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ ol.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ ol.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ ol.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ ol.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ ol.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ ol.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ ol.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ol.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ ol.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ ol.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ ol.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ ol.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ ol.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ ol.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ ol.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ ol.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ ol.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ ol.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ ol.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ ol.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ ol.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ ol.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ ol.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ ol.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ ol.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ ol.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ ol.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ ol.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ ol.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ ol.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ ol.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ ol.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ ol.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ ol.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ ol.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ ol.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ ol.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ ol.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ ol.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ ol.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf ol * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ ol.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onabort.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onabort.js
deleted file mode 100644
index 2aabff4d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onabort.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onabort() * @type onabort * @super Object * @memberOf onabort * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536785.aspx */ function onabort(){}; onabort.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onactivate.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onactivate.js
deleted file mode 100644
index 4273448c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onactivate.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onactivate() * @type onactivate * @super Object * @memberOf onactivate * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ function onactivate(){}; onactivate.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterprint.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterprint.js
deleted file mode 100644
index afa2d628..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterprint.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onafterprint() * @type onafterprint * @super Object * @memberOf onafterprint * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536788.aspx */ function onafterprint(){}; onafterprint.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterupdate.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterupdate.js
deleted file mode 100644
index 95d29765..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onafterupdate.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onafterupdate() * @type onafterupdate * @super Object * @memberOf onafterupdate * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ function onafterupdate(){}; onafterupdate.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeactivate.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeactivate.js
deleted file mode 100644
index b527aa73..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeactivate.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforeactivate() * @type onbeforeactivate * @super Object * @memberOf onbeforeactivate * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ function onbeforeactivate(){}; onbeforeactivate.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecopy.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecopy.js
deleted file mode 100644
index 3d1f7865..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecopy.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforecopy() * @type onbeforecopy * @super Object * @memberOf onbeforecopy * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ function onbeforecopy(){}; onbeforecopy.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecut.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecut.js
deleted file mode 100644
index ec824dba..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforecut.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforecut() * @type onbeforecut * @super Object * @memberOf onbeforecut * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ function onbeforecut(){}; onbeforecut.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforedeactivate.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforedeactivate.js
deleted file mode 100644
index fab9035d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforedeactivate.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforedeactivate() * @type onbeforedeactivate * @super Object * @memberOf onbeforedeactivate * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ function onbeforedeactivate(){}; onbeforedeactivate.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeeditfocus.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeeditfocus.js
deleted file mode 100644
index 4d45a673..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeeditfocus.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforeeditfocus() * @type onbeforeeditfocus * @super Object * @memberOf onbeforeeditfocus * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ function onbeforeeditfocus(){}; onbeforeeditfocus.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforepaste.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforepaste.js
deleted file mode 100644
index b301298e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforepaste.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforepaste() * @type onbeforepaste * @super Object * @memberOf onbeforepaste * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ function onbeforepaste(){}; onbeforepaste.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeprint.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeprint.js
deleted file mode 100644
index af68a4dd..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeprint.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforeprint() * @type onbeforeprint * @super Object * @memberOf onbeforeprint * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536906.aspx */ function onbeforeprint(){}; onbeforeprint.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeunload.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeunload.js
deleted file mode 100644
index 272a7136..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeunload.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforeunload() * @type onbeforeunload * @super Object * @memberOf onbeforeunload * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536907.aspx */ function onbeforeunload(){}; onbeforeunload.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeupdate.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeupdate.js
deleted file mode 100644
index c43d6d6b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbeforeupdate.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbeforeupdate() * @type onbeforeupdate * @super Object * @memberOf onbeforeupdate * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ function onbeforeupdate(){}; onbeforeupdate.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onblur.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onblur.js
deleted file mode 100644
index fe191cb5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onblur.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onblur() * @type onblur * @super Object * @memberOf onblur * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ function onblur(){}; onblur.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbounce.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbounce.js
deleted file mode 100644
index 8e06c9b1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onbounce.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onbounce() * @type onbounce * @super Object * @memberOf onbounce * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536910.aspx */ function onbounce(){}; onbounce.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncellchange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncellchange.js
deleted file mode 100644
index fec35a1f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncellchange.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object oncellchange() * @type oncellchange * @super Object * @memberOf oncellchange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536911.aspx */ function oncellchange(){}; oncellchange.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onchange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onchange.js
deleted file mode 100644
index 62d561d6..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onchange.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onchange() * @type onchange * @super Object * @memberOf onchange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536912.aspx */ function onchange(){}; onchange.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onclick.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onclick.js
deleted file mode 100644
index 432d67df..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onclick.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onclick() * @type onclick * @super Object * @memberOf onclick * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ function onclick(){}; onclick.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontentsave.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontentsave.js
deleted file mode 100644
index a0293aa4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontentsave.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object oncontentsave() * @type oncontentsave * @super Object * @memberOf oncontentsave * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531022.aspx */ function oncontentsave(){}; oncontentsave.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontextmenu.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontextmenu.js
deleted file mode 100644
index ab59dc95..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontextmenu.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object oncontextmenu() * @type oncontextmenu * @super Object * @memberOf oncontextmenu * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ function oncontextmenu(){}; oncontextmenu.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontrolselect.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontrolselect.js
deleted file mode 100644
index 3c1ba134..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncontrolselect.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object oncontrolselect() * @type oncontrolselect * @super Object * @memberOf oncontrolselect * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ function oncontrolselect(){}; oncontrolselect.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncopy.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncopy.js
deleted file mode 100644
index 192f6b8d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncopy.js
+++ /dev/null
@@ -1 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object oncopy() * @type oncopy * @super Object * @memberOf oncopy * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ function oncopy(){}; oncopy.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncut.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncut.js
deleted file mode 100644
index 9de0242c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_oncut.js
+++ /dev/null
@@ -1 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object oncut() * @type oncut * @super Object * @memberOf oncut * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ function oncut(){}; oncut.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondataavailable.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondataavailable.js
deleted file mode 100644
index d0d3ad9c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondataavailable.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondataavailable() * @type ondataavailable * @super Object * @memberOf ondataavailable * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536918.aspx */ function ondataavailable(){}; ondataavailable.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetchanged.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetchanged.js
deleted file mode 100644
index b43a2556..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetchanged.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondatasetchanged() * @type ondatasetchanged * @super Object * @memberOf ondatasetchanged * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536919.aspx */ function ondatasetchanged(){}; ondatasetchanged.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetcomplete.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetcomplete.js
deleted file mode 100644
index 17a41032..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondatasetcomplete.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondatasetcomplete() * @type ondatasetcomplete * @super Object * @memberOf ondatasetcomplete * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536920.aspx */ function ondatasetcomplete(){}; ondatasetcomplete.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondblclick.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondblclick.js
deleted file mode 100644
index 752a8f1e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondblclick.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondblclick() * @type ondblclick * @super Object * @memberOf ondblclick * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ function ondblclick(){}; ondblclick.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondeactivate.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondeactivate.js
deleted file mode 100644
index 0f440bf3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondeactivate.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondeactivate() * @type ondeactivate * @super Object * @memberOf ondeactivate * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ function ondeactivate(){}; ondeactivate.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrag.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrag.js
deleted file mode 100644
index dd44ff8e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrag.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondrag() * @type ondrag * @super Object * @memberOf ondrag * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ function ondrag(){}; ondrag.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragend.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragend.js
deleted file mode 100644
index 65d1d680..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragend.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondragend() * @type ondragend * @super Object * @memberOf ondragend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ function ondragend(){}; ondragend.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragenter.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragenter.js
deleted file mode 100644
index 8b506964..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragenter.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondragenter() * @type ondragenter * @super Object * @memberOf ondragenter * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ function ondragenter(){}; ondragenter.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragleave.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragleave.js
deleted file mode 100644
index bbe918e9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragleave.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondragleave() * @type ondragleave * @super Object * @memberOf ondragleave * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ function ondragleave(){}; ondragleave.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragover.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragover.js
deleted file mode 100644
index e9d2198c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragover.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondragover() * @type ondragover * @super Object * @memberOf ondragover * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ function ondragover(){}; ondragover.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragstart.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragstart.js
deleted file mode 100644
index 0eb6c1bc..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondragstart.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondragstart() * @type ondragstart * @super Object * @memberOf ondragstart * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ function ondragstart(){}; ondragstart.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrop.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrop.js
deleted file mode 100644
index 8e47a051..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ondrop.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ondrop() * @type ondrop * @super Object * @memberOf ondrop * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ function ondrop(){}; ondrop.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerror.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerror.js
deleted file mode 100644
index 62e75ee8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerror.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onerror() * @type onerror * @super Object * @memberOf onerror * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536930.aspx */ function onerror(){}; onerror.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerrorupdate.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerrorupdate.js
deleted file mode 100644
index e38f444e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onerrorupdate.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onerrorupdate() * @type onerrorupdate * @super Object * @memberOf onerrorupdate * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ function onerrorupdate(){}; onerrorupdate.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfilterchange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfilterchange.js
deleted file mode 100644
index b345ba39..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfilterchange.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onfilterchange() * @type onfilterchange * @super Object * @memberOf onfilterchange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ function onfilterchange(){}; onfilterchange.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfinish.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfinish.js
deleted file mode 100644
index 2d5e6afe..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfinish.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onfinish() * @type onfinish * @super Object * @memberOf onfinish * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536933.aspx */ function onfinish(){}; onfinish.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocus.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocus.js
deleted file mode 100644
index ffd76d2c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocus.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onfocus() * @type onfocus * @super Object * @memberOf onfocus * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ function onfocus(){}; onfocus.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusin.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusin.js
deleted file mode 100644
index 32e88ebd..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusin.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onfocusin() * @type onfocusin * @super Object * @memberOf onfocusin * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ function onfocusin(){}; onfocusin.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusout.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusout.js
deleted file mode 100644
index f6094d42..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onfocusout.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onfocusout() * @type onfocusout * @super Object * @memberOf onfocusout * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ function onfocusout(){}; onfocusout.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onhelp.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onhelp.js
deleted file mode 100644
index 700b4e0f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onhelp.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onhelp() * @type onhelp * @super Object * @memberOf onhelp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ function onhelp(){}; onhelp.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeydown.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeydown.js
deleted file mode 100644
index 2f1bff60..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeydown.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onkeydown() * @type onkeydown * @super Object * @memberOf onkeydown * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ function onkeydown(){}; onkeydown.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeypress.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeypress.js
deleted file mode 100644
index 991b75e1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeypress.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onkeypress() * @type onkeypress * @super Object * @memberOf onkeypress * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ function onkeypress(){}; onkeypress.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeyup.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeyup.js
deleted file mode 100644
index 95b7ff3f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onkeyup.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onkeyup() * @type onkeyup * @super Object * @memberOf onkeyup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ function onkeyup(){}; onkeyup.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlayoutcomplete.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlayoutcomplete.js
deleted file mode 100644
index 4809a586..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlayoutcomplete.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onlayoutcomplete() * @type onlayoutcomplete * @super Object * @memberOf onlayoutcomplete * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ function onlayoutcomplete(){}; onlayoutcomplete.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onload.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onload.js
deleted file mode 100644
index 2c181280..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onload.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onload() * @type onload * @super Object * @memberOf onload * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ function onload(){}; onload.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlosecapture.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlosecapture.js
deleted file mode 100644
index f6506a7c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onlosecapture.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onlosecapture() * @type onlosecapture * @super Object * @memberOf onlosecapture * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ function onlosecapture(){}; onlosecapture.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousedown.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousedown.js
deleted file mode 100644
index 110896c6..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousedown.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmousedown() * @type onmousedown * @super Object * @memberOf onmousedown * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ function onmousedown(){}; onmousedown.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseenter.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseenter.js
deleted file mode 100644
index 845eed78..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseenter.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmouseenter() * @type onmouseenter * @super Object * @memberOf onmouseenter * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ function onmouseenter(){}; onmouseenter.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseleave.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseleave.js
deleted file mode 100644
index f988916e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseleave.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmouseleave() * @type onmouseleave * @super Object * @memberOf onmouseleave * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ function onmouseleave(){}; onmouseleave.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousemove.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousemove.js
deleted file mode 100644
index 6f975f6e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousemove.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmousemove() * @type onmousemove * @super Object * @memberOf onmousemove * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ function onmousemove(){}; onmousemove.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseout.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseout.js
deleted file mode 100644
index b1967485..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseout.js
+++ /dev/null
@@ -1 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmouseout() * @type onmouseout * @super Object * @memberOf onmouseout * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ function onmouseout(){}; onmouseout.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseover.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseover.js
deleted file mode 100644
index d85e56b3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseover.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmouseover() * @type onmouseover * @super Object * @memberOf onmouseover * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ function onmouseover(){}; onmouseover.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseup.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseup.js
deleted file mode 100644
index 77825519..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmouseup.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmouseup() * @type onmouseup * @super Object * @memberOf onmouseup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ function onmouseup(){}; onmouseup.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousewheel.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousewheel.js
deleted file mode 100644
index 0d0c1019..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmousewheel.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmousewheel() * @type onmousewheel * @super Object * @memberOf onmousewheel * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ function onmousewheel(){}; onmousewheel.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmove.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmove.js
deleted file mode 100644
index b71655eb..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmove.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmove() * @type onmove * @super Object * @memberOf onmove * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ function onmove(){}; onmove.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmoveend.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmoveend.js
deleted file mode 100644
index fa488cb7..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmoveend.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmoveend() * @type onmoveend * @super Object * @memberOf onmoveend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ function onmoveend(){}; onmoveend.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmovestart.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmovestart.js
deleted file mode 100644
index 0baf9a06..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onmovestart.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onmovestart() * @type onmovestart * @super Object * @memberOf onmovestart * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ function onmovestart(){}; onmovestart.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpaste.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpaste.js
deleted file mode 100644
index 90241f85..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpaste.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onpaste() * @type onpaste * @super Object * @memberOf onpaste * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ function onpaste(){}; onpaste.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpropertychange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpropertychange.js
deleted file mode 100644
index 23a92cb3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onpropertychange.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onpropertychange() * @type onpropertychange * @super Object * @memberOf onpropertychange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ function onpropertychange(){}; onpropertychange.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreadystatechange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreadystatechange.js
deleted file mode 100644
index 5db2738f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreadystatechange.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onreadystatechange() * @type onreadystatechange * @super Object * @memberOf onreadystatechange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ function onreadystatechange(){}; onreadystatechange.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreset.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreset.js
deleted file mode 100644
index 8af7149c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onreset.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onreset() * @type onreset * @super Object * @memberOf onreset * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536958.aspx */ function onreset(){}; onreset.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresize.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresize.js
deleted file mode 100644
index 43c1afca..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresize.js
+++ /dev/null
@@ -1 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onresize() * @type onresize * @super Object * @memberOf onresize * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ function onresize(){}; onresize.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizeend.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizeend.js
deleted file mode 100644
index 19e8ecff..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizeend.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onresizeend() * @type onresizeend * @super Object * @memberOf onresizeend * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ function onresizeend(){}; onresizeend.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizestart.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizestart.js
deleted file mode 100644
index 824cc760..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onresizestart.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onresizestart() * @type onresizestart * @super Object * @memberOf onresizestart * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ function onresizestart(){}; onresizestart.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowenter.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowenter.js
deleted file mode 100644
index e83a7bf9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowenter.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onrowenter() * @type onrowenter * @super Object * @memberOf onrowenter * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536962.aspx */ function onrowenter(){}; onrowenter.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowexit.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowexit.js
deleted file mode 100644
index c37fde81..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowexit.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onrowexit() * @type onrowexit * @super Object * @memberOf onrowexit * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536963.aspx */ function onrowexit(){}; onrowexit.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsdelete.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsdelete.js
deleted file mode 100644
index e210a672..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsdelete.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onrowsdelete() * @type onrowsdelete * @super Object * @memberOf onrowsdelete * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536964.aspx */ function onrowsdelete(){}; onrowsdelete.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsinserted.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsinserted.js
deleted file mode 100644
index 0b234ec9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onrowsinserted.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onrowsinserted() * @type onrowsinserted * @super Object * @memberOf onrowsinserted * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536965.aspx */ function onrowsinserted(){}; onrowsinserted.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onscroll.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onscroll.js
deleted file mode 100644
index aefc211b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onscroll.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onscroll() * @type onscroll * @super Object * @memberOf onscroll * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ function onscroll(){}; onscroll.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselect.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselect.js
deleted file mode 100644
index fe01f3f1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselect.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onselect() * @type onselect * @super Object * @memberOf onselect * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536967.aspx */ function onselect(){}; onselect.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectionchange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectionchange.js
deleted file mode 100644
index 6196592a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectionchange.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onselectionchange() * @type onselectionchange * @super Object * @memberOf onselectionchange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537845.aspx */ function onselectionchange(){}; onselectionchange.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectstart.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectstart.js
deleted file mode 100644
index 6893b7d1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onselectstart.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onselectstart() * @type onselectstart * @super Object * @memberOf onselectstart * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ function onselectstart(){}; onselectstart.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstart.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstart.js
deleted file mode 100644
index 1b656c08..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstart.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onstart() * @type onstart * @super Object * @memberOf onstart * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536970.aspx */ function onstart(){}; onstart.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstop.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstop.js
deleted file mode 100644
index 74145a3a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onstop.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onstop() * @type onstop * @super Object * @memberOf onstop * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536971.aspx */ function onstop(){}; onstop.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onsubmit.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onsubmit.js
deleted file mode 100644
index 4ee18a1f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onsubmit.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onsubmit() * @type onsubmit * @super Object * @memberOf onsubmit * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536972.aspx */ function onsubmit(){}; onsubmit.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ontimeerror.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ontimeerror.js
deleted file mode 100644
index 64e790e2..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ontimeerror.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ontimeerror() * @type ontimeerror * @super Object * @memberOf ontimeerror * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ function ontimeerror(){}; ontimeerror.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onunload.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onunload.js
deleted file mode 100644
index 665481db..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_onunload.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object onunload() * @type onunload * @super Object * @memberOf onunload * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536973.aspx */ function onunload(){}; onunload.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_optgroup.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_optgroup.js
deleted file mode 100644
index 2f2bc0c0..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_optgroup.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object optGroup() * @type optGroup * @super Object * @memberOf optGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535876.aspx */ function optGroup(){}; optGroup.prototype= new Object(); /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf optGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ optGroup.prototype.disabled=false; /** * Property label * @type String * @returns {String}
- * @memberOf optGroup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533929.aspx */ optGroup.prototype.label=""; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_option.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_option.js
deleted file mode 100644
index 45c7d572..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_option.js
+++ /dev/null
@@ -1,84 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object option() * @type option * @super Object * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535877.aspx */ function option(){}; option.prototype= new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ option.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ option.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ option.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ option.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ option.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ option.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ option.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ option.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ option.prototype.clientWidth=0; /** * Property defaultSelected * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533716.aspx */ option.prototype.defaultSelected=false; /** * Property dir * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ option.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ option.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ option.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ option.prototype.childNodes= new childNodes(); /** * Property form * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ option.prototype.form=new Object(); /** * Property id * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ option.prototype.id=""; /** * Property index * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533896.aspx */ option.prototype.index=0; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ option.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ option.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ option.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ option.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ option.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ option.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ option.prototype.TextRange= new TextRange(); /** * Property label * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533932.aspx */ option.prototype.label=""; /** * Property lang * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ option.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ option.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ option.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ option.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ option.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ option.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ option.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ option.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ option.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ option.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ option.prototype.onOffBehavior=new DABoolean(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ option.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ option.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ option.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ option.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ option.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ option.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ option.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ option.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ option.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ option.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ option.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ option.prototype.scrollWidth=new Object(); /** * Property selected * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534623.aspx */ option.prototype.selected=false; /** * Property tagName * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ option.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ option.prototype.tagUrn=""; /** * Property text * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534679.aspx */ option.prototype.text=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ option.prototype.uniqueID=""; /** * Property value * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535125.aspx */ option.prototype.value=""; /** * Property form * @type form * @returns {form}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535249.aspx */ option.prototype.form= new form(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ option.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ option.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ option.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ option.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ option.prototype.clearAttributes=function(){}; /** * function click() * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ option.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ option.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ option.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ option.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ option.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ option.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ option.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ option.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ option.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ option.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ option.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ option.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ option.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ option.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ option.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ option.prototype.getClientRects=function(){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ option.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ option.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ option.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ option.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ option.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ option.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ option.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ option.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ option.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ option.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ option.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ option.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ option.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ option.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ option.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ option.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ option.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ option.prototype.replaceNode=function(oNewNode){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ option.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ option.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ option.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ option.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ option.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ option.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ option.prototype.onlosecapture= new onlosecapture(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ option.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ option.prototype.onreadystatechange= new onreadystatechange(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ option.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ option.prototype.ontimeerror= new ontimeerror(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ option.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ option.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ option.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ option.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf option * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ option.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_options.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_options.js
deleted file mode 100644
index e650b30f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_options.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object options() * @type options * @super Array * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537472.aspx */ function options(){}; options.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ options.prototype.length=0; /** * function add(oElement,iIndex) * @param {Object} oElement * @param {Number} iIndex * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535921.aspx */ options.prototype.add=function(oElement,iIndex){}; /** * function add(oElement,iIndex) * @param {Object} oElement * @param {Number} iIndex * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535921.aspx */ options.prototype.add=function(oElement,iIndex){}; /** * Property areas * @type areas * @returns {areas}
- * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537437.aspx */ options.prototype.areas= new areas(); /** * Property controlRange * @type controlRange * @returns {controlRange}
- * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537447.aspx */ options.prototype.controlRange= new controlRange(); /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ options.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ options.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ options.prototype.namedItem=function(sName){}; /** * function remove(iIndex) * @param {Number} iIndex * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536694.aspx */ options.prototype.remove=function(iIndex){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ options.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf options * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ options.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_p.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_p.js
deleted file mode 100644
index fe44a261..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_p.js
+++ /dev/null
@@ -1,135 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object p() * @type p * @super Object * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535878.aspx */ function p(){}; p.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ p.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ p.prototype.align=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ p.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ p.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ p.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ p.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ p.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ p.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ p.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ p.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ p.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ p.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ p.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ p.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ p.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ p.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ p.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ p.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ p.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ p.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ p.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ p.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ p.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ p.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ p.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ p.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ p.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ p.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ p.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ p.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ p.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ p.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ p.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ p.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ p.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ p.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ p.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ p.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ p.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ p.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ p.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ p.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ p.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ p.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ p.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ p.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ p.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ p.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ p.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ p.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ p.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ p.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ p.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ p.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ p.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ p.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ p.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ p.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ p.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ p.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ p.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ p.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ p.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ p.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ p.prototype.clearAttributes=function(){}; /** * function click() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ p.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ p.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ p.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ p.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ p.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ p.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ p.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ p.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ p.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ p.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ p.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ p.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ p.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ p.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ p.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ p.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ p.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ p.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ p.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ p.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ p.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ p.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ p.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ p.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ p.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ p.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ p.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ p.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ p.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ p.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ p.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ p.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ p.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ p.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ p.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ p.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ p.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ p.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ p.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ p.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ p.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ p.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ p.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ p.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ p.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ p.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ p.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ p.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ p.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ p.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ p.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ p.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ p.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ p.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ p.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ p.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ p.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ p.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ p.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ p.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ p.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ p.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ p.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ p.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ p.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ p.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ p.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ p.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ p.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ p.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ p.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ p.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ p.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ p.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ p.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ p.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ p.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ p.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ p.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ p.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ p.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ p.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ p.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ p.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ p.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ p.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ p.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ p.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ p.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ p.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ p.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ p.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ p.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ p.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ p.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ p.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ p.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ p.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ p.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ p.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf p * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ p.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_page.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_page.js
deleted file mode 100644
index f87a40dd..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_page.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object page() * @type page * @super Object * @memberOf page * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535879.aspx */ function page(){}; page.prototype= new Object(); /** * Property pseudoClass * @type String * @returns {String}
- * @memberOf page * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534354.aspx */ page.prototype.pseudoClass=""; /** * Property selector * @type String * @returns {String}
- * @memberOf page * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534625.aspx */ page.prototype.selector=""; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pages.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pages.js
deleted file mode 100644
index 52fa5350..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pages.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object pages() * @type pages * @super Array * @memberOf pages * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531198.aspx */ function pages(){}; pages.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf pages * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ pages.prototype.length=0; /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf pages * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536603.aspx */ pages.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf pages * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536603.aspx */ pages.prototype.TF-8"= new TF-8"(); /** * Property page * @type page * @returns {page}
- * @memberOf pages * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535879.aspx */ pages.prototype.page= new page(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_param.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_param.js
deleted file mode 100644
index b050e19b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_param.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object param() * @type param * @super Object * @memberOf param * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535880.aspx */ function param(){}; param.prototype= new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf param * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534186.aspx */ param.prototype.name=""; /** * Property type * @type String * @returns {String}
- * @memberOf param * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534694.aspx */ param.prototype.type=""; /** * Property value * @type String * @returns {String}
- * @memberOf param * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535127.aspx */ param.prototype.value=""; /** * Property valueType * @type String * @returns {String}
- * @memberOf param * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535121.aspx */ param.prototype.valueType=""; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf param * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ param.prototype.outerHTML=""; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plaintext.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plaintext.js
deleted file mode 100644
index 32df2c96..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plaintext.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object plainText() * @type plainText * @super Object * @memberOf plainText * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535881.aspx */ function plainText(){}; plainText.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plugins.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plugins.js
deleted file mode 100644
index 3d0f996d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_plugins.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object plugins() * @type plugins * @super Array * @memberOf plugins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537477.aspx */ function plugins(){}; plugins.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf plugins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ plugins.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf plugins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ plugins.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf plugins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ plugins.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf plugins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ plugins.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf plugins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ plugins.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf plugins * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ plugins.prototype.tags=function(sTag){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_popup.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_popup.js
deleted file mode 100644
index 1d6bc129..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_popup.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object popup() * @type popup * @super Object * @memberOf popup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535882.aspx */ function popup(){}; popup.prototype= new Object(); /** * Property document * @type document * @returns {document}
- * @memberOf popup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533738.aspx */ popup.prototype.document=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf popup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ popup.prototype.document= new document(); /** * Property isOpen * @type Boolean * @returns {Boolean}
- * @memberOf popup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533916.aspx */ popup.prototype.isOpen=false; /** * function hide() * @memberOf popup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536448.aspx */ popup.prototype.hide=function(){}; /** * function hide() * @memberOf popup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536448.aspx */ popup.prototype.hide=function(){}; /** * function show(iX) * @param {show} iX * @memberOf popup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536755.aspx */ popup.prototype.show=function(iX){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pre.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pre.js
deleted file mode 100644
index b03b279d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_pre.js
+++ /dev/null
@@ -1,133 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object pre() * @type pre * @super Object * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535883.aspx */ function pre(){}; pre.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ pre.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ pre.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ pre.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ pre.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ pre.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ pre.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ pre.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ pre.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ pre.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ pre.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ pre.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ pre.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ pre.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ pre.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ pre.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ pre.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ pre.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ pre.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ pre.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ pre.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ pre.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ pre.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ pre.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ pre.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ pre.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ pre.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ pre.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ pre.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ pre.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ pre.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ pre.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ pre.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ pre.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ pre.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ pre.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ pre.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ pre.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ pre.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ pre.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ pre.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ pre.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ pre.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ pre.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ pre.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ pre.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ pre.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ pre.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ pre.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ pre.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ pre.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ pre.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ pre.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ pre.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ pre.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ pre.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ pre.prototype.uniqueID=""; /** * Property width * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535148.aspx */ pre.prototype.width=""; /** * Property wrap * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535152.aspx */ pre.prototype.wrap=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ pre.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ pre.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ pre.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ pre.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ pre.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ pre.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ pre.prototype.clearAttributes=function(){}; /** * function click() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ pre.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ pre.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ pre.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ pre.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ pre.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ pre.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ pre.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ pre.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ pre.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ pre.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ pre.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ pre.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ pre.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ pre.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ pre.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ pre.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ pre.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ pre.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ pre.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ pre.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ pre.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ pre.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ pre.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ pre.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ pre.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ pre.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ pre.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ pre.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ pre.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ pre.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ pre.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ pre.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ pre.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ pre.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ pre.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ pre.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ pre.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ pre.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ pre.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ pre.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ pre.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ pre.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ pre.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ pre.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ pre.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ pre.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ pre.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ pre.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ pre.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ pre.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ pre.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ pre.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ pre.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ pre.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ pre.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ pre.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ pre.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ pre.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ pre.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ pre.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ pre.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ pre.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ pre.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ pre.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ pre.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ pre.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ pre.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ pre.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ pre.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ pre.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ pre.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ pre.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ pre.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ pre.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ pre.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ pre.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ pre.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ pre.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ pre.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ pre.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ pre.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ pre.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ pre.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ pre.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ pre.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ pre.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ pre.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ pre.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ pre.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ pre.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ pre.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ pre.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ pre.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ pre.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ pre.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ pre.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ pre.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ pre.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf pre * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ pre.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_propertyname.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_propertyname.js
deleted file mode 100644
index dc792f98..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_propertyname.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object propertyName() * @type propertyName * @super Object * @memberOf propertyName * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534352.aspx */ function propertyName(){}; propertyName.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_q.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_q.js
deleted file mode 100644
index 05e8f013..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_q.js
+++ /dev/null
@@ -1,94 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object q() * @type q * @super Object * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535884.aspx */ function q(){}; q.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ q.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ q.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ q.prototype.canHaveHTML=false; /** * Property cite * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533558.aspx */ q.prototype.cite=""; /** * Property className * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ q.prototype.className=""; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ q.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ q.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ q.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ q.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ q.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ q.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ q.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ q.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ q.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ q.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ q.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ q.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ q.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ q.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ q.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ q.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ q.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ q.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ q.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ q.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ q.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ q.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ q.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ q.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ q.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ q.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ q.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ q.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ q.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ q.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ q.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ q.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ q.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ q.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ q.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ q.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ q.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ q.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ q.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ q.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ q.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ q.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ q.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ q.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ q.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ q.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ q.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ q.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ q.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ q.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ q.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ q.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ q.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ q.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ q.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ q.prototype.getAdjacentText=function(sWhere){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ q.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ q.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ q.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ q.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ q.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ q.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ q.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ q.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ q.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ q.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ q.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ q.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ q.prototype.normalize=function(){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ q.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ q.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ q.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ q.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ q.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ q.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ q.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ q.prototype.replaceNode=function(oNewNode){}; /** * function setActive() * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ q.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ q.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ q.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ q.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ q.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ q.prototype.activeElement=new Object(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ q.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ q.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ q.prototype.onblur= new onblur(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ q.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ q.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ q.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ q.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ q.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ q.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ q.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ q.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ q.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ q.prototype.onfocus= new onfocus(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ q.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ q.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ q.prototype.onkeyup= new onkeyup(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ q.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ q.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ q.prototype.onmovestart= new onmovestart(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ q.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ q.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ q.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ q.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ q.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ q.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ q.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ q.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ q.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ q.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf q * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ q.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_qualifier.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_qualifier.js
deleted file mode 100644
index fe527828..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_qualifier.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object qualifier() * @type qualifier * @super Object * @memberOf qualifier * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534355.aspx */ function qualifier(){}; qualifier.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_reason.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_reason.js
deleted file mode 100644
index 93289b00..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_reason.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object reason() * @type reason * @super Object * @memberOf reason * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534362.aspx */ function reason(){}; reason.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_recordset.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_recordset.js
deleted file mode 100644
index 1ffe6790..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_recordset.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object recordset() * @type recordset * @super Object * @memberOf recordset * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534364.aspx */ function recordset(){}; recordset.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_repeat.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_repeat.js
deleted file mode 100644
index cc67278d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_repeat.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object repeat() * @type repeat * @super Object * @memberOf repeat * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534367.aspx */ function repeat(){}; repeat.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_returnvalue.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_returnvalue.js
deleted file mode 100644
index b7ef604f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_returnvalue.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object returnValue() * @type returnValue * @super Object * @memberOf returnValue * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534372.aspx */ function returnValue(){}; returnValue.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rows.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rows.js
deleted file mode 100644
index 4a13c402..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rows.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object rows() * @type rows * @super Array * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ function rows(){}; rows.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ rows.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ rows.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ rows.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ rows.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ rows.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ rows.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf rows * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ rows.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rt.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rt.js
deleted file mode 100644
index 79e86211..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rt.js
+++ /dev/null
@@ -1,85 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object rt() * @type rt * @super Object * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535885.aspx */ function rt(){}; rt.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ rt.prototype.accessKey=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ rt.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ rt.prototype.className=""; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ rt.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ rt.prototype.dir=""; /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ rt.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ rt.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ rt.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ rt.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ rt.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ rt.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ rt.prototype.isMultiLine=false; /** * Property lang * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ rt.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ rt.prototype.language=""; /** * Property name * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ rt.prototype.name=""; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ rt.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ rt.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ rt.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ rt.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ rt.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ rt.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ rt.prototype.outerText=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ rt.prototype.parentElement=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ rt.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ rt.prototype.scopeName=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ rt.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ rt.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ rt.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ rt.prototype.title=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ rt.prototype.addBehavior=function(sUrl){}; /** * function blur() * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ rt.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ rt.prototype.onblur= new onblur(); /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ rt.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ rt.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ rt.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ rt.prototype.onfocus= new onfocus(); /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ rt.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ rt.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ rt.prototype.name=""; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ rt.prototype.getExpression=function(sPropertyName){}; /** * function normalize() * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ rt.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ rt.prototype.TextNode= new TextNode(); /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ rt.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ rt.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ rt.prototype.removeExpression=function(sPropertyName){}; /** * function setActive() * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ rt.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ rt.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ rt.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ rt.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ rt.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ rt.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ rt.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ rt.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ rt.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ rt.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ rt.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ rt.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ rt.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ rt.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ rt.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ rt.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ rt.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ rt.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ rt.prototype.ondeactivate= new ondeactivate(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ rt.prototype.ondragstart= new ondragstart(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ rt.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ rt.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ rt.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ rt.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ rt.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ rt.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ rt.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ rt.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ rt.prototype.onkeyup= new onkeyup(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ rt.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ rt.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ rt.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ rt.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ rt.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ rt.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ rt.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ rt.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ rt.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ rt.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ rt.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ rt.prototype.onpaste= new onpaste(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ rt.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ rt.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ rt.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ rt.prototype.onselectstart= new onselectstart(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ rt.prototype.behaviorUrns= new behaviorUrns(); /** * Property children * @type children * @returns {children}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ rt.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf rt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ rt.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ruby.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ruby.js
deleted file mode 100644
index ea2c5e7b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ruby.js
+++ /dev/null
@@ -1,85 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ruby() * @type ruby * @super Object * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535886.aspx */ function ruby(){}; ruby.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ ruby.prototype.accessKey=""; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ ruby.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ ruby.prototype.className=""; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ ruby.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ ruby.prototype.dir=""; /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ ruby.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ ruby.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ ruby.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ ruby.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ ruby.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ ruby.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ ruby.prototype.isMultiLine=false; /** * Property lang * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ ruby.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ ruby.prototype.language=""; /** * Property name * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ ruby.prototype.name=""; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ ruby.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ ruby.prototype.offsetParent=new Object(); /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ ruby.prototype.offsetLeft=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ ruby.prototype.offsetTop=0; /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ ruby.prototype.offsetWidth=0; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ ruby.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ ruby.prototype.outerText=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ ruby.prototype.parentElement=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ ruby.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ ruby.prototype.scopeName=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ ruby.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ ruby.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ ruby.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ ruby.prototype.title=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ ruby.prototype.addBehavior=function(sUrl){}; /** * function blur() * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ ruby.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ruby.prototype.onblur= new onblur(); /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ ruby.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ ruby.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ ruby.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ruby.prototype.onfocus= new onfocus(); /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ ruby.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ ruby.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ ruby.prototype.name=""; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ ruby.prototype.getExpression=function(sPropertyName){}; /** * function normalize() * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ ruby.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ ruby.prototype.TextNode= new TextNode(); /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ ruby.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ ruby.prototype.removeBehavior=function(iID){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ ruby.prototype.removeExpression=function(sPropertyName){}; /** * function setActive() * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ ruby.prototype.setActive=function(){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ ruby.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ ruby.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ ruby.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ ruby.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ ruby.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ ruby.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ ruby.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ ruby.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ ruby.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ ruby.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ ruby.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ruby.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ ruby.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ ruby.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ ruby.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ ruby.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ ruby.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ ruby.prototype.ondeactivate= new ondeactivate(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ ruby.prototype.ondragstart= new ondragstart(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ ruby.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ ruby.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ruby.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ ruby.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ ruby.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ ruby.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ ruby.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ ruby.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ ruby.prototype.onkeyup= new onkeyup(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ ruby.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ ruby.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ ruby.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ ruby.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ ruby.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ ruby.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ ruby.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ ruby.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ ruby.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ ruby.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ ruby.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ ruby.prototype.onpaste= new onpaste(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ ruby.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ ruby.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ ruby.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ ruby.prototype.onselectstart= new onselectstart(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ ruby.prototype.behaviorUrns= new behaviorUrns(); /** * Property children * @type children * @returns {children}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ ruby.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf ruby * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ ruby.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rule.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rule.js
deleted file mode 100644
index 978322e9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rule.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object rule() * @type rule * @super Object * @memberOf rule * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535887.aspx */ function rule(){}; rule.prototype= new Object(); /** * Property readOnly * @type Boolean * @returns {Boolean}
- * @memberOf rule * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534356.aspx */ rule.prototype.readOnly=false; /** * Property selectorText * @type String * @returns {String}
- * @memberOf rule * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534626.aspx */ rule.prototype.selectorText=""; /** * Property hn * @type hn * @returns {hn}
- * @memberOf rule * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535253.aspx */ rule.prototype.hn= new hn(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rules.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rules.js
deleted file mode 100644
index 237827d2..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_rules.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object rules() * @type rules * @super Array * @memberOf rules * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531199.aspx */ function rules(){}; rules.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf rules * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ rules.prototype.length=0; /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf rules * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536510.aspx */ rules.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf rules * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536510.aspx */ rules.prototype.TF-8"= new TF-8"(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_s.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_s.js
deleted file mode 100644
index ecd9ac66..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_s.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object s() * @type s * @super Object * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535890.aspx */ function s(){}; s.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ s.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ s.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ s.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ s.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ s.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ s.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ s.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ s.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ s.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ s.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ s.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ s.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ s.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ s.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ s.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ s.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ s.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ s.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ s.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ s.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ s.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ s.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ s.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ s.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ s.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ s.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ s.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ s.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ s.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ s.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ s.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ s.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ s.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ s.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ s.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ s.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ s.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ s.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ s.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ s.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ s.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ s.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ s.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ s.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ s.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ s.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ s.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ s.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ s.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ s.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ s.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ s.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ s.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ s.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ s.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ s.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ s.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ s.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ s.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ s.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ s.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ s.prototype.clearAttributes=function(){}; /** * function click() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ s.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ s.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ s.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ s.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ s.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ s.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ s.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ s.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ s.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ s.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ s.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ s.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ s.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ s.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ s.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ s.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ s.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ s.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ s.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ s.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ s.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ s.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ s.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ s.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ s.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ s.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ s.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ s.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ s.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ s.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ s.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ s.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ s.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ s.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ s.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ s.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ s.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ s.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ s.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ s.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ s.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ s.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ s.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ s.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ s.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ s.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ s.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ s.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ s.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ s.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ s.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ s.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ s.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ s.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ s.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ s.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ s.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ s.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ s.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ s.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ s.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ s.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ s.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ s.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ s.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ s.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ s.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ s.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ s.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ s.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ s.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ s.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ s.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ s.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ s.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ s.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ s.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ s.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ s.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ s.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ s.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ s.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ s.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ s.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ s.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ s.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ s.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ s.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ s.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ s.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ s.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ s.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ s.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ s.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ s.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ s.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ s.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ s.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf s * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ s.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_samp.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_samp.js
deleted file mode 100644
index 3cd2ad3f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_samp.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object samp() * @type samp * @super Object * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535891.aspx */ function samp(){}; samp.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ samp.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ samp.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ samp.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ samp.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ samp.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ samp.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ samp.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ samp.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ samp.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ samp.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ samp.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ samp.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ samp.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ samp.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ samp.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ samp.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ samp.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ samp.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ samp.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ samp.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ samp.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ samp.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ samp.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ samp.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ samp.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ samp.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ samp.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ samp.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ samp.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ samp.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ samp.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ samp.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ samp.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ samp.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ samp.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ samp.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ samp.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ samp.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ samp.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ samp.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ samp.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ samp.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ samp.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ samp.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ samp.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ samp.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ samp.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ samp.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ samp.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ samp.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ samp.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ samp.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ samp.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ samp.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ samp.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ samp.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ samp.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ samp.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ samp.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ samp.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ samp.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ samp.prototype.clearAttributes=function(){}; /** * function click() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ samp.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ samp.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ samp.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ samp.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ samp.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ samp.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ samp.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ samp.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ samp.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ samp.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ samp.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ samp.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ samp.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ samp.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ samp.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ samp.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ samp.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ samp.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ samp.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ samp.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ samp.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ samp.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ samp.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ samp.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ samp.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ samp.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ samp.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ samp.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ samp.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ samp.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ samp.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ samp.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ samp.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ samp.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ samp.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ samp.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ samp.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ samp.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ samp.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ samp.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ samp.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ samp.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ samp.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ samp.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ samp.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ samp.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ samp.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ samp.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ samp.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ samp.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ samp.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ samp.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ samp.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ samp.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ samp.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ samp.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ samp.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ samp.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ samp.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ samp.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ samp.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ samp.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ samp.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ samp.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ samp.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ samp.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ samp.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ samp.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ samp.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ samp.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ samp.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ samp.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ samp.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ samp.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ samp.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ samp.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ samp.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ samp.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ samp.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ samp.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ samp.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ samp.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ samp.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ samp.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ samp.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ samp.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ samp.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ samp.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ samp.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ samp.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ samp.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ samp.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ samp.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ samp.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ samp.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ samp.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ samp.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ samp.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf samp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ samp.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_savetype.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_savetype.js
deleted file mode 100644
index 6cdcccf1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_savetype.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object saveType() * @type saveType * @super Object * @memberOf saveType * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534385.aspx */ function saveType(){}; saveType.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screen.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screen.js
deleted file mode 100644
index 56638689..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screen.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object screen() * @type screen * @super Object * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535868.aspx */ function screen(){}; screen.prototype= new Object(); /** * Property availHeight * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533487.aspx */ screen.prototype.availHeight=0; /** * Property availWidth * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533488.aspx */ screen.prototype.availWidth=0; /** * Property bufferDepth * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533543.aspx */ screen.prototype.bufferDepth=0; /** * Property colorDepth * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533578.aspx */ screen.prototype.colorDepth=0; /** * Property deviceXDPI * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533721.aspx */ screen.prototype.deviceXDPI=0; /** * Property deviceYDPI * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533722.aspx */ screen.prototype.deviceYDPI=0; /** * Property fontSmoothingEnabled * @type Boolean * @returns {Boolean}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533763.aspx */ screen.prototype.fontSmoothingEnabled=false; /** * Property height * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533779.aspx */ screen.prototype.height=0; /** * Property logicalXDPI * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534128.aspx */ screen.prototype.logicalXDPI=0; /** * Property logicalYDPI * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534130.aspx */ screen.prototype.logicalYDPI=0; /** * Property updateInterval * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534707.aspx */ screen.prototype.updateInterval=0; /** * Property width * @type Number * @returns {Number}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535144.aspx */ screen.prototype.width=0; /** * Property window * @type window * @returns {window}
- * @memberOf screen * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535873.aspx */ screen.prototype.window= new window(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screenx.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screenx.js
deleted file mode 100644
index def26255..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screenx.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object screenX() * @type screenX * @super Object * @memberOf screenX * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534391.aspx */ function screenX(){}; screenX.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screeny.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screeny.js
deleted file mode 100644
index 7d580cec..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_screeny.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object screenY() * @type screenY * @super Object * @memberOf screenY * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534392.aspx */ function screenY(){}; screenY.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_script.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_script.js
deleted file mode 100644
index e83e1e49..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_script.js
+++ /dev/null
@@ -1,72 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object script() * @type script * @super Object * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535892.aspx */ function script(){}; script.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ script.prototype.canHaveHTML=false; /** * Property charset * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533553.aspx */ script.prototype.charset=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ script.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ script.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ script.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ script.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ script.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ script.prototype.clientWidth=0; /** * Property defer * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533719.aspx */ script.prototype.defer=false; /** * Property event * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533746.aspx */ script.prototype.event=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ script.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ script.prototype.childNodes= new childNodes(); /** * Property htmlFor * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533870.aspx */ script.prototype.htmlFor=""; /** * Property id * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ script.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ script.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ script.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ script.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ script.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ script.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ script.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ script.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ script.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ script.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ script.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ script.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ script.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ script.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ script.prototype.nodeValue=new Object(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ script.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ script.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ script.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ script.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ script.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ script.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ script.prototype.readyState=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ script.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ script.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ script.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ script.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ script.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ script.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ script.prototype.all= new all(); /** * Property src * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534642.aspx */ script.prototype.src=""; /** * Property tagName * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ script.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ script.prototype.tagUrn=""; /** * Property text * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534678.aspx */ script.prototype.text=""; /** * Property type * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534701.aspx */ script.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ script.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ script.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ script.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ script.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ script.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ script.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ script.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ script.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ script.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ script.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ script.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ script.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ script.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ script.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ script.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ script.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ script.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ script.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ script.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ script.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ script.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ script.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ script.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ script.prototype.removeBehavior=function(iID){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ script.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ script.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ script.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ script.prototype.swapNode=function(oNode){}; /** * Property onload * @type onload * @returns {onload}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ script.prototype.onload= new onload(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ script.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ script.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ script.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ script.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ script.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ script.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ script.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf script * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ script.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_scripts.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_scripts.js
deleted file mode 100644
index 1fec1544..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_scripts.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object scripts() * @type scripts * @super Array * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537487.aspx */ function scripts(){}; scripts.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ scripts.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ scripts.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ scripts.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ scripts.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ scripts.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ scripts.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf scripts * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ scripts.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_select.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_select.js
deleted file mode 100644
index 2d1ab4cf..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_select.js
+++ /dev/null
@@ -1,146 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object select() * @type select * @super Object * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535893.aspx */ function select(){}; select.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ select.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533066.aspx */ select.prototype.align=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ select.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ select.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ select.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ select.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ select.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ select.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ select.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ select.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ select.prototype.clientWidth=0; /** * Property dataFld * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ select.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ select.prototype.dataSrc=""; /** * Property dir * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ select.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ select.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ select.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ select.prototype.childNodes= new childNodes(); /** * Property form * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ select.prototype.form=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ select.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ select.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ select.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ select.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ select.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ select.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ select.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ select.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ select.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ select.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ select.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ select.prototype.lastChild=new Object(); /** * Property length * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ select.prototype.length=0; /** * Property multiple * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534178.aspx */ select.prototype.multiple=false; /** * Property name * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ select.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ select.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ select.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ select.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ select.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ select.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ select.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ select.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ select.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ select.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ select.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ select.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ select.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ select.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ select.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ select.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ select.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ select.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ select.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ select.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ select.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ select.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ select.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ select.prototype.scrollWidth=new Object(); /** * Property selectedIndex * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534624.aspx */ select.prototype.selectedIndex=0; /** * Property size * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534634.aspx */ select.prototype.size=0; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ select.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ select.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ select.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ select.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ select.prototype.tagUrn=""; /** * Property type * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534702.aspx */ select.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ select.prototype.uniqueID=""; /** * Property value * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535125.aspx */ select.prototype.value=""; /** * Property form * @type form * @returns {form}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535249.aspx */ select.prototype.form= new form(); /** * function add(oElement,iIndex) * @param {Object} oElement * @param {Number} iIndex * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535921.aspx */ select.prototype.add=function(oElement,iIndex){}; /** * Property areas * @type areas * @returns {areas}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537437.aspx */ select.prototype.areas= new areas(); /** * Property controlRange * @type controlRange * @returns {controlRange}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537447.aspx */ select.prototype.controlRange= new controlRange(); /** * Property options * @type options * @returns {options}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537472.aspx */ select.prototype.options= new options(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ select.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ select.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ select.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ select.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ select.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ select.prototype.clearAttributes=function(){}; /** * function click() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ select.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ select.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ select.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ select.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ select.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ select.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ select.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ select.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ select.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ select.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ select.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ select.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ select.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ select.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ select.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ select.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ select.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ select.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ select.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ select.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ select.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ select.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ select.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ select.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ select.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ select.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ select.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ select.prototype.releaseCapture=function(){}; /** * function remove(iIndex) * @param {Number} iIndex * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536694.aspx */ select.prototype.remove=function(iIndex){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ select.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ select.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ select.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ select.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ select.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ select.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ select.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ select.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ select.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ select.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ select.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ select.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ select.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ select.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ select.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ select.prototype.swapNode=function(oNode){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ select.prototype.urns=function(sUrn){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ select.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ select.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ select.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ select.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ select.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ select.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ select.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ select.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ select.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ select.prototype.onblur= new onblur(); /** * Property onchange * @type onchange * @returns {onchange}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536912.aspx */ select.prototype.onchange= new onchange(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ select.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ select.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ select.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ select.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ select.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ select.prototype.ondeactivate= new ondeactivate(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ select.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ select.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ select.prototype.ondragover= new ondragover(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ select.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ select.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ select.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ select.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ select.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ select.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ select.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ select.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ select.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ select.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ select.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ select.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ select.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ select.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ select.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ select.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ select.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ select.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ select.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ select.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ select.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ select.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ select.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ select.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ select.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ select.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ select.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ select.prototype.onselectstart= new onselectstart(); /** * Property all * @type all * @returns {all}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ select.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ select.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ select.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ select.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ select.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ select.prototype.children= new children(); /** * Property options * @type options * @returns {options}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537472.aspx */ select.prototype.options= new options(); /** * Property option * @type option * @returns {option}
- * @memberOf select * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535877.aspx */ select.prototype.option= new option(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_selection.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_selection.js
deleted file mode 100644
index a47cb7e9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_selection.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object selection() * @type selection * @super Object * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535869.aspx */ function selection(){}; selection.prototype= new Object(); /** * Property type * @type String * @returns {String}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534692.aspx */ selection.prototype.type=""; /** * Property typeDetail * @type String * @returns {String}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534690.aspx */ selection.prototype.typeDetail=""; /** * function clear() * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536359.aspx */ selection.prototype.clear=function(){}; /** * function createRange() * @type TextRange * @returns {TextRange}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536394.aspx */ selection.prototype.createRange=function(){}; /** * Property controlRange * @type controlRange * @returns {controlRange}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537447.aspx */ selection.prototype.controlRange= new controlRange(); /** * function createRangeCollection() * @type TextRange * @returns {TextRange}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536396.aspx */ selection.prototype.createRangeCollection=function(){}; /** * function empty() * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536418.aspx */ selection.prototype.empty=function(){}; /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ selection.prototype.ontimeerror= new ontimeerror(); /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537492.aspx */ selection.prototype.TextRange= new TextRange(); /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf selection * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ selection.prototype.TextRange= new TextRange(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftkey.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftkey.js
deleted file mode 100644
index 933a0daf..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftkey.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object shiftKey() * @type shiftKey * @super Object * @memberOf shiftKey * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534629.aspx */ function shiftKey(){}; shiftKey.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftleft.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftleft.js
deleted file mode 100644
index e729ae23..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_shiftleft.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object shiftLeft() * @type shiftLeft * @super Object * @memberOf shiftLeft * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534630.aspx */ function shiftLeft(){}; shiftLeft.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_small.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_small.js
deleted file mode 100644
index e83ce24f..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_small.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object small() * @type small * @super Object * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535894.aspx */ function small(){}; small.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ small.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ small.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ small.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ small.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ small.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ small.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ small.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ small.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ small.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ small.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ small.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ small.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ small.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ small.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ small.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ small.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ small.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ small.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ small.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ small.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ small.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ small.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ small.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ small.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ small.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ small.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ small.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ small.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ small.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ small.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ small.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ small.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ small.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ small.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ small.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ small.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ small.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ small.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ small.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ small.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ small.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ small.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ small.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ small.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ small.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ small.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ small.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ small.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ small.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ small.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ small.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ small.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ small.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ small.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ small.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ small.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ small.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ small.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ small.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ small.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ small.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ small.prototype.clearAttributes=function(){}; /** * function click() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ small.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ small.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ small.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ small.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ small.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ small.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ small.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ small.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ small.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ small.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ small.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ small.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ small.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ small.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ small.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ small.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ small.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ small.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ small.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ small.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ small.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ small.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ small.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ small.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ small.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ small.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ small.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ small.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ small.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ small.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ small.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ small.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ small.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ small.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ small.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ small.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ small.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ small.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ small.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ small.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ small.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ small.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ small.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ small.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ small.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ small.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ small.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ small.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ small.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ small.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ small.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ small.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ small.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ small.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ small.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ small.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ small.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ small.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ small.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ small.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ small.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ small.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ small.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ small.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ small.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ small.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ small.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ small.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ small.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ small.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ small.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ small.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ small.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ small.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ small.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ small.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ small.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ small.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ small.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ small.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ small.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ small.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ small.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ small.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ small.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ small.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ small.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ small.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ small.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ small.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ small.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ small.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ small.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ small.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ small.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ small.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ small.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ small.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf small * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ small.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_span.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_span.js
deleted file mode 100644
index 0270cdf6..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_span.js
+++ /dev/null
@@ -1,140 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object span() * @type span * @super Object * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535895.aspx */ function span(){}; span.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ span.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ span.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ span.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ span.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ span.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ span.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ span.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ span.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ span.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ span.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ span.prototype.contentEditable=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ span.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ span.prototype.dataSrc=""; /** * Property dataFormatAs * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533706.aspx */ span.prototype.dataFormatAs=""; /** * Property dir * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ span.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ span.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ span.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ span.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ span.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ span.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ span.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ span.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ span.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ span.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ span.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ span.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ span.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ span.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ span.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ span.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ span.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ span.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ span.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ span.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ span.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ span.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ span.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ span.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ span.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ span.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ span.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ span.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ span.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ span.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ span.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ span.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ span.prototype.recordNumber=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ span.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ span.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ span.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ span.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ span.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ span.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ span.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ span.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ span.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ span.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ span.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ span.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ span.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ span.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ span.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ span.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ span.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ span.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ span.prototype.clearAttributes=function(){}; /** * function click() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ span.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ span.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ span.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ span.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ span.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ span.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function doScroll(sScrollAction) * @param {String} sScrollAction * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536414.aspx */ span.prototype.doScroll=function(sScrollAction){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ span.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ span.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ span.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ span.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ span.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ span.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ span.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ span.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ span.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ span.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ span.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ span.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ span.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ span.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ span.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ span.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ span.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ span.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ span.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ span.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ span.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ span.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ span.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ span.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ span.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ span.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ span.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ span.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ span.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ span.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ span.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ span.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ span.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ span.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ span.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ span.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ span.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ span.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ span.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ span.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ span.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ span.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ span.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ span.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ span.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ span.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ span.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ span.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ span.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ span.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ span.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ span.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ span.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ span.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ span.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ span.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ span.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ span.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ span.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ span.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ span.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ span.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ span.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ span.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ span.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ span.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ span.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ span.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ span.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ span.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ span.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ span.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ span.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ span.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ span.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ span.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ span.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ span.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ span.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ span.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ span.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ span.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ span.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ span.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ span.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ span.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ span.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ span.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ span.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ span.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ span.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ span.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ span.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ span.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ span.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ span.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ span.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ span.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf span * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ span.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcelement.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcelement.js
deleted file mode 100644
index f8cab85b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcelement.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object srcElement() * @type srcElement * @super Object * @memberOf srcElement * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534638.aspx */ function srcElement(){}; srcElement.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcfilter.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcfilter.js
deleted file mode 100644
index c13b651e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcfilter.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object srcFilter() * @type srcFilter * @super Object * @memberOf srcFilter * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534639.aspx */ function srcFilter(){}; srcFilter.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcurn.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcurn.js
deleted file mode 100644
index 59847f65..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_srcurn.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object srcUrn() * @type srcUrn * @super Object * @memberOf srcUrn * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534640.aspx */ function srcUrn(){}; srcUrn.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strike.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strike.js
deleted file mode 100644
index 4f2da82d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strike.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object strike() * @type strike * @super Object * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535896.aspx */ function strike(){}; strike.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ strike.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ strike.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ strike.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ strike.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ strike.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ strike.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ strike.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ strike.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ strike.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ strike.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ strike.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ strike.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ strike.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ strike.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ strike.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ strike.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ strike.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ strike.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ strike.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ strike.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ strike.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ strike.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ strike.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ strike.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ strike.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ strike.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ strike.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ strike.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ strike.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ strike.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ strike.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ strike.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ strike.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ strike.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ strike.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ strike.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ strike.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ strike.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ strike.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ strike.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ strike.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ strike.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ strike.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ strike.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ strike.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ strike.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ strike.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ strike.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ strike.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ strike.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ strike.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ strike.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ strike.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ strike.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ strike.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ strike.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ strike.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ strike.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ strike.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ strike.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ strike.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ strike.prototype.clearAttributes=function(){}; /** * function click() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ strike.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ strike.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ strike.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ strike.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ strike.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ strike.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ strike.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ strike.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ strike.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ strike.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ strike.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ strike.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ strike.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ strike.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ strike.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ strike.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ strike.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ strike.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ strike.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ strike.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ strike.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ strike.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ strike.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ strike.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ strike.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ strike.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ strike.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ strike.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ strike.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ strike.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ strike.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ strike.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ strike.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ strike.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ strike.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ strike.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ strike.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ strike.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ strike.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ strike.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ strike.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ strike.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ strike.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ strike.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ strike.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ strike.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ strike.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ strike.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ strike.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ strike.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ strike.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ strike.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ strike.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ strike.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ strike.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ strike.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ strike.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ strike.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ strike.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ strike.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ strike.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ strike.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ strike.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ strike.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ strike.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ strike.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ strike.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ strike.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ strike.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ strike.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ strike.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ strike.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ strike.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ strike.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ strike.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ strike.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ strike.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ strike.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ strike.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ strike.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ strike.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ strike.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ strike.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ strike.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ strike.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ strike.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ strike.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ strike.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ strike.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ strike.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ strike.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ strike.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ strike.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ strike.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ strike.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ strike.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ strike.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ strike.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf strike * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ strike.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strong.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strong.js
deleted file mode 100644
index ea043e0c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_strong.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object strong() * @type strong * @super Object * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535897.aspx */ function strong(){}; strong.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ strong.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ strong.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ strong.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ strong.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ strong.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ strong.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ strong.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ strong.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ strong.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ strong.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ strong.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ strong.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ strong.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ strong.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ strong.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ strong.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ strong.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ strong.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ strong.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ strong.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ strong.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ strong.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ strong.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ strong.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ strong.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ strong.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ strong.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ strong.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ strong.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ strong.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ strong.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ strong.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ strong.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ strong.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ strong.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ strong.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ strong.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ strong.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ strong.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ strong.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ strong.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ strong.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ strong.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ strong.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ strong.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ strong.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ strong.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ strong.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ strong.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ strong.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ strong.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ strong.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ strong.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ strong.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ strong.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ strong.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ strong.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ strong.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ strong.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ strong.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ strong.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ strong.prototype.clearAttributes=function(){}; /** * function click() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ strong.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ strong.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ strong.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ strong.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ strong.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ strong.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ strong.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ strong.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ strong.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ strong.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ strong.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ strong.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ strong.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ strong.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ strong.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ strong.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ strong.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ strong.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ strong.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ strong.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ strong.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ strong.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ strong.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ strong.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ strong.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ strong.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ strong.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ strong.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ strong.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ strong.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ strong.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ strong.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ strong.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ strong.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ strong.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ strong.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ strong.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ strong.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ strong.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ strong.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ strong.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ strong.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ strong.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ strong.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ strong.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ strong.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ strong.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ strong.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ strong.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ strong.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ strong.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ strong.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ strong.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ strong.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ strong.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ strong.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ strong.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ strong.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ strong.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ strong.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ strong.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ strong.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ strong.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ strong.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ strong.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ strong.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ strong.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ strong.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ strong.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ strong.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ strong.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ strong.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ strong.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ strong.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ strong.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ strong.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ strong.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ strong.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ strong.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ strong.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ strong.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ strong.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ strong.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ strong.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ strong.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ strong.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ strong.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ strong.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ strong.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ strong.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ strong.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ strong.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ strong.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ strong.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ strong.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ strong.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ strong.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ strong.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf strong * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ strong.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_style.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_style.js
deleted file mode 100644
index 02178802..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_style.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object style() * @type style * @super Object * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535898.aspx */ function style(){}; style.prototype= new Object(); /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ style.prototype.disabled=false; /** * Property id * @type String * @returns {String}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ style.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ style.prototype.innerHTML=""; /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ style.prototype.behaviorUrns= new behaviorUrns(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ style.prototype.addBehavior=function(sUrl){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ style.prototype.dragDrop=function(){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ style.prototype.removeBehavior=function(iID){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ style.prototype.removeNode=function(bRemoveChildren){}; /** * Property onerror * @type onerror * @returns {onerror}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536930.aspx */ style.prototype.onerror= new onerror(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ style.prototype.onreadystatechange= new onreadystatechange(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf style * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ style.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheet.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheet.js
deleted file mode 100644
index aefe1b4e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheet.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object styleSheet() * @type styleSheet * @super Object * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535871.aspx */ function styleSheet(){}; styleSheet.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ styleSheet.prototype.canHaveHTML=false; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ styleSheet.prototype.disabled=false; /** * Property href * @type String * @returns {String}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533860.aspx */ styleSheet.prototype.href=""; /** * Property id * @type String * @returns {String}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ styleSheet.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ styleSheet.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ styleSheet.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ styleSheet.prototype.isMultiLine=false; /** * Property owningElement * @type Object * @returns {Object}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534316.aspx */ styleSheet.prototype.owningElement=new Object(); /** * Property parentStyleSheet * @type Object * @returns {Object}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534329.aspx */ styleSheet.prototype.parentStyleSheet=new Object(); /** * Property readOnly * @type Boolean * @returns {Boolean}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534356.aspx */ styleSheet.prototype.readOnly=false; /** * Property title * @type String * @returns {String}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534682.aspx */ styleSheet.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534699.aspx */ styleSheet.prototype.type=""; /** * Property imports * @type imports * @returns {imports}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358805.aspx */ styleSheet.prototype.imports= new imports(); /** * function addImport(sURL,iIndexRequest) * @param {String} sURL * @param {Number} iIndexRequest * @type imports * @returns {imports}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531193.aspx */ styleSheet.prototype.addImport=function(sURL,iIndexRequest){}; /** * Property imports * @type imports * @returns {imports}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358805.aspx */ styleSheet.prototype.imports= new imports(); /** * function addPageRule(sSelector,sStyle,iIndex) * @param {String} sSelector * @param {String} sStyle * @param {Number} iIndex * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535928.aspx */ styleSheet.prototype.addPageRule=function(sSelector,sStyle,iIndex){}; /** * function addRule(sSelector,sStyle,iIndex) * @param {String} sSelector * @param {String} sStyle * @param {Number} iIndex * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358796.aspx */ styleSheet.prototype.addRule=function(sSelector,sStyle,iIndex){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ styleSheet.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function removeImport(iIndex) * @param {Number} iIndex * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358799.aspx */ styleSheet.prototype.removeImport=function(iIndex){}; /** * function removeRule(iIndex) * @param {Number} iIndex * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531195.aspx */ styleSheet.prototype.removeRule=function(iIndex){}; /** * Property rules * @type rules * @returns {rules}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531199.aspx */ styleSheet.prototype.rules= new rules(); /** * Property page * @type page * @returns {page}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535879.aspx */ styleSheet.prototype.page= new page(); /** * Property imports * @type imports * @returns {imports}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358805.aspx */ styleSheet.prototype.imports= new imports(); /** * Property pages * @type pages * @returns {pages}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531198.aspx */ styleSheet.prototype.pages= new pages(); /** * Property page * @type page * @returns {page}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535879.aspx */ styleSheet.prototype.page= new page(); /** * Property rules * @type rules * @returns {rules}
- * @memberOf styleSheet * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531199.aspx */ styleSheet.prototype.rules= new rules(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheets.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheets.js
deleted file mode 100644
index 423e2fde..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_stylesheets.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object styleSheets() * @type styleSheets * @super Array * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531200.aspx */ function styleSheets(){}; styleSheets.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ styleSheets.prototype.length=0; /** * function item(vIndex) * @param {Number} vIndex * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ styleSheets.prototype.item=function(vIndex){}; /** * function item(vIndex) * @param {Number} vIndex * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536461.aspx */ styleSheets.prototype.item=function(vIndex){}; /** * Property filters * @type filters * @returns {filters}
- * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ styleSheets.prototype.filters= new filters(); /** * function namedItem(sName) * @param {String} sName * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ styleSheets.prototype.namedItem=function(sName){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ styleSheets.prototype.urns=function(sUrn){}; /** * Property styleSheet * @type styleSheet * @returns {styleSheet}
- * @memberOf styleSheets * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535871.aspx */ styleSheets.prototype.styleSheet= new styleSheet(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sub.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sub.js
deleted file mode 100644
index 92a630c8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sub.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object sub() * @type sub * @super Object * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535899.aspx */ function sub(){}; sub.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ sub.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ sub.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ sub.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ sub.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ sub.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ sub.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ sub.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ sub.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ sub.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ sub.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ sub.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ sub.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ sub.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ sub.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ sub.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ sub.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ sub.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ sub.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ sub.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ sub.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ sub.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ sub.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ sub.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ sub.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ sub.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ sub.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ sub.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ sub.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ sub.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ sub.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ sub.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ sub.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ sub.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ sub.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ sub.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ sub.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ sub.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ sub.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ sub.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ sub.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ sub.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ sub.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ sub.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ sub.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ sub.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ sub.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ sub.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ sub.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ sub.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ sub.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ sub.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ sub.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ sub.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ sub.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ sub.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ sub.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ sub.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ sub.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ sub.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ sub.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ sub.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ sub.prototype.clearAttributes=function(){}; /** * function click() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ sub.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ sub.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ sub.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ sub.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ sub.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ sub.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ sub.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ sub.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ sub.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ sub.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ sub.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ sub.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ sub.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ sub.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ sub.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ sub.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ sub.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ sub.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ sub.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ sub.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ sub.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ sub.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ sub.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ sub.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ sub.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ sub.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ sub.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ sub.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ sub.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ sub.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ sub.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ sub.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ sub.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ sub.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ sub.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ sub.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ sub.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ sub.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ sub.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ sub.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ sub.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ sub.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ sub.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ sub.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ sub.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ sub.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ sub.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ sub.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ sub.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ sub.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ sub.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ sub.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ sub.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ sub.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ sub.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ sub.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ sub.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ sub.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ sub.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ sub.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ sub.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ sub.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ sub.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ sub.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ sub.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ sub.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ sub.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ sub.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ sub.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ sub.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ sub.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ sub.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ sub.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ sub.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ sub.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ sub.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ sub.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ sub.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ sub.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ sub.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ sub.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ sub.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ sub.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ sub.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ sub.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ sub.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ sub.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ sub.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ sub.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ sub.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ sub.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ sub.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ sub.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ sub.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ sub.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ sub.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ sub.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ sub.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf sub * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ sub.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sup.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sup.js
deleted file mode 100644
index 694806e4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_sup.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object sup() * @type sup * @super Object * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535900.aspx */ function sup(){}; sup.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ sup.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ sup.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ sup.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ sup.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ sup.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ sup.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ sup.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ sup.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ sup.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ sup.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ sup.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ sup.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ sup.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ sup.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ sup.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ sup.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ sup.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ sup.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ sup.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ sup.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ sup.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ sup.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ sup.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ sup.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ sup.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ sup.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ sup.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ sup.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ sup.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ sup.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ sup.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ sup.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ sup.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ sup.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ sup.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ sup.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ sup.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ sup.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ sup.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ sup.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ sup.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ sup.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ sup.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ sup.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ sup.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ sup.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ sup.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ sup.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ sup.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ sup.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ sup.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ sup.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ sup.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ sup.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ sup.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ sup.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ sup.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ sup.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ sup.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ sup.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ sup.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ sup.prototype.clearAttributes=function(){}; /** * function click() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ sup.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ sup.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ sup.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ sup.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ sup.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ sup.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ sup.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ sup.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ sup.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ sup.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ sup.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ sup.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ sup.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ sup.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ sup.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ sup.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ sup.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ sup.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ sup.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ sup.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ sup.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ sup.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ sup.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ sup.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ sup.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ sup.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ sup.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ sup.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ sup.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ sup.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ sup.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ sup.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ sup.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ sup.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ sup.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ sup.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ sup.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ sup.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ sup.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ sup.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ sup.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ sup.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ sup.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ sup.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ sup.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ sup.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ sup.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ sup.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ sup.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ sup.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ sup.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ sup.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ sup.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ sup.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ sup.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ sup.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ sup.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ sup.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ sup.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ sup.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ sup.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ sup.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ sup.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ sup.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ sup.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ sup.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ sup.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ sup.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ sup.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ sup.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ sup.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ sup.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ sup.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ sup.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ sup.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ sup.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ sup.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ sup.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ sup.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ sup.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ sup.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ sup.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ sup.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ sup.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ sup.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ sup.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ sup.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ sup.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ sup.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ sup.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ sup.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ sup.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ sup.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ sup.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ sup.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ sup.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ sup.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ sup.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf sup * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ sup.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_table.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_table.js
deleted file mode 100644
index 0a77021d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_table.js
+++ /dev/null
@@ -1,164 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object table() * @type table * @super Object * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535901.aspx */ function table(){}; table.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ table.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533068.aspx */ table.prototype.align=""; /** * Property background * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533499.aspx */ table.prototype.background=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ table.prototype.bgColor=new Object(); /** * Property border * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533534.aspx */ table.prototype.border=new Object(); /** * Property borderColor * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533517.aspx */ table.prototype.borderColor=new Object(); /** * Property borderColorDark * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533514.aspx */ table.prototype.borderColorDark=new Object(); /** * Property borderColorLight * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533515.aspx */ table.prototype.borderColorLight=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ table.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ table.prototype.canHaveHTML=false; /** * Property caption * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533548.aspx */ table.prototype.caption=""; /** * Property caption * @type caption * @returns {caption}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535213.aspx */ table.prototype.caption= new caption(); /** * Property cellPadding * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533550.aspx */ table.prototype.cellPadding=new Object(); /** * Property cellSpacing * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533551.aspx */ table.prototype.cellSpacing=new Object(); /** * Property className * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ table.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ table.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ table.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ table.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ table.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ table.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ table.prototype.clientWidth=0; /** * Property cols * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533583.aspx */ table.prototype.cols=0; /** * Property dataPageSize * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533708.aspx */ table.prototype.dataPageSize=0; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ table.prototype.dataSrc=""; /** * Property dir * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ table.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ table.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ table.prototype.childNodes= new childNodes(); /** * Property frame * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533769.aspx */ table.prototype.frame=""; /** * Property height * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ table.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ table.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ table.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ table.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ table.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ table.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ table.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ table.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ table.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ table.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ table.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ table.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ table.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ table.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ table.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ table.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ table.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ table.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ table.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ table.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ table.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ table.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ table.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ table.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ table.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ table.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ table.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ table.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ table.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ table.prototype.readyState=""; /** * Property rules * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534384.aspx */ table.prototype.rules=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ table.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ table.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ table.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ table.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ table.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ table.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ table.prototype.all= new all(); /** * Property summary * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534652.aspx */ table.prototype.summary=""; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ table.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ table.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ table.prototype.tagUrn=""; /** * Property tFoot * @type tFoot * @returns {tFoot}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534680.aspx */ table.prototype.tFoot=new tFoot(); /** * Property tFoot * @type tFoot * @returns {tFoot}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535907.aspx */ table.prototype.tFoot= new tFoot(); /** * Property tHead * @type tHead * @returns {tHead}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534681.aspx */ table.prototype.tHead=new tHead(); /** * Property tHead * @type tHead * @returns {tHead}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535909.aspx */ table.prototype.tHead= new tHead(); /** * Property title * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ table.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ table.prototype.uniqueID=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ table.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ table.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ table.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ table.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ table.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ table.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ table.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ table.prototype.clearAttributes=function(){}; /** * function click() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ table.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ table.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ table.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ table.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ table.prototype.contains=function(oElement){}; /** * function createCaption() * @type caption * @returns {caption}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536381.aspx */ table.prototype.createCaption=function(){}; /** * function createTFoot() * @type tFoot * @returns {tFoot}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536402.aspx */ table.prototype.createTFoot=function(){}; /** * function createTHead() * @type tHead * @returns {tHead}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536403.aspx */ table.prototype.createTHead=function(){}; /** * function deleteCaption() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536405.aspx */ table.prototype.deleteCaption=function(){}; /** * function deleteRow(iRowIndex) * @param {Number} iRowIndex * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536408.aspx */ table.prototype.deleteRow=function(iRowIndex){}; /** * Property rows * @type rows * @returns {rows}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ table.prototype.rows= new rows(); /** * function deleteTFoot() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536409.aspx */ table.prototype.deleteTFoot=function(){}; /** * function deleteTHead() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536410.aspx */ table.prototype.deleteTHead=function(){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ table.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ table.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ table.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function firstPage() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536424.aspx */ table.prototype.firstPage=function(){}; /** * function focus() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ table.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ table.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ table.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ table.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ table.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ table.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ table.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ table.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ table.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ table.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ table.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ table.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ table.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ table.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ table.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function insertRow(iIndex) * @param {Number} iIndex * @type tr * @returns {tr}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536457.aspx */ table.prototype.insertRow=function(iIndex){}; /** * function lastPage() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536612.aspx */ table.prototype.lastPage=function(){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ table.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function moveRow(iSource,iTarget) * @param {Number} iSource * @param {Number} iTarget * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536622.aspx */ table.prototype.moveRow=function(iSource,iTarget){}; /** * function nextPage() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536644.aspx */ table.prototype.nextPage=function(){}; /** * function normalize() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ table.prototype.normalize=function(){}; /** * function previousPage() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536670.aspx */ table.prototype.previousPage=function(){}; /** * function refresh() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536687.aspx */ table.prototype.refresh=function(){}; /** * function removeRule(iIndex) * @param {Number} iIndex * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531195.aspx */ table.prototype.removeRule=function(iIndex){}; /** * function releaseCapture() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ table.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ table.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ table.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ table.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ table.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ table.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ table.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ table.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ table.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ table.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ table.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ table.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ table.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ table.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ table.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ table.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ table.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ table.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ table.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ table.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ table.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ table.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ table.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ table.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ table.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ table.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ table.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ table.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ table.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ table.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ table.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ table.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ table.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ table.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ table.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ table.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ table.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ table.prototype.ondrop= new ondrop(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ table.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ table.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ table.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ table.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ table.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ table.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ table.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ table.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ table.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ table.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ table.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ table.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ table.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ table.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ table.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ table.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ table.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ table.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ table.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ table.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ table.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ table.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ table.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ table.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ table.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ table.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ table.prototype.onscroll= new onscroll(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ table.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ table.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ table.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ table.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ table.prototype.behaviorUrns= new behaviorUrns(); /** * Property cells * @type cells * @returns {cells}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537443.aspx */ table.prototype.cells= new cells(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ table.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ table.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ table.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ table.prototype.filters= new filters(); /** * Property rows * @type rows * @returns {rows}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ table.prototype.rows= new rows(); /** * Property tr * @type tr * @returns {tr}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535911.aspx */ table.prototype.tr= new tr(); /** * Property tBodies * @type tBodies * @returns {tBodies}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537490.aspx */ table.prototype.tBodies= new tBodies(); /** * Property tBody * @type tBody * @returns {tBody}
- * @memberOf table * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535902.aspx */ table.prototype.tBody= new tBody(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbodies.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbodies.js
deleted file mode 100644
index 7187b1d8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbodies.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object tBodies() * @type tBodies * @super Array * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537490.aspx */ function tBodies(){}; tBodies.prototype= new Array(); /** * Property length * @type Number * @returns {Number}
- * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ tBodies.prototype.length=0; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ tBodies.prototype.item=function(vIndex,iSubindex){}; /** * function item(vIndex,iSubindex) * @param {Number} vIndex * @param {Number} iSubindex * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536460.aspx */ tBodies.prototype.item=function(vIndex,iSubindex){}; /** * Property all * @type all * @returns {all}
- * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tBodies.prototype.all= new all(); /** * function namedItem(sName) * @param {String} sName * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536634.aspx */ tBodies.prototype.namedItem=function(sName){}; /** * function tags(sTag) * @param {Variant} sTag * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536776.aspx */ tBodies.prototype.tags=function(sTag){}; /** * function urns(sUrn) * @param {String} sUrn * @memberOf tBodies * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536780.aspx */ tBodies.prototype.urns=function(sUrn){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbody.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbody.js
deleted file mode 100644
index 634c3072..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tbody.js
+++ /dev/null
@@ -1,137 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object tBody() * @type tBody * @super Object * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535902.aspx */ function tBody(){}; tBody.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ tBody.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ tBody.prototype.align=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ tBody.prototype.bgColor=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ tBody.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ tBody.prototype.canHaveHTML=false; /** * Property ch * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533552.aspx */ tBody.prototype.ch=""; /** * Property chOff * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533557.aspx */ tBody.prototype.chOff=""; /** * Property className * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ tBody.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ tBody.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ tBody.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ tBody.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ tBody.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ tBody.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ tBody.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ tBody.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ tBody.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tBody.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ tBody.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ tBody.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ tBody.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ tBody.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ tBody.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ tBody.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ tBody.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ tBody.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ tBody.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ tBody.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ tBody.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ tBody.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ tBody.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ tBody.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ tBody.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ tBody.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ tBody.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ tBody.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ tBody.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ tBody.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ tBody.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ tBody.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ tBody.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ tBody.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ tBody.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ tBody.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ tBody.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ tBody.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ tBody.prototype.readyState=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ tBody.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ tBody.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ tBody.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ tBody.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ tBody.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ tBody.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tBody.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ tBody.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ tBody.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ tBody.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ tBody.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ tBody.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ tBody.prototype.vAlign=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ tBody.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ tBody.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ tBody.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ tBody.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ tBody.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tBody.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ tBody.prototype.clearAttributes=function(){}; /** * function click() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ tBody.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tBody.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ tBody.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ tBody.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ tBody.prototype.contains=function(oElement){}; /** * function deleteRow(iRowIndex) * @param {Number} iRowIndex * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536408.aspx */ tBody.prototype.deleteRow=function(iRowIndex){}; /** * Property rows * @type rows * @returns {rows}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ tBody.prototype.rows= new rows(); /** * function deleteTFoot() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536409.aspx */ tBody.prototype.deleteTFoot=function(){}; /** * Property tFoot * @type tFoot * @returns {tFoot}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535907.aspx */ tBody.prototype.tFoot= new tFoot(); /** * function deleteTHead() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536410.aspx */ tBody.prototype.deleteTHead=function(){}; /** * Property tHead * @type tHead * @returns {tHead}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535909.aspx */ tBody.prototype.tHead= new tHead(); /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ tBody.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ tBody.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ tBody.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tBody.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ tBody.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ tBody.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ tBody.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ tBody.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ tBody.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ tBody.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ tBody.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ tBody.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ tBody.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ tBody.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ tBody.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ tBody.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ tBody.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function insertRow(iIndex) * @param {Number} iIndex * @type tr * @returns {tr}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536457.aspx */ tBody.prototype.insertRow=function(iIndex){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ tBody.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function moveRow(iSource,iTarget) * @param {Number} iSource * @param {Number} iTarget * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536622.aspx */ tBody.prototype.moveRow=function(iSource,iTarget){}; /** * function normalize() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ tBody.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ tBody.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ tBody.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ tBody.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ tBody.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ tBody.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ tBody.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ tBody.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ tBody.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ tBody.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ tBody.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ tBody.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ tBody.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ tBody.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ tBody.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ tBody.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ tBody.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ tBody.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ tBody.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ tBody.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ tBody.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ tBody.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ tBody.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ tBody.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tBody.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tBody.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ tBody.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ tBody.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ tBody.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ tBody.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ tBody.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ tBody.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ tBody.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ tBody.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ tBody.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ tBody.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ tBody.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ tBody.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tBody.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ tBody.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ tBody.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ tBody.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ tBody.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ tBody.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ tBody.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ tBody.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ tBody.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ tBody.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ tBody.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ tBody.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ tBody.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ tBody.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ tBody.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ tBody.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ tBody.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ tBody.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ tBody.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ tBody.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ tBody.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ tBody.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ tBody.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ tBody.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ tBody.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ tBody.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tBody.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ tBody.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ tBody.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tBody.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ tBody.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ tBody.prototype.children= new children(); /** * Property rows * @type rows * @returns {rows}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ tBody.prototype.rows= new rows(); /** * Property tr * @type tr * @returns {tr}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535911.aspx */ tBody.prototype.tr= new tr(); /** * Property table * @type table * @returns {table}
- * @memberOf tBody * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535901.aspx */ tBody.prototype.table= new table(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_td.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_td.js
deleted file mode 100644
index e5bffb3d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_td.js
+++ /dev/null
@@ -1,152 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object td() * @type td * @super Object * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535903.aspx */ function td(){}; td.prototype= new Object(); /** * Property abbr * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533058.aspx */ td.prototype.abbr=""; /** * Property accessKey * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ td.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ td.prototype.align=""; /** * Property axis * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533489.aspx */ td.prototype.axis=""; /** * Property background * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533499.aspx */ td.prototype.background=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ td.prototype.bgColor=new Object(); /** * Property borderColor * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533517.aspx */ td.prototype.borderColor=new Object(); /** * Property borderColorDark * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533514.aspx */ td.prototype.borderColorDark=new Object(); /** * Property borderColorLight * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533515.aspx */ td.prototype.borderColorLight=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ td.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ td.prototype.canHaveHTML=false; /** * Property cellIndex * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533549.aspx */ td.prototype.cellIndex=0; /** * Property cells * @type cells * @returns {cells}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537443.aspx */ td.prototype.cells= new cells(); /** * Property ch * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533552.aspx */ td.prototype.ch=""; /** * Property chOff * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533557.aspx */ td.prototype.chOff=""; /** * Property className * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ td.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ td.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ td.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ td.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ td.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ td.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ td.prototype.clientWidth=0; /** * Property colSpan * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533581.aspx */ td.prototype.colSpan=0; /** * Property table * @type table * @returns {table}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535901.aspx */ td.prototype.table= new table(); /** * Property dir * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ td.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ td.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ td.prototype.childNodes= new childNodes(); /** * Property headers * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533778.aspx */ td.prototype.headers=""; /** * Property height * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ td.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ td.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ td.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ td.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ td.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ td.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ td.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ td.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ td.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ td.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ td.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ td.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ td.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ td.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ td.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ td.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ td.prototype.nodeValue=new Object(); /** * Property noWrap * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534196.aspx */ td.prototype.noWrap=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ td.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ td.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ td.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ td.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ td.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ td.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ td.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ td.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ td.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ td.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ td.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ td.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ td.prototype.readyState=""; /** * Property rowSpan * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534378.aspx */ td.prototype.rowSpan=0; /** * Property scope * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534387.aspx */ td.prototype.scope=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ td.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ td.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ td.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ td.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ td.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ td.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ td.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ td.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ td.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ td.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ td.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ td.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ td.prototype.vAlign=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ td.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ td.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ td.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ td.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ td.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ td.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ td.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ td.prototype.clearAttributes=function(){}; /** * function click() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ td.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ td.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ td.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ td.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ td.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ td.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ td.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ td.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ td.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ td.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ td.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ td.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ td.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ td.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ td.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ td.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ td.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ td.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ td.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ td.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ td.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ td.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ td.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ td.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ td.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ td.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ td.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ td.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ td.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ td.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ td.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ td.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ td.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ td.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ td.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ td.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ td.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ td.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ td.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ td.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ td.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ td.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ td.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ td.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ td.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ td.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ td.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ td.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ td.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ td.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ td.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ td.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ td.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ td.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ td.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ td.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ td.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ td.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ td.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ td.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ td.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ td.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ td.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ td.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ td.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ td.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ td.prototype.ondrop= new ondrop(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ td.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ td.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ td.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ td.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ td.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ td.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ td.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ td.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ td.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ td.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ td.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ td.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ td.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ td.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ td.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ td.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ td.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ td.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ td.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ td.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ td.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ td.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ td.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ td.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ td.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ td.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ td.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ td.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ td.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ td.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ td.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ td.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ td.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf td * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ td.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textarea.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textarea.js
deleted file mode 100644
index 947373b9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textarea.js
+++ /dev/null
@@ -1,152 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object textArea() * @type textArea * @super Object * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535904.aspx */ function textArea(){}; textArea.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ textArea.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ textArea.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ textArea.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ textArea.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ textArea.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ textArea.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ textArea.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ textArea.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ textArea.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ textArea.prototype.clientWidth=0; /** * Property cols * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533582.aspx */ textArea.prototype.cols=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ textArea.prototype.contentEditable=""; /** * Property dataFld * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533703.aspx */ textArea.prototype.dataFld=""; /** * Property dataSrc * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533709.aspx */ textArea.prototype.dataSrc=""; /** * Property defaultValue * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533718.aspx */ textArea.prototype.defaultValue=""; /** * Property dir * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ textArea.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533732.aspx */ textArea.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ textArea.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ textArea.prototype.childNodes= new childNodes(); /** * Property form * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533768.aspx */ textArea.prototype.form=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ textArea.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ textArea.prototype.id=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ textArea.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ textArea.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ textArea.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ textArea.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ textArea.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ textArea.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ textArea.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ textArea.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ textArea.prototype.lastChild=new Object(); /** * Property name * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ textArea.prototype.name=""; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ textArea.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ textArea.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ textArea.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ textArea.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ textArea.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ textArea.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ textArea.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ textArea.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ textArea.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ textArea.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ textArea.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ textArea.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ textArea.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ textArea.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ textArea.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ textArea.prototype.previousSibling=new Object(); /** * Property readOnly * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534357.aspx */ textArea.prototype.readOnly=false; /** * Property readyState * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ textArea.prototype.readyState=new Object(); /** * Property recordNumber * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534363.aspx */ textArea.prototype.recordNumber=new Object(); /** * Property rows * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534379.aspx */ textArea.prototype.rows=0; /** * Property scopeName * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ textArea.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ textArea.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ textArea.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ textArea.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ textArea.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ textArea.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ textArea.prototype.all= new all(); /** * Property status * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534649.aspx */ textArea.prototype.status=false; /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ textArea.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ textArea.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ textArea.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ textArea.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534693.aspx */ textArea.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ textArea.prototype.uniqueID=""; /** * Property value * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535122.aspx */ textArea.prototype.value=""; /** * Property wrap * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535152.aspx */ textArea.prototype.wrap=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ textArea.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ textArea.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ textArea.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ textArea.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ textArea.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ textArea.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ textArea.prototype.clearAttributes=function(){}; /** * function click() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ textArea.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ textArea.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ textArea.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ textArea.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ textArea.prototype.contains=function(oElement){}; /** * function createTextRange() * @type TextRange * @returns {TextRange}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536401.aspx */ textArea.prototype.createTextRange=function(){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ textArea.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function doScroll(sScrollAction) * @param {String} sScrollAction * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536414.aspx */ textArea.prototype.doScroll=function(sScrollAction){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ textArea.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ textArea.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ textArea.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ textArea.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ textArea.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ textArea.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ textArea.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ textArea.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ textArea.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ textArea.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ textArea.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ textArea.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ textArea.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ textArea.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ textArea.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ textArea.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ textArea.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ textArea.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ textArea.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ textArea.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ textArea.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ textArea.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ textArea.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ textArea.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ textArea.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ textArea.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ textArea.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ textArea.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ textArea.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ textArea.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ textArea.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ textArea.prototype.scrollIntoView=function(bAlignToTop){}; /** * function select() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536733.aspx */ textArea.prototype.select=function(){}; /** * function setActive() * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ textArea.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ textArea.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ textArea.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ textArea.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ textArea.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ textArea.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ textArea.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ textArea.prototype.activeElement=new Object(); /** * Property onafterupdate * @type onafterupdate * @returns {onafterupdate}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536790.aspx */ textArea.prototype.onafterupdate= new onafterupdate(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ textArea.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ textArea.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ textArea.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ textArea.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ textArea.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ textArea.prototype.onbeforepaste= new onbeforepaste(); /** * Property onbeforeupdate * @type onbeforeupdate * @returns {onbeforeupdate}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536908.aspx */ textArea.prototype.onbeforeupdate= new onbeforeupdate(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ textArea.prototype.onblur= new onblur(); /** * Property onchange * @type onchange * @returns {onchange}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536912.aspx */ textArea.prototype.onchange= new onchange(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ textArea.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ textArea.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ textArea.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ textArea.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ textArea.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ textArea.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ textArea.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ textArea.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ textArea.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ textArea.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ textArea.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ textArea.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ textArea.prototype.ondrop= new ondrop(); /** * Property onerrorupdate * @type onerrorupdate * @returns {onerrorupdate}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536931.aspx */ textArea.prototype.onerrorupdate= new onerrorupdate(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ textArea.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ textArea.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ textArea.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ textArea.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ textArea.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ textArea.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ textArea.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ textArea.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ textArea.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ textArea.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ textArea.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ textArea.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ textArea.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ textArea.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ textArea.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ textArea.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ textArea.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ textArea.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ textArea.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ textArea.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ textArea.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ textArea.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ textArea.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ textArea.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ textArea.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ textArea.prototype.onresizestart= new onresizestart(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ textArea.prototype.onscroll= new onscroll(); /** * Property onselect * @type onselect * @returns {onselect}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536967.aspx */ textArea.prototype.onselect= new onselect(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ textArea.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ textArea.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ textArea.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ textArea.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ textArea.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ textArea.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ textArea.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ textArea.prototype.children= new children(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf textArea * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ textArea.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textnode.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textnode.js
deleted file mode 100644
index 9ebfe90b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textnode.js
+++ /dev/null
@@ -1,9 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object TextNode() * @type TextNode * @super Object * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ function TextNode(){}; TextNode.prototype= new Object(); /** * Property data * @type String * @returns {String}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533711.aspx */ TextNode.prototype.data=""; /** * Property length * @type Number * @returns {Number}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534103.aspx */ TextNode.prototype.length=0; /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ TextNode.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ TextNode.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ TextNode.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ TextNode.prototype.nodeValue=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ TextNode.prototype.parentNode=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ TextNode.prototype.previousSibling=new Object(); /** * function appendData(sString) * @param {String} sString * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535935.aspx */ TextNode.prototype.appendData=function(sString){}; /** * function appendData(sString) * @param {String} sString * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535935.aspx */ TextNode.prototype.appendData=function(sString){}; /** * function deleteData(nOffset,nCount) * @param {Number} nOffset * @param {Number} nCount * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536407.aspx */ TextNode.prototype.deleteData=function(nOffset,nCount){}; /** * function insertData(nOffset,sString) * @param {Number} nOffset * @param {String} sString * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536456.aspx */ TextNode.prototype.insertData=function(nOffset,sString){}; /** * function replaceData(nOffset,nCount,sString) * @param {Number} nOffset * @param {Number} nCount * @param {String} sString * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536718.aspx */ TextNode.prototype.replaceData=function(nOffset,nCount,sString){}; /** * function splitText(iIndex) * @param {Number} iIndex * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536764.aspx */ TextNode.prototype.splitText=function(iIndex){}; /** * function substringData(nOffset,nCount) * @param {Number} nOffset * @param {Number} nCount * @memberOf TextNode * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536772.aspx */ TextNode.prototype.substringData=function(nOffset,nCount){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrange.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrange.js
deleted file mode 100644
index 361525b8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrange.js
+++ /dev/null
@@ -1,24 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object TextRange() * @type TextRange * @super Object * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ function TextRange(){}; TextRange.prototype= new Object(); /** * Property boundingHeight * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533538.aspx */ TextRange.prototype.boundingHeight=0; /** * Property boundingLeft * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533539.aspx */ TextRange.prototype.boundingLeft=0; /** * Property boundingTop * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533540.aspx */ TextRange.prototype.boundingTop=0; /** * Property boundingWidth * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533541.aspx */ TextRange.prototype.boundingWidth=0; /** * Property htmlText * @type String * @returns {String}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533874.aspx */ TextRange.prototype.htmlText=""; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ TextRange.prototype.offsetLeft=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ TextRange.prototype.offsetParent=new Object(); /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ TextRange.prototype.offsetTop=0; /** * Property text * @type String * @returns {String}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534676.aspx */ TextRange.prototype.text=""; /** * function collapse(bStart) * @param {Boolean} bStart * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536371.aspx */ TextRange.prototype.collapse=function(bStart){}; /** * function collapse(bStart) * @param {Boolean} bStart * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536371.aspx */ TextRange.prototype.collapse=function(bStart){}; /** * function compareEndPoints(sType,oRange,oRange,oRange) * @param {String} sType * @param {TextRange} oRange * @param {TextRange} oRange * @param {TextRange} oRange * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536373.aspx */ TextRange.prototype.compareEndPoints=function(sType,oRange,oRange,oRange){}; /** * function duplicate() * @type TextRange * @returns {TextRange}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536416.aspx */ TextRange.prototype.duplicate=function(){}; /** * function execCommand(sCommand,bUserInterface,vValue) * @param {String} sCommand * @param {Boolean} bUserInterface * @param {Variant} vValue * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536419.aspx */ TextRange.prototype.execCommand=function(sCommand,bUserInterface,vValue){}; /** * function expand(sUnit) * @param {String} sUnit * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536421.aspx */ TextRange.prototype.expand=function(sUnit){}; /** * function getBookmark() * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536432.aspx */ TextRange.prototype.getBookmark=function(){}; /** * function moveToBookmark(sBookmark) * @param {String} sBookmark * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536628.aspx */ TextRange.prototype.moveToBookmark=function(sBookmark){}; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ TextRange.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ TextRange.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ TextRange.prototype.getClientRects=function(){}; /** * function inRange(oRange) * @param {Boolean} oRange * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536450.aspx */ TextRange.prototype.inRange=function(oRange){}; /** * function isEqual(oCompareRange) * @param {TextRange} oCompareRange * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536458.aspx */ TextRange.prototype.isEqual=function(oCompareRange){}; /** * function move(sUnit,iCount) * @param {String} sUnit * @param {Number} iCount * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536616.aspx */ TextRange.prototype.move=function(sUnit,iCount){}; /** * function moveEnd(sUnit,iCount) * @param {String} sUnit * @param {Number} iCount * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536620.aspx */ TextRange.prototype.moveEnd=function(sUnit,iCount){}; /** * function moveStart(sUnit,iCount) * @param {String} sUnit * @param {Number} iCount * @type Number * @returns {Number}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536623.aspx */ TextRange.prototype.moveStart=function(sUnit,iCount){}; /** * function moveToElementText(oElement) * @param {Object} oElement * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536630.aspx */ TextRange.prototype.moveToElementText=function(oElement){}; /** * function moveToPoint(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536632.aspx */ TextRange.prototype.moveToPoint=function(iX,iY){}; /** * function parentElement() * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536654.aspx */ TextRange.prototype.parentElement=function(){}; /** * function pasteHTML(sHTMLText) * @param {String} sHTMLText * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536656.aspx */ TextRange.prototype.pasteHTML=function(sHTMLText){}; /** * function queryCommandEnabled(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536676.aspx */ TextRange.prototype.queryCommandEnabled=function(sCmdID){}; /** * function queryCommandIndeterm(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536678.aspx */ TextRange.prototype.queryCommandIndeterm=function(sCmdID){}; /** * function queryCommandState(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536679.aspx */ TextRange.prototype.queryCommandState=function(sCmdID){}; /** * function queryCommandSupported(sCmdID) * @param {String} sCmdID * @type Boolean * @returns {Boolean}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536681.aspx */ TextRange.prototype.queryCommandSupported=function(sCmdID){}; /** * function queryCommandValue(sCmdID) * @param {String} sCmdID * @type Object * @returns {Object}
- * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536683.aspx */ TextRange.prototype.queryCommandValue=function(sCmdID){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ TextRange.prototype.scrollIntoView=function(bAlignToTop){}; /** * function select() * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536735.aspx */ TextRange.prototype.select=function(){}; /** * function setEndPoint(sType,oTextRange,oTextRange,oTextRange) * @param {String} sType * @param {TextRange} oTextRange * @param {TextRange} oTextRange * @param {TextRange} oTextRange * @memberOf TextRange * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536745.aspx */ TextRange.prototype.setEndPoint=function(sType,oTextRange,oTextRange,oTextRange){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrectangle.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrectangle.js
deleted file mode 100644
index 41cb9cea..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_textrectangle.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object TextRectangle() * @type TextRectangle * @super Object * @memberOf TextRectangle * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ function TextRectangle(){}; TextRectangle.prototype= new Object(); /** * Property bottom * @type Number * @returns {Number}
- * @memberOf TextRectangle * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533535.aspx */ TextRectangle.prototype.bottom=0; /** * Property left * @type Number * @returns {Number}
- * @memberOf TextRectangle * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534099.aspx */ TextRectangle.prototype.left=0; /** * Property right * @type Number * @returns {Number}
- * @memberOf TextRectangle * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534374.aspx */ TextRectangle.prototype.right=0; /** * Property top * @type Number * @returns {Number}
- * @memberOf TextRectangle * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534688.aspx */ TextRectangle.prototype.top=0; /** * function getClientRects() * @memberOf TextRectangle * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ TextRectangle.prototype.getClientRects=function(){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tfoot.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tfoot.js
deleted file mode 100644
index 62cc1b04..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tfoot.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object tFoot() * @type tFoot * @super Object * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535907.aspx */ function tFoot(){}; tFoot.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ tFoot.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ tFoot.prototype.align=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ tFoot.prototype.bgColor=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ tFoot.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ tFoot.prototype.canHaveHTML=false; /** * Property ch * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533552.aspx */ tFoot.prototype.ch=""; /** * Property chOff * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533557.aspx */ tFoot.prototype.chOff=""; /** * Property className * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ tFoot.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ tFoot.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ tFoot.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ tFoot.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ tFoot.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ tFoot.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ tFoot.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ tFoot.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ tFoot.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tFoot.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ tFoot.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ tFoot.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ tFoot.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ tFoot.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ tFoot.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ tFoot.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ tFoot.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ tFoot.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ tFoot.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ tFoot.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ tFoot.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ tFoot.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ tFoot.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ tFoot.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ tFoot.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ tFoot.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ tFoot.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ tFoot.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ tFoot.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ tFoot.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ tFoot.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ tFoot.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ tFoot.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ tFoot.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ tFoot.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ tFoot.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ tFoot.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ tFoot.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ tFoot.prototype.readyState=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ tFoot.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ tFoot.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ tFoot.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ tFoot.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ tFoot.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ tFoot.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tFoot.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ tFoot.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ tFoot.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ tFoot.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ tFoot.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ tFoot.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ tFoot.prototype.vAlign=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ tFoot.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ tFoot.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ tFoot.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ tFoot.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ tFoot.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tFoot.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ tFoot.prototype.clearAttributes=function(){}; /** * function click() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ tFoot.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tFoot.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ tFoot.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ tFoot.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ tFoot.prototype.contains=function(oElement){}; /** * function deleteRow(iRowIndex) * @param {Number} iRowIndex * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536408.aspx */ tFoot.prototype.deleteRow=function(iRowIndex){}; /** * Property rows * @type rows * @returns {rows}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ tFoot.prototype.rows= new rows(); /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ tFoot.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ tFoot.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ tFoot.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tFoot.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ tFoot.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ tFoot.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ tFoot.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ tFoot.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ tFoot.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ tFoot.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ tFoot.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ tFoot.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ tFoot.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ tFoot.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ tFoot.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ tFoot.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ tFoot.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function insertRow(iIndex) * @param {Number} iIndex * @type tr * @returns {tr}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536457.aspx */ tFoot.prototype.insertRow=function(iIndex){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ tFoot.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function moveRow(iSource,iTarget) * @param {Number} iSource * @param {Number} iTarget * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536622.aspx */ tFoot.prototype.moveRow=function(iSource,iTarget){}; /** * function normalize() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ tFoot.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ tFoot.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ tFoot.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ tFoot.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ tFoot.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ tFoot.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ tFoot.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ tFoot.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ tFoot.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ tFoot.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ tFoot.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ tFoot.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ tFoot.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ tFoot.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ tFoot.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ tFoot.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ tFoot.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ tFoot.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ tFoot.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ tFoot.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ tFoot.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ tFoot.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ tFoot.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ tFoot.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tFoot.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tFoot.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ tFoot.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ tFoot.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ tFoot.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ tFoot.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ tFoot.prototype.ondeactivate= new ondeactivate(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ tFoot.prototype.ondragenter= new ondragenter(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ tFoot.prototype.ondragstart= new ondragstart(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tFoot.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ tFoot.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ tFoot.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ tFoot.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ tFoot.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ tFoot.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ tFoot.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ tFoot.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ tFoot.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ tFoot.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ tFoot.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ tFoot.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ tFoot.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ tFoot.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ tFoot.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ tFoot.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ tFoot.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ tFoot.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ tFoot.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ tFoot.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ tFoot.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ tFoot.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ tFoot.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ tFoot.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ tFoot.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ tFoot.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tFoot.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ tFoot.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ tFoot.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tFoot.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ tFoot.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ tFoot.prototype.children= new children(); /** * Property rows * @type rows * @returns {rows}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ tFoot.prototype.rows= new rows(); /** * Property tr * @type tr * @returns {tr}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535911.aspx */ tFoot.prototype.tr= new tr(); /** * Property table * @type table * @returns {table}
- * @memberOf tFoot * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535901.aspx */ tFoot.prototype.table= new table(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_th.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_th.js
deleted file mode 100644
index 84d148c9..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_th.js
+++ /dev/null
@@ -1,144 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object th() * @type th * @super Object * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535908.aspx */ function th(){}; th.prototype= new Object(); /** * Property abbr * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533058.aspx */ th.prototype.abbr=""; /** * Property accessKey * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ th.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ th.prototype.align=""; /** * Property axis * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533489.aspx */ th.prototype.axis=""; /** * Property background * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533499.aspx */ th.prototype.background=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ th.prototype.bgColor=new Object(); /** * Property borderColor * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533517.aspx */ th.prototype.borderColor=new Object(); /** * Property borderColorDark * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533514.aspx */ th.prototype.borderColorDark=new Object(); /** * Property borderColorLight * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533515.aspx */ th.prototype.borderColorLight=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ th.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ th.prototype.canHaveHTML=false; /** * Property cellIndex * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533549.aspx */ th.prototype.cellIndex=0; /** * Property cells * @type cells * @returns {cells}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537443.aspx */ th.prototype.cells= new cells(); /** * Property ch * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533552.aspx */ th.prototype.ch=""; /** * Property chOff * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533557.aspx */ th.prototype.chOff=""; /** * Property className * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ th.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ th.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ th.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ th.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ th.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ th.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ th.prototype.clientWidth=0; /** * Property colSpan * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533581.aspx */ th.prototype.colSpan=0; /** * Property table * @type table * @returns {table}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535901.aspx */ th.prototype.table= new table(); /** * Property dir * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ th.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ th.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ th.prototype.childNodes= new childNodes(); /** * Property headers * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533778.aspx */ th.prototype.headers=""; /** * Property height * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533781.aspx */ th.prototype.height=new Object(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ th.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ th.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ th.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ th.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ th.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ th.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ th.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ th.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ th.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ th.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ th.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ th.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ th.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ th.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ th.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ th.prototype.nodeValue=new Object(); /** * Property noWrap * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534196.aspx */ th.prototype.noWrap=false; /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ th.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ th.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ th.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ th.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ th.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ th.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ th.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ th.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ th.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ th.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ th.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ th.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ th.prototype.readyState=""; /** * Property rowSpan * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534378.aspx */ th.prototype.rowSpan=0; /** * Property scope * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534387.aspx */ th.prototype.scope=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ th.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ th.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ th.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ th.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ th.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ th.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ th.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ th.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ th.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ th.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ th.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ th.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ th.prototype.vAlign=""; /** * Property width * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535147.aspx */ th.prototype.width=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ th.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ th.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ th.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ th.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ th.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ th.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ th.prototype.clearAttributes=function(){}; /** * function click() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ th.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ th.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ th.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ th.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ th.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ th.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ th.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ th.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ th.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ th.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ th.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ th.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ th.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ th.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ th.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ th.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ th.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ th.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ th.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ th.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ th.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ th.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ th.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ th.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ th.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ th.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ th.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ th.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ th.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ th.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ th.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ th.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ th.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ th.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ th.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ th.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ th.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ th.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ th.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ th.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ th.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ th.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ th.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ th.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ th.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ th.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ th.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ th.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ th.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ th.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ th.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ th.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ th.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ th.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ th.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ th.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ th.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ th.prototype.ondeactivate= new ondeactivate(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ th.prototype.ondragenter= new ondragenter(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ th.prototype.ondragstart= new ondragstart(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ th.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ th.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ th.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ th.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ th.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ th.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ th.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ th.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ th.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ th.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ th.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ th.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ th.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ th.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ th.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ th.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ th.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ th.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ th.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ th.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ th.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ th.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ th.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ th.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ th.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ th.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ th.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ th.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ th.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ th.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ th.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ th.prototype.TextNode= new TextNode(); /** * Property filters * @type filters * @returns {filters}
- * @memberOf th * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537452.aspx */ th.prototype.filters= new filters(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_thead.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_thead.js
deleted file mode 100644
index 17d926e1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_thead.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object tHead() * @type tHead * @super Object * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535909.aspx */ function tHead(){}; tHead.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ tHead.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ tHead.prototype.align=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ tHead.prototype.bgColor=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ tHead.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ tHead.prototype.canHaveHTML=false; /** * Property ch * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533552.aspx */ tHead.prototype.ch=""; /** * Property chOff * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533557.aspx */ tHead.prototype.chOff=""; /** * Property className * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ tHead.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ tHead.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ tHead.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ tHead.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ tHead.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ tHead.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ tHead.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ tHead.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ tHead.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tHead.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ tHead.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ tHead.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ tHead.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ tHead.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ tHead.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ tHead.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ tHead.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ tHead.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ tHead.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ tHead.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ tHead.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ tHead.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ tHead.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ tHead.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ tHead.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ tHead.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ tHead.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ tHead.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ tHead.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ tHead.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ tHead.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ tHead.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ tHead.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ tHead.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ tHead.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ tHead.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ tHead.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ tHead.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ tHead.prototype.readyState=""; /** * Property scopeName * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ tHead.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ tHead.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ tHead.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ tHead.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ tHead.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ tHead.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tHead.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ tHead.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ tHead.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ tHead.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ tHead.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ tHead.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ tHead.prototype.vAlign=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ tHead.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ tHead.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ tHead.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ tHead.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ tHead.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tHead.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ tHead.prototype.clearAttributes=function(){}; /** * function click() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ tHead.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tHead.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ tHead.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ tHead.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ tHead.prototype.contains=function(oElement){}; /** * function deleteRow(iRowIndex) * @param {Number} iRowIndex * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536408.aspx */ tHead.prototype.deleteRow=function(iRowIndex){}; /** * Property rows * @type rows * @returns {rows}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ tHead.prototype.rows= new rows(); /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ tHead.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ tHead.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ tHead.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tHead.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ tHead.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ tHead.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ tHead.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ tHead.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ tHead.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ tHead.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ tHead.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ tHead.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ tHead.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ tHead.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ tHead.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ tHead.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ tHead.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function insertRow(iIndex) * @param {Number} iIndex * @type tr * @returns {tr}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536457.aspx */ tHead.prototype.insertRow=function(iIndex){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ tHead.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function moveRow(iSource,iTarget) * @param {Number} iSource * @param {Number} iTarget * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536622.aspx */ tHead.prototype.moveRow=function(iSource,iTarget){}; /** * function normalize() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ tHead.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ tHead.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ tHead.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ tHead.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ tHead.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ tHead.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ tHead.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ tHead.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ tHead.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ tHead.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ tHead.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ tHead.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ tHead.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ tHead.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ tHead.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ tHead.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ tHead.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ tHead.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ tHead.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ tHead.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ tHead.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ tHead.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ tHead.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ tHead.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tHead.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tHead.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ tHead.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ tHead.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ tHead.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ tHead.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ tHead.prototype.ondeactivate= new ondeactivate(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ tHead.prototype.ondragenter= new ondragenter(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ tHead.prototype.ondragstart= new ondragstart(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tHead.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ tHead.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ tHead.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ tHead.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ tHead.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ tHead.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ tHead.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ tHead.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ tHead.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ tHead.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ tHead.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ tHead.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ tHead.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ tHead.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ tHead.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ tHead.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ tHead.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ tHead.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ tHead.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ tHead.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ tHead.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ tHead.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ tHead.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ tHead.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ tHead.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ tHead.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tHead.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ tHead.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ tHead.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tHead.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ tHead.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ tHead.prototype.children= new children(); /** * Property rows * @type rows * @returns {rows}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ tHead.prototype.rows= new rows(); /** * Property tr * @type tr * @returns {tr}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535911.aspx */ tHead.prototype.tr= new tr(); /** * Property table * @type table * @returns {table}
- * @memberOf tHead * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535901.aspx */ tHead.prototype.table= new table(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timeall.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timeall.js
deleted file mode 100644
index 4ec7fcf2..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timeall.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object timeAll() * @type timeAll * @super Array * @memberOf timeAll * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533609.aspx */ function timeAll(){}; timeAll.prototype= new Array(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeAll * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359098.aspx */ timeAll.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeAll * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359109.aspx */ timeAll.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeAll * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359109.aspx */ timeAll.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeAll * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359117.aspx */ timeAll.prototype.TF-8"= new TF-8"(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timechildren.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timechildren.js
deleted file mode 100644
index 242feb7c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_timechildren.js
+++ /dev/null
@@ -1,5 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object timeChildren() * @type timeChildren * @super Array * @memberOf timeChildren * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533610.aspx */ function timeChildren(){}; timeChildren.prototype= new Array(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeChildren * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359098.aspx */ timeChildren.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeChildren * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359109.aspx */ timeChildren.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeChildren * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359109.aspx */ timeChildren.prototype.TF-8"= new TF-8"(); /** * Property TF-8" * @type TF-8" * @returns {TF-8"}
- * @memberOf timeChildren * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa359117.aspx */ timeChildren.prototype.TF-8"= new TF-8"(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_title.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_title.js
deleted file mode 100644
index 948948ba..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_title.js
+++ /dev/null
@@ -1,54 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object title() * @type title * @super Object * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535910.aspx */ function title(){}; title.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ title.prototype.canHaveHTML=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ title.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ title.prototype.childNodes= new childNodes(); /** * Property id * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ title.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ title.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ title.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ title.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ title.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ title.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ title.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ title.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ title.prototype.lang=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ title.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ title.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ title.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ title.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ title.prototype.nodeValue=new Object(); /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ title.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ title.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ title.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ title.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ title.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ title.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ title.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ title.prototype.scopeName=""; /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ title.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ title.prototype.all= new all(); /** * Property tagName * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ title.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ title.prototype.tagUrn=""; /** * Property text * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534678.aspx */ title.prototype.text=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ title.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ title.prototype.addBehavior=function(sUrl){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ title.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ title.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function clearAttributes() * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ title.prototype.clearAttributes=function(){}; /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ title.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ title.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ title.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ title.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ title.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ title.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ title.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ title.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ title.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ title.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ title.prototype.name=""; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ title.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ title.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ title.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ title.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ title.prototype.normalize=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ title.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ title.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ title.prototype.removeBehavior=function(iID){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ title.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ title.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ title.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ title.prototype.swapNode=function(oNode){}; /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ title.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ title.prototype.onreadystatechange= new onreadystatechange(); /** * Property all * @type all * @returns {all}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ title.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ title.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ title.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ title.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ title.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf title * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ title.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_toelement.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_toelement.js
deleted file mode 100644
index c4c1c04e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_toelement.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object toElement() * @type toElement * @super Object * @memberOf toElement * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534684.aspx */ function toElement(){}; toElement.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tr.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tr.js
deleted file mode 100644
index 7102cadc..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tr.js
+++ /dev/null
@@ -1,148 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object tr() * @type tr * @super Object * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535911.aspx */ function tr(){}; tr.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ tr.prototype.accessKey=""; /** * Property align * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533069.aspx */ tr.prototype.align=""; /** * Property bgColor * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533505.aspx */ tr.prototype.bgColor=new Object(); /** * Property borderColor * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533517.aspx */ tr.prototype.borderColor=new Object(); /** * Property borderColorDark * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533514.aspx */ tr.prototype.borderColorDark=new Object(); /** * Property borderColorLight * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533515.aspx */ tr.prototype.borderColorLight=new Object(); /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ tr.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ tr.prototype.canHaveHTML=false; /** * Property ch * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533552.aspx */ tr.prototype.ch=""; /** * Property chOff * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533557.aspx */ tr.prototype.chOff=""; /** * Property className * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ tr.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ tr.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ tr.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ tr.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ tr.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ tr.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ tr.prototype.clientWidth=0; /** * Property dir * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ tr.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ tr.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tr.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ tr.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ tr.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ tr.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ tr.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ tr.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ tr.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ tr.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ tr.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ tr.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ tr.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ tr.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ tr.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ tr.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ tr.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ tr.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ tr.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ tr.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ tr.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ tr.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ tr.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ tr.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ tr.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ tr.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ tr.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ tr.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ tr.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ tr.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ tr.prototype.previousSibling=new Object(); /** * Property readyState * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534359.aspx */ tr.prototype.readyState=""; /** * Property rowIndex * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534377.aspx */ tr.prototype.rowIndex=0; /** * Property rows * @type rows * @returns {rows}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537484.aspx */ tr.prototype.rows= new rows(); /** * Property table * @type table * @returns {table}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535901.aspx */ tr.prototype.table= new table(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ tr.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ tr.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ tr.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ tr.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ tr.prototype.scrollWidth=new Object(); /** * Property sectionRowIndex * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534621.aspx */ tr.prototype.sectionRowIndex=0; /** * Property tBody * @type tBody * @returns {tBody}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535902.aspx */ tr.prototype.tBody= new tBody(); /** * Property tHead * @type tHead * @returns {tHead}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535909.aspx */ tr.prototype.tHead= new tHead(); /** * Property tFoot * @type tFoot * @returns {tFoot}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535907.aspx */ tr.prototype.tFoot= new tFoot(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ tr.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tr.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ tr.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ tr.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ tr.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ tr.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ tr.prototype.uniqueID=""; /** * Property vAlign * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535120.aspx */ tr.prototype.vAlign=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ tr.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ tr.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ tr.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ tr.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ tr.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tr.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ tr.prototype.clearAttributes=function(){}; /** * function click() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ tr.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tr.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ tr.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ tr.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ tr.prototype.contains=function(oElement){}; /** * function deleteCell(iIndex) * @param {Number} iIndex * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536406.aspx */ tr.prototype.deleteCell=function(iIndex){}; /** * Property td * @type td * @returns {td}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535903.aspx */ tr.prototype.td= new td(); /** * Property cells * @type cells * @returns {cells}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537443.aspx */ tr.prototype.cells= new cells(); /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ tr.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ tr.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ tr.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ tr.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tr.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ tr.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ tr.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ tr.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ tr.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ tr.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ tr.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ tr.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ tr.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ tr.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ tr.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ tr.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ tr.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ tr.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function insertCell(iIndex) * @param {Number} iIndex * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536455.aspx */ tr.prototype.insertCell=function(iIndex){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ tr.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ tr.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ tr.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ tr.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ tr.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ tr.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ tr.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ tr.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ tr.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ tr.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ tr.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ tr.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ tr.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ tr.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ tr.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ tr.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ tr.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ tr.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ tr.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ tr.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ tr.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ tr.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ tr.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ tr.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ tr.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ tr.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ tr.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tr.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tr.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ tr.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ tr.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ tr.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ tr.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ tr.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ tr.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ tr.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ tr.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ tr.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ tr.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ tr.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ tr.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ tr.prototype.ondrop= new ondrop(); /** * Property onfilterchange * @type onfilterchange * @returns {onfilterchange}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536932.aspx */ tr.prototype.onfilterchange= new onfilterchange(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tr.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ tr.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ tr.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ tr.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ tr.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ tr.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ tr.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ tr.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ tr.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ tr.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ tr.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ tr.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ tr.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ tr.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ tr.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ tr.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ tr.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ tr.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ tr.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ tr.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ tr.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ tr.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ tr.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ tr.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ tr.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ tr.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tr.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ tr.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ tr.prototype.behaviorUrns= new behaviorUrns(); /** * Property cells * @type cells * @returns {cells}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537443.aspx */ tr.prototype.cells= new cells(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tr.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ tr.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf tr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ tr.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tt.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tt.js
deleted file mode 100644
index 2da67e1c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_tt.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object tt() * @type tt * @super Object * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535912.aspx */ function tt(){}; tt.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ tt.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ tt.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ tt.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ tt.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ tt.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ tt.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ tt.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ tt.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ tt.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ tt.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ tt.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ tt.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ tt.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tt.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ tt.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ tt.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ tt.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ tt.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ tt.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ tt.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ tt.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ tt.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ tt.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ tt.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ tt.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ tt.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ tt.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ tt.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ tt.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ tt.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ tt.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ tt.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ tt.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ tt.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ tt.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ tt.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ tt.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ tt.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ tt.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ tt.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ tt.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ tt.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ tt.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ tt.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ tt.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ tt.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ tt.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ tt.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ tt.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tt.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ tt.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ tt.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ tt.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ tt.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ tt.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ tt.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ tt.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ tt.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ tt.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ tt.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tt.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ tt.prototype.clearAttributes=function(){}; /** * function click() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ tt.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tt.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ tt.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ tt.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ tt.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ tt.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ tt.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ tt.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tt.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ tt.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ tt.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ tt.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ tt.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ tt.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ tt.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ tt.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ tt.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ tt.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ tt.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ tt.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ tt.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ tt.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ tt.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ tt.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ tt.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ tt.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ tt.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ tt.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ tt.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ tt.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ tt.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ tt.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ tt.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ tt.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ tt.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ tt.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ tt.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ tt.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ tt.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ tt.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ tt.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ tt.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ tt.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ tt.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ tt.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ tt.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ tt.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ tt.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ tt.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ tt.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ tt.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ tt.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ tt.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ tt.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ tt.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ tt.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ tt.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ tt.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ tt.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ tt.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ tt.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ tt.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ tt.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ tt.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ tt.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ tt.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ tt.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ tt.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ tt.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ tt.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ tt.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ tt.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ tt.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ tt.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ tt.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ tt.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ tt.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ tt.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ tt.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ tt.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ tt.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ tt.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ tt.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ tt.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ tt.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ tt.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ tt.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ tt.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ tt.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ tt.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ tt.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ tt.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ tt.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ tt.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ tt.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ tt.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ tt.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ tt.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf tt * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ tt.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_type.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_type.js
deleted file mode 100644
index 030beb2d..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_type.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object type() * @type type * @super Object * @memberOf type * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534697.aspx */ function type(){}; type.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_u.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_u.js
deleted file mode 100644
index 94de55ae..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_u.js
+++ /dev/null
@@ -1,130 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object u() * @type u * @super Object * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535913.aspx */ function u(){}; u.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ u.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ u.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ u.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ u.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ u.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ u.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ u.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ u.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ u.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ u.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ u.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ u.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ u.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ u.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ u.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ u.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ u.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ u.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ u.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ u.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ u.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ u.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ u.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ u.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ u.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ u.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ u.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ u.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ u.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ u.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ u.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ u.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ u.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ u.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ u.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ u.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ u.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ u.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ u.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ u.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ u.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ u.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ u.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ u.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ u.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ u.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ u.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ u.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ u.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ u.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ u.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ u.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ u.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ u.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ u.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ u.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ u.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ u.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ u.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ u.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ u.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ u.prototype.clearAttributes=function(){}; /** * function click() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ u.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ u.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ u.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ u.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ u.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ u.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ u.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ u.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ u.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ u.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ u.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ u.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ u.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ u.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ u.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ u.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ u.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ u.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ u.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ u.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ u.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ u.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ u.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ u.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ u.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ u.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ u.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ u.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ u.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ u.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ u.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ u.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ u.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ u.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ u.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ u.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ u.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ u.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ u.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ u.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ u.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ u.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ u.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ u.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ u.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ u.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ u.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ u.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ u.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ u.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ u.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ u.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ u.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ u.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ u.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ u.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ u.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ u.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ u.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ u.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ u.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ u.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ u.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ u.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ u.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ u.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ u.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ u.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ u.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ u.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ u.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ u.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ u.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ u.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ u.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ u.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ u.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ u.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ u.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ u.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ u.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ u.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ u.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ u.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ u.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ u.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ u.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ u.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ u.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ u.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ u.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ u.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ u.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ u.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ u.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ u.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ u.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ u.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf u * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ u.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ul.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ul.js
deleted file mode 100644
index e2d0028e..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_ul.js
+++ /dev/null
@@ -1,136 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object ul() * @type ul * @super Object * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535914.aspx */ function ul(){}; ul.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ ul.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ ul.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ ul.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ ul.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ ul.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ ul.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ ul.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ ul.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ ul.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ ul.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ ul.prototype.clientWidth=0; /** * Property compact * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533585.aspx */ ul.prototype.compact=false; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ ul.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ ul.prototype.dir=""; /** * Property disabled * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533734.aspx */ ul.prototype.disabled=false; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ ul.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ ul.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ ul.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ ul.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ ul.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ ul.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ ul.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ ul.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ ul.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ ul.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ ul.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ ul.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ ul.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ ul.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ ul.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ ul.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ ul.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ ul.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ ul.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ ul.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ ul.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ ul.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ ul.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ ul.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ ul.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ ul.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ ul.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ ul.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ ul.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ ul.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ ul.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ ul.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ ul.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ ul.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ ul.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ ul.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ ul.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ ul.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ ul.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ ul.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ ul.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ ul.prototype.title=""; /** * Property type * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534691.aspx */ ul.prototype.type=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ ul.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ ul.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ ul.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ ul.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ ul.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ ul.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ul.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ ul.prototype.clearAttributes=function(){}; /** * function click() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ ul.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ ul.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ ul.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ ul.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ ul.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ ul.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function dragDrop() * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536415.aspx */ ul.prototype.dragDrop=function(){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ ul.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ ul.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ul.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ ul.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ ul.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ ul.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ ul.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ ul.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ ul.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ ul.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ ul.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ ul.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ ul.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ ul.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ ul.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ ul.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ ul.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ ul.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ ul.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ ul.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ ul.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ ul.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ ul.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ ul.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ ul.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ ul.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ ul.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ ul.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ ul.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ ul.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ ul.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ ul.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ ul.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ ul.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ ul.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ ul.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ ul.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ ul.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ ul.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ ul.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecopy * @type onbeforecopy * @returns {onbeforecopy}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536901.aspx */ ul.prototype.onbeforecopy= new onbeforecopy(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ ul.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ ul.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ ul.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ ul.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ ul.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ ul.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ ul.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ ul.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncopy * @type oncopy * @returns {oncopy}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536916.aspx */ ul.prototype.oncopy= new oncopy(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ ul.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ ul.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ ul.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ ul.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ ul.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ ul.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ ul.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ ul.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ ul.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ ul.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ ul.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ ul.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ ul.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ ul.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ ul.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ ul.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ ul.prototype.onkeyup= new onkeyup(); /** * Property onlayoutcomplete * @type onlayoutcomplete * @returns {onlayoutcomplete}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536941.aspx */ ul.prototype.onlayoutcomplete= new onlayoutcomplete(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ ul.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ ul.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ ul.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ ul.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ ul.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ ul.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ ul.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ ul.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ ul.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ ul.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ ul.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ ul.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ ul.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ ul.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ ul.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ ul.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ ul.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ ul.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ ul.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ ul.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ ul.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ ul.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ ul.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ ul.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ ul.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf ul * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ ul.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_userprofile.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_userprofile.js
deleted file mode 100644
index fa9150d1..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_userprofile.js
+++ /dev/null
@@ -1,3 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object userProfile() * @type userProfile * @super Object * @memberOf userProfile * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535915.aspx */ function userProfile(){}; userProfile.prototype= new Object(); /** * function addReadRequest(sAttributeName,vReserved) * @param {String} sAttributeName * @param {Boolean} vReserved * @type Boolean * @returns {Boolean}
- * @memberOf userProfile * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535929.aspx */ userProfile.prototype.addReadRequest=function(sAttributeName,vReserved){}; /** * function clearRequest() * @memberOf userProfile * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536355.aspx */ userProfile.prototype.clearRequest=function(){}; /** * function doReadRequest(vUsageCode,vFriendlyName,vDomain,vPath,vExpiration,vReserved) * @param {Number} vUsageCode * @param {String} vFriendlyName * @param {String} vDomain * @param {String} vPath * @param {Variant} vExpiration * @param {Optional.} vReserved This parameter is reserved. * @memberOf userProfile * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536413.aspx */ userProfile.prototype.doReadRequest=function(vUsageCode,vFriendlyName,vDomain,vPath,vExpiration,vReserved){}; /** * function getAttribute(sAttributeName) * @param {String} sAttributeName * @type String * @returns {String}
- * @memberOf userProfile * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536431.aspx */ userProfile.prototype.getAttribute=function(sAttributeName){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf userProfile * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ userProfile.prototype.setAttribute=function(sName,vValue){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_var.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_var.js
deleted file mode 100644
index 9f80bb95..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_var.js
+++ /dev/null
@@ -1,128 +0,0 @@
- /******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object var() * @type var * @super Object * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535916.aspx */ function var(){}; var.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ var.prototype.accessKey=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ var.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ var.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ var.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ var.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ var.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ var.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ var.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ var.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ var.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ var.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ var.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ var.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ var.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ var.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ var.prototype.id=""; /** * Property innerHTML * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533897.aspx */ var.prototype.innerHTML=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ var.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ var.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ var.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ var.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ var.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ var.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ var.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ var.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ var.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ var.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ var.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ var.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ var.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ var.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ var.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ var.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ var.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ var.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ var.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ var.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ var.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ var.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ var.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ var.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ var.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ var.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ var.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ var.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ var.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ var.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ var.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ var.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ var.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ var.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ var.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ var.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ var.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ var.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ var.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ var.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ var.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ var.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ var.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ var.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ var.prototype.clearAttributes=function(){}; /** * function click() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ var.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ var.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ var.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ var.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ var.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ var.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ var.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ var.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ var.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ var.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ var.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ var.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ var.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ var.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ var.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ var.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ var.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ var.prototype.getElementsByTagName=function(sTagName){}; /** * function getExpression(sPropertyName) * @param {String} sPropertyName * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358797.aspx */ var.prototype.getExpression=function(sPropertyName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ var.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ var.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ var.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertAdjacentText(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536453.aspx */ var.prototype.insertAdjacentText=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ var.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ var.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ var.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ var.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ var.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ var.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ var.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ var.prototype.removeChild=function(oNode){}; /** * function removeExpression(sPropertyName) * @param {String} sPropertyName * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/aa358798.aspx */ var.prototype.removeExpression=function(sPropertyName){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ var.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ var.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ var.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ var.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ var.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ var.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ var.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ var.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ var.prototype.setCapture=function(bContainerCapture){}; /** * function setExpression(sPropertyName,sExpression,sLanguage) * @param {String} sPropertyName * @param {String} sExpression * @param {String} sLanguage * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531196.aspx */ var.prototype.setExpression=function(sPropertyName,sExpression,sLanguage){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ var.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ var.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ var.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ var.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ var.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ var.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ var.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ var.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ var.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ var.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ var.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ var.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ var.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ var.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ var.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ var.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ var.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ var.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ var.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ var.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ var.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ var.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ var.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ var.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ var.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ var.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ var.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ var.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ var.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ var.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ var.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ var.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ var.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ var.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ var.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ var.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ var.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ var.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ var.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ var.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ var.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ var.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ var.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ var.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ var.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ var.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ var.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ var.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ var.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ var.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ var.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ var.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ var.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ var.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf var * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ var.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wbr.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wbr.js
deleted file mode 100644
index a4c99ef4..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wbr.js
+++ /dev/null
@@ -1,22 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object wbr() * @type wbr * @super Object * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535917.aspx */ function wbr(){}; wbr.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ wbr.prototype.canHaveHTML=false; /** * Property id * @type String * @returns {String}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ wbr.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ wbr.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ wbr.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ wbr.prototype.isMultiLine=false; /** * Property outerHTML * @type String * @returns {String}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ wbr.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ wbr.prototype.outerText=""; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ wbr.prototype.parentElement=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ wbr.prototype.scopeName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ wbr.prototype.tagUrn=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ wbr.prototype.addBehavior=function(sUrl){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ wbr.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ wbr.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ wbr.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ wbr.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ wbr.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ wbr.prototype.name=""; /** * function normalize() * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ wbr.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ wbr.prototype.TextNode= new TextNode(); /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ wbr.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ wbr.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ wbr.prototype.removeBehavior=function(iID){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ wbr.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ wbr.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ wbr.prototype.setAttributeNode=function(oSrcAttribute){}; /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf wbr * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ wbr.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wheeldelta.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wheeldelta.js
deleted file mode 100644
index 98598708..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_wheeldelta.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object wheelDelta() * @type wheelDelta * @super Object * @memberOf wheelDelta * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535142.aspx */ function wheelDelta(){}; wheelDelta.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_window.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_window.js
deleted file mode 100644
index 3d6872f7..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_window.js
+++ /dev/null
@@ -1,63 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object window() * @type window * @super Object * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535873.aspx */ function window(){}; window.prototype= new Object(); /** * Property closed * @type Boolean * @returns {Boolean}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533574.aspx */ window.prototype.closed=false; /** * Property defaultStatus * @type String * @returns {String}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533717.aspx */ window.prototype.defaultStatus=""; /** * Property dialogArguments * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533723.aspx */ window.prototype.dialogArguments=new Object(); /** * Property dialogHeight * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533724.aspx */ window.prototype.dialogHeight=new Object(); /** * Property dialogLeft * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533725.aspx */ window.prototype.dialogLeft=new Object(); /** * Property dialogTop * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533726.aspx */ window.prototype.dialogTop=new Object(); /** * Property dialogWidth * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533727.aspx */ window.prototype.dialogWidth=new Object(); /** * Property frameElement * @type frame * @returns {frame}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533771.aspx */ window.prototype.frameElement=new frame(); /** * Property frame * @type frame * @returns {frame}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535250.aspx */ window.prototype.frame= new frame(); /** * Property iframe * @type iframe * @returns {iframe}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535258.aspx */ window.prototype.iframe= new iframe(); /** * Property document * @type document * @returns {document}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ window.prototype.document= new document(); /** * Property length * @type Number * @returns {Number}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534101.aspx */ window.prototype.length=0; /** * Property name * @type String * @returns {String}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534187.aspx */ window.prototype.name=""; /** * Property offscreenBuffering * @type Boolean * @returns {Boolean}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534198.aspx */ window.prototype.offscreenBuffering=false; /** * Property opener * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534309.aspx */ window.prototype.opener=new Object(); /** * Property parent * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534326.aspx */ window.prototype.parent=new Object(); /** * Property returnValue * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534371.aspx */ window.prototype.returnValue=new Object(); /** * Property screenLeft * @type Number * @returns {Number}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534389.aspx */ window.prototype.screenLeft=0; /** * Property screenTop * @type Number * @returns {Number}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534390.aspx */ window.prototype.screenTop=0; /** * Property self * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534627.aspx */ window.prototype.self=new Object(); /** * Property status * @type String * @returns {String}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534648.aspx */ window.prototype.status=""; /** * Property top * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534687.aspx */ window.prototype.top=new Object(); /** * Property XMLHttpRequest * @type XMLHttpRequest * @returns {XMLHttpRequest}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535874.aspx */ window.prototype.XMLHttpRequest= new XMLHttpRequest(); /** * Property frames * @type frames * @returns {frames}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537459.aspx */ window.prototype.frames= new frames(); /** * function alert(sMessage) * @param {String} sMessage * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535933.aspx */ window.prototype.alert=function(sMessage){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ window.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ window.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ window.prototype.onblur= new onblur(); /** * function clearInterval(iIntervalID) * @param {Number} iIntervalID * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536353.aspx */ window.prototype.clearInterval=function(iIntervalID){}; /** * function setInterval(vCode,iMilliSeconds,sLanguage) * @param {Variant} vCode * @param {Number} iMilliSeconds * @param {String} sLanguage * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536749.aspx */ window.prototype.setInterval=function(vCode,iMilliSeconds,sLanguage){}; /** * function clearTimeout(iTimeoutID) * @param {Number} iTimeoutID * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536357.aspx */ window.prototype.clearTimeout=function(iTimeoutID){}; /** * function setTimeout(vCode,iMilliSeconds,sLanguage) * @param {Variant} vCode * @param {Number} iMilliSeconds * @param {String} sLanguage * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536753.aspx */ window.prototype.setTimeout=function(vCode,iMilliSeconds,sLanguage){}; /** * function close() * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536367.aspx */ window.prototype.close=function(){}; /** * function confirm(sMessage) * @param {String} sMessage * @type Boolean * @returns {Boolean}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536376.aspx */ window.prototype.confirm=function(sMessage){}; /** * function createPopup(vArgs) * @param {popup} vArgs * @type popup * @returns {popup}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536392.aspx */ window.prototype.createPopup=function(vArgs){}; /** * Property popup * @type popup * @returns {popup}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535882.aspx */ window.prototype.popup= new popup(); /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ window.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function execScript(sExpression,sLanguage) * @param {String} sExpression * @param {String} sLanguage * @type null * @returns {null}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536420.aspx */ window.prototype.execScript=function(sExpression,sLanguage){}; /** * function focus() * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ window.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ window.prototype.onfocus= new onfocus(); /** * function moveBy(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536618.aspx */ window.prototype.moveBy=function(iX,iY){}; /** * function moveTo(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536626.aspx */ window.prototype.moveTo=function(iX,iY){}; /** * function navigate(sURL) * @param {String} sURL * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536638.aspx */ window.prototype.navigate=function(sURL){}; /** * function open(sURL,sName,sURL,sFeature,bReplace,sURL) * @param {String} sURL * @param {String} sName * @param {String} sURL * @param {Back} sFeature * @param {Boolean} bReplace * @param {open} sURL * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536651.aspx */ window.prototype.open=function(sURL,sName,sURL,sFeature,bReplace,sURL){}; /** * function print() * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536672.aspx */ window.prototype.print=function(){}; /** * function prompt(sMessage,sDefaultValue) * @param {String} sMessage * @param {String} sDefaultValue * @type String * @returns {String}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536673.aspx */ window.prototype.prompt=function(sMessage,sDefaultValue){}; /** * function resizeBy(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536722.aspx */ window.prototype.resizeBy=function(iX,iY){}; /** * function resizeTo(iWidth,iHeight) * @param {Number} iWidth * @param {Number} iHeight * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536723.aspx */ window.prototype.resizeTo=function(iWidth,iHeight){}; /** * function scroll(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536726.aspx */ window.prototype.scroll=function(iX,iY){}; /** * function scrollBy(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536728.aspx */ window.prototype.scrollBy=function(iX,iY){}; /** * function scrollTo(iX,iY) * @param {Number} iX * @param {Number} iY * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536731.aspx */ window.prototype.scrollTo=function(iX,iY){}; /** * function setActive() * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ window.prototype.setActive=function(){}; /** * function showHelp(sURL,vContextID) * @param {String} sURL * @param {Variant} vContextID * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536758.aspx */ window.prototype.showHelp=function(sURL,vContextID){}; /** * function showModalDialog(sURL,vArguments) * @param {String} sURL * @param {String} vArguments * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536759.aspx */ window.prototype.showModalDialog=function(sURL,vArguments){}; /** * function showModelessDialog(sURL,vArguments,sFeatures) * @param {String} sURL * @param {Variant} vArguments * @param {Variant} sFeatures * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536761.aspx */ window.prototype.showModelessDialog=function(sURL,vArguments,sFeatures){}; /** * Property clientInformation * @type clientInformation * @returns {clientInformation}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535860.aspx */ window.prototype.clientInformation= new clientInformation(); /** * Property clipboardData * @type clipboardData * @returns {clipboardData}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535220.aspx */ window.prototype.clipboardData= new clipboardData(); /** * Property document * @type document * @returns {document}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ window.prototype.document= new document(); /** * Property event * @type event * @returns {event}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535863.aspx */ window.prototype.event= new event(); /** * Property external * @type external * @returns {external}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535246.aspx */ window.prototype.external= new external(); /** * Property history * @type history * @returns {history}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535864.aspx */ window.prototype.history= new history(); /** * Property location * @type location * @returns {location}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535866.aspx */ window.prototype.location= new location(); /** * Property navigator * @type navigator * @returns {navigator}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535867.aspx */ window.prototype.navigator= new navigator(); /** * Property screen * @type screen * @returns {screen}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535868.aspx */ window.prototype.screen= new screen(); /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ window.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ window.prototype.activeElement=new Object(); /** * Property onafterprint * @type onafterprint * @returns {onafterprint}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536788.aspx */ window.prototype.onafterprint= new onafterprint(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ window.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeprint * @type onbeforeprint * @returns {onbeforeprint}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536906.aspx */ window.prototype.onbeforeprint= new onbeforeprint(); /** * Property onbeforeunload * @type onbeforeunload * @returns {onbeforeunload}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536907.aspx */ window.prototype.onbeforeunload= new onbeforeunload(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ window.prototype.onblur= new onblur(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ window.prototype.oncontrolselect= new oncontrolselect(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ window.prototype.ondeactivate= new ondeactivate(); /** * Property onerror * @type onerror * @returns {onerror}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536930.aspx */ window.prototype.onerror= new onerror(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ window.prototype.onfocus= new onfocus(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ window.prototype.onhelp= new onhelp(); /** * Property onload * @type onload * @returns {onload}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536942.aspx */ window.prototype.onload= new onload(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ window.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ window.prototype.onmovestart= new onmovestart(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ window.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ window.prototype.onresizeend= new onresizeend(); /** * Property onscroll * @type onscroll * @returns {onscroll}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536966.aspx */ window.prototype.onscroll= new onscroll(); /** * Property onunload * @type onunload * @returns {onunload}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536973.aspx */ window.prototype.onunload= new onunload(); /** * Property frames * @type frames * @returns {frames}
- * @memberOf window * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537459.aspx */ window.prototype.frames= new frames(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_x.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_x.js
deleted file mode 100644
index a40d28cd..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_x.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object x() * @type x * @super Object * @memberOf x * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535154.aspx */ function x(){}; x.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xml.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xml.js
deleted file mode 100644
index ce139d68..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xml.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object xml() * @type xml * @super Object * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535918.aspx */ function xml(){}; xml.prototype= new Object(); /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ xml.prototype.canHaveHTML=false; /** * Property id * @type String * @returns {String}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ xml.prototype.id=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ xml.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ xml.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ xml.prototype.isMultiLine=false; /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ xml.prototype.parentElement=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ xml.prototype.readyState=new Object(); /** * Property recordset * @type recordset * @returns {recordset}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534364.aspx */ xml.prototype.recordset= new recordset(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ xml.prototype.scopeName=""; /** * Property src * @type String * @returns {String}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534643.aspx */ xml.prototype.src=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ xml.prototype.tagUrn=""; /** * Property XMLDocument * @type Object * @returns {Object}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535155.aspx */ xml.prototype.XMLDocument=new Object(); /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ xml.prototype.addBehavior=function(sUrl){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ xml.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ xml.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ xml.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ xml.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ xml.prototype.name=""; /** * function namedRecordset(sQualifier,sSubChapter) * @param {String} sQualifier * @param {String} sSubChapter * @type Object * @returns {Object}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536636.aspx */ xml.prototype.namedRecordset=function(sQualifier,sSubChapter){}; /** * function normalize() * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ xml.prototype.normalize=function(){}; /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ xml.prototype.TextNode= new TextNode(); /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ xml.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ xml.prototype.removeBehavior=function(iID){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ xml.prototype.setAttributeNode=function(oSrcAttribute){}; /** * Property ondataavailable * @type ondataavailable * @returns {ondataavailable}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536918.aspx */ xml.prototype.ondataavailable= new ondataavailable(); /** * Property ondatasetchanged * @type ondatasetchanged * @returns {ondatasetchanged}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536919.aspx */ xml.prototype.ondatasetchanged= new ondatasetchanged(); /** * Property ondatasetcomplete * @type ondatasetcomplete * @returns {ondatasetcomplete}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536920.aspx */ xml.prototype.ondatasetcomplete= new ondatasetcomplete(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ xml.prototype.onreadystatechange= new onreadystatechange(); /** * Property onrowenter * @type onrowenter * @returns {onrowenter}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536962.aspx */ xml.prototype.onrowenter= new onrowenter(); /** * Property onrowexit * @type onrowexit * @returns {onrowexit}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536963.aspx */ xml.prototype.onrowexit= new onrowexit(); /** * Property onrowsdelete * @type onrowsdelete * @returns {onrowsdelete}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536964.aspx */ xml.prototype.onrowsdelete= new onrowsdelete(); /** * Property onrowsinserted * @type onrowsinserted * @returns {onrowsinserted}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536965.aspx */ xml.prototype.onrowsinserted= new onrowsinserted(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf xml * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ xml.prototype.behaviorUrns= new behaviorUrns(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmlhttprequest.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmlhttprequest.js
deleted file mode 100644
index 5c6dd0e3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmlhttprequest.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object XMLHttpRequest() * @type XMLHttpRequest * @super Object * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535874.aspx */ function XMLHttpRequest(){}; XMLHttpRequest.prototype= new Object(); /** * Property onreadystatechange * @type Object * @returns {Object}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534308.aspx */ XMLHttpRequest.prototype.onreadystatechange=new Object(); /** * Property readyState * @type Number * @returns {Number}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534361.aspx */ XMLHttpRequest.prototype.readyState=0; /** * Property responseBody * @type Object * @returns {Object}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534368.aspx */ XMLHttpRequest.prototype.responseBody=new Object(); /** * Property responseText * @type String * @returns {String}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534369.aspx */ XMLHttpRequest.prototype.responseText=""; /** * Property responseXML * @type Object * @returns {Object}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534370.aspx */ XMLHttpRequest.prototype.responseXML=new Object(); /** * Property status * @type Number * @returns {Number}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534650.aspx */ XMLHttpRequest.prototype.status=0; /** * Property statusText * @type String * @returns {String}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534647.aspx */ XMLHttpRequest.prototype.statusText=""; /** * function abort() * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535920.aspx */ XMLHttpRequest.prototype.abort=function(){}; /** * function abort() * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535920.aspx */ XMLHttpRequest.prototype.abort=function(){}; /** * function getAllResponseHeaders() * @type String * @returns {String}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536428.aspx */ XMLHttpRequest.prototype.getAllResponseHeaders=function(){}; /** * function getResponseHeader(bstrHeader) * @param {String} bstrHeader * @type String * @returns {String}
- * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536442.aspx */ XMLHttpRequest.prototype.getResponseHeader=function(bstrHeader){}; /** * function open(sMethod,sUrl,bAsync,sUser,sPassword) * @param {String} sMethod * @param {String} sUrl * @param {Variant} bAsync * @param {Variant} sUser * @param {Variant} sPassword * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536648.aspx */ XMLHttpRequest.prototype.open=function(sMethod,sUrl,bAsync,sUser,sPassword){}; /** * function send(varBody) * @param {Variant} varBody * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536736.aspx */ XMLHttpRequest.prototype.send=function(varBody){}; /** * function setRequestHeader(sName,sValue) * @param {String} sName * @param {String} sValue * @memberOf XMLHttpRequest * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536752.aspx */ XMLHttpRequest.prototype.setRequestHeader=function(sName,sValue){}; \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmp.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmp.js
deleted file mode 100644
index 4a97fcfd..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_xmp.js
+++ /dev/null
@@ -1,128 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object xmp() * @type xmp * @super Object * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535919.aspx */ function xmp(){}; xmp.prototype= new Object(); /** * Property accessKey * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533062.aspx */ xmp.prototype.accessKey=""; /** * Property blockDirection * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533508.aspx */ xmp.prototype.blockDirection=""; /** * Property canHaveChildren * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533546.aspx */ xmp.prototype.canHaveChildren=false; /** * Property canHaveHTML * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537836.aspx */ xmp.prototype.canHaveHTML=false; /** * Property className * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533560.aspx */ xmp.prototype.className=""; /** * Property clientHeight * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533563.aspx */ xmp.prototype.clientHeight=0; /** * Property clientLeft * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533564.aspx */ xmp.prototype.clientLeft=0; /** * Property offsetLeft * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534200.aspx */ xmp.prototype.offsetLeft=0; /** * Property clientTop * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533565.aspx */ xmp.prototype.clientTop=0; /** * Property offsetTop * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534303.aspx */ xmp.prototype.offsetTop=0; /** * Property clientWidth * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533566.aspx */ xmp.prototype.clientWidth=0; /** * Property contentEditable * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537837.aspx */ xmp.prototype.contentEditable=""; /** * Property dir * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533728.aspx */ xmp.prototype.dir=""; /** * Property firstChild * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533755.aspx */ xmp.prototype.firstChild=new Object(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ xmp.prototype.childNodes= new childNodes(); /** * Property hideFocus * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533783.aspx */ xmp.prototype.hideFocus=false; /** * Property id * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533880.aspx */ xmp.prototype.id=""; /** * Property innerText * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533899.aspx */ xmp.prototype.innerText=""; /** * Property isContentEditable * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537838.aspx */ xmp.prototype.isContentEditable=false; /** * Property isDisabled * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533902.aspx */ xmp.prototype.isDisabled=false; /** * Property isMultiLine * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537839.aspx */ xmp.prototype.isMultiLine=false; /** * Property isTextEdit * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533920.aspx */ xmp.prototype.isTextEdit=false; /** * Property TextRange * @type TextRange * @returns {TextRange}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535872.aspx */ xmp.prototype.TextRange= new TextRange(); /** * Property lang * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533935.aspx */ xmp.prototype.lang=""; /** * Property language * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533940.aspx */ xmp.prototype.language=""; /** * Property lastChild * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533943.aspx */ xmp.prototype.lastChild=new Object(); /** * Property nextSibling * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534189.aspx */ xmp.prototype.nextSibling=new Object(); /** * Property nodeName * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534190.aspx */ xmp.prototype.nodeName=""; /** * Property nodeType * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534191.aspx */ xmp.prototype.nodeType=0; /** * Property nodeValue * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534192.aspx */ xmp.prototype.nodeValue=new Object(); /** * Property offsetHeight * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534199.aspx */ xmp.prototype.offsetHeight=0; /** * Property offsetParent * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534302.aspx */ xmp.prototype.offsetParent=new Object(); /** * Property offsetWidth * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534304.aspx */ xmp.prototype.offsetWidth=0; /** * Property onOffBehavior * @type DABoolean * @returns {DABoolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533630.aspx */ xmp.prototype.onOffBehavior=new DABoolean(); /** * Property outerHTML * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534310.aspx */ xmp.prototype.outerHTML=""; /** * Property outerText * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534311.aspx */ xmp.prototype.outerText=""; /** * Property ownerDocument * @type document * @returns {document}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534315.aspx */ xmp.prototype.ownerDocument=new document(); /** * Property document * @type document * @returns {document}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms531073.aspx */ xmp.prototype.document= new document(); /** * Property parentElement * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534327.aspx */ xmp.prototype.parentElement=new Object(); /** * Property parentNode * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534328.aspx */ xmp.prototype.parentNode=new Object(); /** * Property parentTextEdit * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534330.aspx */ xmp.prototype.parentTextEdit=new Object(); /** * Property previousSibling * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534350.aspx */ xmp.prototype.previousSibling=new Object(); /** * Property readyState * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534358.aspx */ xmp.prototype.readyState=new Object(); /** * Property scopeName * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534388.aspx */ xmp.prototype.scopeName=""; /** * Property scrollHeight * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534615.aspx */ xmp.prototype.scrollHeight=new Object(); /** * Property scrollLeft * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534617.aspx */ xmp.prototype.scrollLeft=0; /** * Property scrollTop * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534618.aspx */ xmp.prototype.scrollTop=0; /** * Property scrollWidth * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534619.aspx */ xmp.prototype.scrollWidth=new Object(); /** * Property sourceIndex * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534635.aspx */ xmp.prototype.sourceIndex=0; /** * Property all * @type all * @returns {all}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ xmp.prototype.all= new all(); /** * Property tabIndex * @type Number * @returns {Number}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534654.aspx */ xmp.prototype.tabIndex=0; /** * Property tagName * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534657.aspx */ xmp.prototype.tagName=""; /** * Property tagUrn * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534658.aspx */ xmp.prototype.tagUrn=""; /** * Property title * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534683.aspx */ xmp.prototype.title=""; /** * Property uniqueID * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534704.aspx */ xmp.prototype.uniqueID=""; /** * function addBehavior(sUrl) * @param {String} sUrl * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535922.aspx */ xmp.prototype.addBehavior=function(sUrl){}; /** * function appendChild(oNode) * @param {appendChild} oNode * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535934.aspx */ xmp.prototype.appendChild=function(oNode){}; /** * function applyElement(oNewElement) * @param {String} oNewElement * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536341.aspx */ xmp.prototype.applyElement=function(oNewElement){}; /** * function attachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {Boolean} fpNotify * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536343.aspx */ xmp.prototype.attachEvent=function(sEvent,fpNotify){}; /** * function blur() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536347.aspx */ xmp.prototype.blur=function(){}; /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ xmp.prototype.onblur= new onblur(); /** * function clearAttributes() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536350.aspx */ xmp.prototype.clearAttributes=function(){}; /** * function click() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536363.aspx */ xmp.prototype.click=function(){}; /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ xmp.prototype.onclick= new onclick(); /** * function cloneNode(bCloneChildren) * @param {Boolean} bCloneChildren * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536365.aspx */ xmp.prototype.cloneNode=function(bCloneChildren){}; /** * function componentFromPoint(iCoordX,iCoordY) * @param {Number} iCoordX * @param {Number} iCoordY * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536375.aspx */ xmp.prototype.componentFromPoint=function(iCoordX,iCoordY){}; /** * function contains(oElement) * @param {Boolean} oElement * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536377.aspx */ xmp.prototype.contains=function(oElement){}; /** * function detachEvent(sEvent,fpNotify) * @param {String} sEvent * @param {attachEvent} fpNotify * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536411.aspx */ xmp.prototype.detachEvent=function(sEvent,fpNotify){}; /** * function fireEvent(sEvent,oEventObject) * @param {String} sEvent * @param {event} oEventObject * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536423.aspx */ xmp.prototype.fireEvent=function(sEvent,oEventObject){}; /** * function focus() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536425.aspx */ xmp.prototype.focus=function(){}; /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ xmp.prototype.onfocus= new onfocus(); /** * function getAdjacentText(sWhere) * @param {String} sWhere * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536427.aspx */ xmp.prototype.getAdjacentText=function(sWhere){}; /** * function getAttribute(sAttrName,iFlags,sAttrName) * @param {String} sAttrName * @param {Number} iFlags * @param {getAttribute} sAttrName * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536429.aspx */ xmp.prototype.getAttribute=function(sAttrName,iFlags,sAttrName){}; /** * function getAttributeNode(sName) * @param {String} sName * @type attribute * @returns {attribute}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536430.aspx */ xmp.prototype.getAttributeNode=function(sName){}; /** * Property attribute * @type attribute * @returns {attribute}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535187.aspx */ xmp.prototype.attribute= new attribute(); /** * Property name * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms534184.aspx */ xmp.prototype.name=""; /** * function getBoundingClientRect() * @type TextRectangle * @returns {TextRectangle}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536433.aspx */ xmp.prototype.getBoundingClientRect=function(){}; /** * Property TextRectangle * @type TextRectangle * @returns {TextRectangle}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535906.aspx */ xmp.prototype.TextRectangle= new TextRectangle(); /** * function getClientRects() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536435.aspx */ xmp.prototype.getClientRects=function(){}; /** * function getElementsByTagName(sTagName) * @param {String} sTagName * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536439.aspx */ xmp.prototype.getElementsByTagName=function(sTagName){}; /** * function hasChildNodes() * @type HTML Elements * @returns {HTML}
- Elements * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536445.aspx */ xmp.prototype.hasChildNodes=function(){}; /** * function insertAdjacentElement(sWhere,oElement) * @param {String} sWhere * @param {insertAdjacentElement} oElement * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536451.aspx */ xmp.prototype.insertAdjacentElement=function(sWhere,oElement){}; /** * function insertAdjacentHTML(sWhere,sText) * @param {String} sWhere * @param {String} sText * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536452.aspx */ xmp.prototype.insertAdjacentHTML=function(sWhere,sText){}; /** * function insertBefore(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536454.aspx */ xmp.prototype.insertBefore=function(oNewNode,oChildNode){}; /** * function mergeAttributes(oSource,bPreserve) * @param {Object} oSource * @param {Boolean} bPreserve * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536614.aspx */ xmp.prototype.mergeAttributes=function(oSource,bPreserve){}; /** * function normalize() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536646.aspx */ xmp.prototype.normalize=function(){}; /** * function releaseCapture() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536689.aspx */ xmp.prototype.releaseCapture=function(){}; /** * function removeAttribute(sName,iCaseSensitive) * @param {String} sName * @param {Number} iCaseSensitive * @type Boolean * @returns {Boolean}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536696.aspx */ xmp.prototype.removeAttribute=function(sName,iCaseSensitive){}; /** * function removeAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536698.aspx */ xmp.prototype.removeAttributeNode=function(oSrcAttribute){}; /** * function removeBehavior(iID) * @param {Number} iID * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536700.aspx */ xmp.prototype.removeBehavior=function(iID){}; /** * function removeChild(oNode) * @param {Object} oNode * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536702.aspx */ xmp.prototype.removeChild=function(oNode){}; /** * function removeNode(bRemoveChildren) * @param {Boolean} bRemoveChildren * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536708.aspx */ xmp.prototype.removeNode=function(bRemoveChildren){}; /** * function replaceAdjacentText(sWhere,sReplaceText) * @param {String} sWhere * @param {String} sReplaceText * @type String * @returns {String}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536714.aspx */ xmp.prototype.replaceAdjacentText=function(sWhere,sReplaceText){}; /** * function replaceChild(oNewNode,oChildNode) * @param {Object} oNewNode * @param {Object} oChildNode * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536716.aspx */ xmp.prototype.replaceChild=function(oNewNode,oChildNode){}; /** * function replaceNode(oNewNode) * @param {Object} oNewNode * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536719.aspx */ xmp.prototype.replaceNode=function(oNewNode){}; /** * function scrollIntoView(bAlignToTop) * @param {Boolean} bAlignToTop * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536730.aspx */ xmp.prototype.scrollIntoView=function(bAlignToTop){}; /** * function setActive() * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536738.aspx */ xmp.prototype.setActive=function(){}; /** * function setAttribute(sName,vValue) * @param {String} sName * @param {Number} vValue * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536739.aspx */ xmp.prototype.setAttribute=function(sName,vValue){}; /** * function setAttributeNode(oSrcAttribute) * @param {attribute} oSrcAttribute * @type attribute * @returns {attribute}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536741.aspx */ xmp.prototype.setAttributeNode=function(oSrcAttribute){}; /** * function setCapture(bContainerCapture) * @param {Boolean} bContainerCapture * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536742.aspx */ xmp.prototype.setCapture=function(bContainerCapture){}; /** * function swapNode(oNode) * @param {Object} oNode * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536774.aspx */ xmp.prototype.swapNode=function(oNode){}; /** * Property onactivate * @type onactivate * @returns {onactivate}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536787.aspx */ xmp.prototype.onactivate= new onactivate(); /** * Property activeElement * @type Object * @returns {Object}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533065.aspx */ xmp.prototype.activeElement=new Object(); /** * Property onbeforeactivate * @type onbeforeactivate * @returns {onbeforeactivate}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536791.aspx */ xmp.prototype.onbeforeactivate= new onbeforeactivate(); /** * Property onbeforecut * @type onbeforecut * @returns {onbeforecut}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536902.aspx */ xmp.prototype.onbeforecut= new onbeforecut(); /** * Property onbeforedeactivate * @type onbeforedeactivate * @returns {onbeforedeactivate}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536903.aspx */ xmp.prototype.onbeforedeactivate= new onbeforedeactivate(); /** * Property onbeforeeditfocus * @type onbeforeeditfocus * @returns {onbeforeeditfocus}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536904.aspx */ xmp.prototype.onbeforeeditfocus= new onbeforeeditfocus(); /** * Property onbeforepaste * @type onbeforepaste * @returns {onbeforepaste}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536905.aspx */ xmp.prototype.onbeforepaste= new onbeforepaste(); /** * Property onblur * @type onblur * @returns {onblur}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536909.aspx */ xmp.prototype.onblur= new onblur(); /** * Property onclick * @type onclick * @returns {onclick}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536913.aspx */ xmp.prototype.onclick= new onclick(); /** * Property oncontextmenu * @type oncontextmenu * @returns {oncontextmenu}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536914.aspx */ xmp.prototype.oncontextmenu= new oncontextmenu(); /** * Property oncontrolselect * @type oncontrolselect * @returns {oncontrolselect}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537844.aspx */ xmp.prototype.oncontrolselect= new oncontrolselect(); /** * Property oncut * @type oncut * @returns {oncut}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536917.aspx */ xmp.prototype.oncut= new oncut(); /** * Property ondblclick * @type ondblclick * @returns {ondblclick}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536921.aspx */ xmp.prototype.ondblclick= new ondblclick(); /** * Property ondeactivate * @type ondeactivate * @returns {ondeactivate}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536922.aspx */ xmp.prototype.ondeactivate= new ondeactivate(); /** * Property ondrag * @type ondrag * @returns {ondrag}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536923.aspx */ xmp.prototype.ondrag= new ondrag(); /** * Property ondragend * @type ondragend * @returns {ondragend}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536924.aspx */ xmp.prototype.ondragend= new ondragend(); /** * Property ondragenter * @type ondragenter * @returns {ondragenter}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536925.aspx */ xmp.prototype.ondragenter= new ondragenter(); /** * Property ondragleave * @type ondragleave * @returns {ondragleave}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536926.aspx */ xmp.prototype.ondragleave= new ondragleave(); /** * Property ondragover * @type ondragover * @returns {ondragover}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536927.aspx */ xmp.prototype.ondragover= new ondragover(); /** * Property ondragstart * @type ondragstart * @returns {ondragstart}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536928.aspx */ xmp.prototype.ondragstart= new ondragstart(); /** * Property ondrop * @type ondrop * @returns {ondrop}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536929.aspx */ xmp.prototype.ondrop= new ondrop(); /** * Property onfocus * @type onfocus * @returns {onfocus}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536934.aspx */ xmp.prototype.onfocus= new onfocus(); /** * Property onfocusin * @type onfocusin * @returns {onfocusin}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536935.aspx */ xmp.prototype.onfocusin= new onfocusin(); /** * Property onfocusout * @type onfocusout * @returns {onfocusout}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536936.aspx */ xmp.prototype.onfocusout= new onfocusout(); /** * Property onhelp * @type onhelp * @returns {onhelp}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536937.aspx */ xmp.prototype.onhelp= new onhelp(); /** * Property onkeydown * @type onkeydown * @returns {onkeydown}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536938.aspx */ xmp.prototype.onkeydown= new onkeydown(); /** * Property onkeypress * @type onkeypress * @returns {onkeypress}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536939.aspx */ xmp.prototype.onkeypress= new onkeypress(); /** * Property onkeyup * @type onkeyup * @returns {onkeyup}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536940.aspx */ xmp.prototype.onkeyup= new onkeyup(); /** * Property onlosecapture * @type onlosecapture * @returns {onlosecapture}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536943.aspx */ xmp.prototype.onlosecapture= new onlosecapture(); /** * Property onmousedown * @type onmousedown * @returns {onmousedown}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536944.aspx */ xmp.prototype.onmousedown= new onmousedown(); /** * Property onmouseenter * @type onmouseenter * @returns {onmouseenter}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536945.aspx */ xmp.prototype.onmouseenter= new onmouseenter(); /** * Property onmouseleave * @type onmouseleave * @returns {onmouseleave}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536946.aspx */ xmp.prototype.onmouseleave= new onmouseleave(); /** * Property onmousemove * @type onmousemove * @returns {onmousemove}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536947.aspx */ xmp.prototype.onmousemove= new onmousemove(); /** * Property onmouseout * @type onmouseout * @returns {onmouseout}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536948.aspx */ xmp.prototype.onmouseout= new onmouseout(); /** * Property onmouseover * @type onmouseover * @returns {onmouseover}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536949.aspx */ xmp.prototype.onmouseover= new onmouseover(); /** * Property onmouseup * @type onmouseup * @returns {onmouseup}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536950.aspx */ xmp.prototype.onmouseup= new onmouseup(); /** * Property onmousewheel * @type onmousewheel * @returns {onmousewheel}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536951.aspx */ xmp.prototype.onmousewheel= new onmousewheel(); /** * Property onmove * @type onmove * @returns {onmove}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536952.aspx */ xmp.prototype.onmove= new onmove(); /** * Property onmoveend * @type onmoveend * @returns {onmoveend}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536953.aspx */ xmp.prototype.onmoveend= new onmoveend(); /** * Property onmovestart * @type onmovestart * @returns {onmovestart}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536954.aspx */ xmp.prototype.onmovestart= new onmovestart(); /** * Property onpaste * @type onpaste * @returns {onpaste}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536955.aspx */ xmp.prototype.onpaste= new onpaste(); /** * Property onpropertychange * @type onpropertychange * @returns {onpropertychange}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536956.aspx */ xmp.prototype.onpropertychange= new onpropertychange(); /** * Property onreadystatechange * @type onreadystatechange * @returns {onreadystatechange}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536957.aspx */ xmp.prototype.onreadystatechange= new onreadystatechange(); /** * Property onresize * @type onresize * @returns {onresize}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536959.aspx */ xmp.prototype.onresize= new onresize(); /** * Property onresizeend * @type onresizeend * @returns {onresizeend}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536960.aspx */ xmp.prototype.onresizeend= new onresizeend(); /** * Property onresizestart * @type onresizestart * @returns {onresizestart}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536961.aspx */ xmp.prototype.onresizestart= new onresizestart(); /** * Property onselectstart * @type onselectstart * @returns {onselectstart}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms536969.aspx */ xmp.prototype.onselectstart= new onselectstart(); /** * Property ontimeerror * @type ontimeerror * @returns {ontimeerror}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms533588.aspx */ xmp.prototype.ontimeerror= new ontimeerror(); /** * Property all * @type all * @returns {all}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537434.aspx */ xmp.prototype.all= new all(); /** * Property attributes * @type attributes * @returns {attributes}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537438.aspx */ xmp.prototype.attributes= new attributes(); /** * Property behaviorUrns * @type behaviorUrns * @returns {behaviorUrns}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537439.aspx */ xmp.prototype.behaviorUrns= new behaviorUrns(); /** * Property childNodes * @type childNodes * @returns {childNodes}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537445.aspx */ xmp.prototype.childNodes= new childNodes(); /** * Property TextNode * @type TextNode * @returns {TextNode}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535905.aspx */ xmp.prototype.TextNode= new TextNode(); /** * Property children * @type children * @returns {children}
- * @memberOf xmp * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms537446.aspx */ xmp.prototype.children= new children(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_y.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_y.js
deleted file mode 100644
index de4a40ee..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/IE_y.js
+++ /dev/null
@@ -1 +0,0 @@
-/******************************************************************************* * Copyright (c) 2007, 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 ****************************************************************************** * **/ /** * Object y() * @type y * @super Object * @memberOf y * @since JScript 5.6 * @see http://msdn2.microsoft.com/en-us/library/ms535164.aspx */ function y(){}; y.prototype= new Object(); \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/JScriptObjects.js b/bundles/org.eclipse.wst.jsdt.support.ie/libraries/JScriptObjects.js
deleted file mode 100644
index 1ca8d59b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/libraries/JScriptObjects.js
+++ /dev/null
@@ -1,1825 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2007, 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
- ******************************************************************************
- *
- **/
-/**
- * Object DABoolean()
- *
- * Temp Definition of DABoolean Type as found in MSDN Pages
- *
- * @super Object
- * @type DABoolean
- * @memberOf DABoolean
- * @since JScript 5.6
- */
-
-function DABoolean(){};
-DABoolean.prototype=new Object();
-
- /* Object arguments()
- * @super Array
- * @type arguments
- * @memberOf arguments
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/9dthzd08.aspx
- */
-
-function arguments(){};
-arguments.prototype=new Array();
-
-/**
- * An intrinsic global object that stores information about the results of regular expression pattern matches.
- * Object RegExp()
- * @super Object
- * @type RegExp
- * @memberOf RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/9dthzd08.aspx
- */
-function RegExp(){};
-RegExp.prototype=new Object();
- /**
- * Property global
- * @type Boolean
- * @memberOf RegExp
- * @returns {Boolean}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.global=true;
- /**
- * Property index
- * @type Number
- * @memberOf RegExp
- * @returns {Number}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.index=-1;
- /**
- * Property input
- * @type String
- * @memberOf RegExp
- * @returns {String}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.input="";
- /**
- * Property lastIndex
- * @type Number
- * @memberOf RegExp
- * @returns {Number}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.lastIndex=-1;
- /**
- * Property lastMatch
- * @type String
- * @memberOf RegExp
- * @returns {String}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.lastMatch=""
- /**
- * Property lastParen
- * @type String
- * @memberOf RegExp
- * @returns {String}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.lastParen="";
- /**
- * Property leftContext
- * @type String
- * @memberOf RegExp
- * @returns {String}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.leftContext="";
- /**
- * Property rightContext
- * @type String
- * @memberOf RegExp
- * @returns {String}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.rightContext="";
- /**
- * Property ignoreCase
- * @type Boolean
- * @memberOf RegExp
- * @returns {Boolean}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.ignoreCase=false;
- /**
- * Property multiline
- * @type Boolean
- * @memberOf RegExp
- * @returns {Boolean}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.multiline=false;
- /**
- * Property source
- * @type String
- * @memberOf RegExp
- * @returns {String}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.source="";
- /**
- * function test(pos)
- * @type Array
- * @memberOf RegExp
- * @param {Array} array1
- * @param {Array} array2
- * @returns {Array}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.test=function(){};
- /**
- * function exec(pos)
- * @type Boolean
- * @memberOf RegExp
- * @param {String} str
- * @returns {Boolean}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.exec=function(str){};
- /**
- * function compile(pos)
- * @type Array
- * @memberOf RegExp
- * @param {String} pattern
- * @param {String} flags Optional. Available flags, which may be combined, are:g (global search for all occurrences of pattern)i (ignore case)m (multiline search)
- * @returns {Array}
- * @see RegExp
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-RegExp.prototype.compile=function(pattern, flags){};
-/**
- * Enables and returns a reference to an Automation object.
- * Object ActiveXObject(servername.typename, location)
- * @super Object
- * @type ActiveXObject
- * @param {String} servername Required. The name of the application providing the object
- * @param {String} typename Required. The type or class of the object to create.
- * @param {String} location Optional. The name of the network server where the object is to be created.
- * @memberOf ActiveXObject
- * @since JScript 1.0
- * @see http://msdn2.microsoft.com/en-us/library/7sw4ddf8.aspx
- */
-function ActiveXObject(){};
-ActiveXObject.prototype=new Object();
-
- /**
- * function concat(pos)
- * @type Array
- * @memberOf Array
- * @param {Array} array1
- * @param {Array} array2
- * @returns {Array}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.concat=function(array1, array2){};
- /**
- * function join(separator)
- * @type String
- * @memberOf Array
- * @param {String} separator
- * @param {Array} array2
- * @returns {String}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.join=function(separator){};
- /**
- * function pop()
- * @type Array
- * @memberOf Array
- * @param {Array} array1
- * @param {Array} array2
- * @returns {Array}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.pop=function(){};
- /**
- * function push(values)
- * @type Object
- * @memberOf Array
- * @param {Array} values
- * @returns {Object}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.push=function(values){};
- /**
- * function reverse()
- * @memberOf Array
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.reverse=function(){};
- /**
- * function shift()
- * @type Object
- * @memberOf Array
- * @returns {Object}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.shift=function(){};
- /**
- * function slice()
- * @type Array
- * @memberOf Array
- * @param {Number;} startIndex
- * @param {Number} endIndex
- * @returns {Array}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.slice=function(startIndex,endIndex){};
- /**
- * function sort(sortFunction)
- * @memberOf Array
- * @param {Function} sortFunction Optional. The name of the function used to determine the order of the elements. If omitted, the elements are sorted in ascending, ASCII character order
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.sort=function(sortFunction){};
- /**
- * function splice(start, deleteCount, items)
- * @type Array
- * @memberOf Array
- * @param {Number} start
- * @param {Number} deleteCount
- * @param {Array} items
- * @returns {Array}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.splice=function(start, deleteCount, items){};
- /**
- * function toLocaleString()
- * @type String
- * @memberOf Object
- * @returns {String}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Object.prototype.toLocaleString=function(){};
- /**
- * function unshift()
-
- * @memberOf Array
- * @param {Array} elements
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Array.prototype.unshift=function(elements){};
- /**
- * function valueOf()
- * @type Object
- * @memberOf Object
- * @returns {Object}
- * @see Array
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/k4h76zbx.aspx
- */
-Object.prototype.valueOf=function(){};
-
-/**
- * Object Date()
- * @super Object
- * @type Date
- * @memberOf Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/9dthzd08.aspx
- */
-function Date(dateVal){};
-function Date(year, month, date, hours, minutes, seconds,ms){};
- /**
- * function getDate()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getDate=function(){};
- /**
- * function getDay()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getDay=function(){};
- /**
- * function getFullYear()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getFullYear=function(){};
- /**
- * function getHours()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getHours=function(){};
- /**
- * function getMilliseconds()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getMilliseconds=function(){};
- /**
- * function getMinutes()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getMinutes=function(){};
- /**
- * function getMonth()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getMonth=function(){};
- /**
- * function getSeconds()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getSeconds=function(){};
- /**
- * function getTime()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getTime=function(){};
- /**
- * function getTimezoneOffset()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getTimezoneOffset=function(){};
- /**
- * function getUTCDate()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCDate=function(){};
- /**
- * function getUTCDay()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCDay=function(){};
- /**
- * function getUTCFullYear()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCFullYear=function(){};
- /**
- * function getUTCHours()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCHours=function(){};
- /**
- * function getUTCMilliseconds()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCMilliseconds=function(){};
- /**
- * function getUTCMinutes()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCMinutes=function(){};
- /**
- * function getUTCMonth()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCMonth=function(){};
- /**
- * function getUTCSeconds()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getUTCSeconds=function(){};
- /**
- * function getVarDate()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getVarDate=function(){};
- /**
- * function getYear()
- * @type Number
- * @memberOf Date
- * @returns {Number}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.getYear=function(){};
- /**
- * function parse(dateVal)
- * @type Date
- * @memberOf Date
- * @param {String} dateVal
- * @returns {Date}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.parse=function(dateVal){};
- /**
- * function setDate(dateVale)
-
- * @memberOf Date
- * @param {Date} dateVal
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setDate=function(dateVal){};
- /**
- * function setFullYear(year,month, day)
-
- * @memberOf Date
- * @param {Number} year
- * @param {Number} month
- * @param {Number} day
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setFullYear=function(year,month, day){};
- /**
- * function setHours(number)
-
- * @memberOf Date
- * @param {Number} numHours
- * @param {Number} numMin
- * @param {Number} numSec
- * @param {Number} numMilli
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setHours=function(numHours, numMin, numSec, numMilli){};
- /**
- * function setMilliseconds(number)
-
- * @memberOf Date
- * @param {Number} number
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setMilliseconds=function(number){};
- /**
- * function setMinutes(number)
-
- * @memberOf Date
- * @param {Number} number
- * @param {Number} numMilli
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setMinutes=function(number, numMilli){};
- /**
- * function setMonth(number)
-
- * @memberOf Date
- * @param {Number} numMonth
- * @param {Number} dateVale
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setMonth=function(numMonth, dateVale){};
- /**
- * function setSeconds(number)
-
- * @memberOf Date
- * @param {Number} number
- * @param {Numbe} numMilli
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setSeconds=function(number, numMilli){};
- /**
- * function setTime(number)
-
- * @memberOf Date
- * @param {Number} milli
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setTime=function(milli){};
- /**
- * function setUTCDate(number)
-
- * @memberOf Date
- * @param {Number} number
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setUTCDate=function(number){};
- /**
- * function setUTCFullYear(number)
-
- * @memberOf Date
- * @param {Number} numYear
- * @param {Number} numMonth
- * @param {Number} numDate
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setUTCFullYear=function(numYear, numMonth, numDate){};
- /**
- * function setUTCHours(number)
-
- * @memberOf Date
- * @param {Number} numHours
- * @param {Number} numMin
- * @param {Number} numSec
- * @param {Number} numMilli
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setUTCHours=function(numHours, numMin, numSec, numMilli){};
- /**
- * function setUTCMilliseconds(number)
-
- * @memberOf Date
- * @param {Number} number
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setUTCMilliseconds=function(number){};
- /**
- * function setUTCMinutes(number)
-
- * @memberOf Date
- * @param {Number} numMinutes
- * @param {Number} numSeconds
- * @param {Number} numMilli
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setUTCMinutes=function(numMinutes, numSeconds, numMilli){};
- /**
- * function setUTCMonth(number)
-
- * @memberOf Date
- * @param {Number} numMonth
- * @param {Number} dateVal
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setUTCMonth=function(numMonth, dateVal){};
- /**
- * function setUTCSeconds(number)
-
- * @memberOf Date
- * @param {Number} numSeconds
- * @param {Number} numMilli
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setUTCSeconds=function(numSeconds, numMilli){};
- /**
- * function setYear(number)
-
- * @memberOf Date
- * @param {Number} number
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.setYear=function(number){};
- /**
- * function toDateString(number)
-
- * @memberOf Date
- * @param {Number} number
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.toDateString=function(){};
- /**
- * function toGMTString(number)
-
- * @memberOf Date
- * @param {Number} number
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.toGMTString=function(){};
- /**
- * function toLocaleDateString()
- * @type String
- * @memberOf Date
- * @returns {String}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.toLocaleDateString=function(){};
- /**
- * function toLocaleString()
- * @type String
- * @memberOf Date
- * @returns {String}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.toLocaleString=function(){};
- /**
- * function toLocaleTimeString()
- * @type String
- * @memberOf Date
- * @returns {String}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.toLocaleTimeString=function(){};
- /**
- * function toTimeString()
- * @type String
- * @memberOf Date
- * @returns {String}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.toTimeString=function(){};
- /**
- * function toUTCString()
- * @type String
- * @memberOf Date
- * @returns {String}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.prototype.toUTCString=function(){};
- /**
- * function UTC();
- * @type Date
- * @memberOf Date
- * @param {Number} year
- * @param {Number} month
- * @param {Number} day
- * @param {Number} hours
- * @param {Number} seconds
- * @param {Number} ms
- * @returns {Date}
- * @see Date
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Date.UTC=function(year, month, day, hours, minutes, seconds, ms){};
-
-/**
-
- * Object Debug()
- * @super Object
- * @type Debug
- * @memberOf Debug
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/bs12a9wf.aspx
- */
-function Debug(){};
-Debug.prototype=new Object();
- /**
- * function write(value);
-
- * @memberOf Debug
- * @param {String} value
- * @see Debug
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Debug.write=function(value){};
- /**
- * function writeln(value);
-
- * @memberOf Debug
- * @param {String} value
- * @see Debug
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Debug.writeln=function(value){};
-/**
-
- * Object Enumerator()
- * @super Object
- * @type Enumerator
- * @memberOf Enumerator
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/bs12a9wf.aspx
- */
-function Enumerator(){};
-/**
-
- * Object Enumerator(collection)
- * @super Object
- * @type Enumerator
- * @param {Object} collection
- * @memberOf Enumerator
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/bs12a9wf.aspx
- */
-function Enumerator(collection){};
-Enumerator.prototype=new Object();
- /**
- * function atEnd()
- * @type Enumerator
- * @memberOf Enumerator
- * @returns {Boolean}
- * @see Enumerator
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Enumerator.prototype.atEnd=function(){};
- /**
- * function item()
- * @type Object
- * @memberOf Enumerator
- * @returns {Object}
- * @see Enumerator
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Enumerator.prototype.item=function(){};
- /**
- * function moveFirst()
- * @type Object
- * @memberOf Enumerator
- * @returns {Object}
- * @see Enumerator
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Enumerator.prototype.moveFirst=function(){};
- /**
- * function moveNext()
- * @type Object
- * @memberOf Enumerator
- * @returns {Object}
- * @see Enumerator
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/cd9w2te4.aspx
- */
-Enumerator.prototype.moveNext =function(){};
-
-/**
-
- * Object Error()
- * @super Object
- * @type Error
- * @param {Number} number
- * @param {String} description
- * @memberOf Error
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-function Error(number,description){};
-Error.prototype=new Object();
- /**
- * Property description
- * @type String
- * @memberOf Error
- * @returns {String}
- * @see Error
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Error.prototype.description="";
- /**
- * Property message
- * @type String
- * @memberOf Error
- * @returns {String}
- * @see Error
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Error.prototype.message="";
- /**
- * Property name
- * @type String
- * @memberOf Error
- * @returns {String}
- * @see Error
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Error.prototype.name="";
- /**
- * Property number
- * @type Number
- * @memberOf Error
- * @returns {Number}
- * @see Error
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Error.prototype.number=0;
-/**
-
- * Object Function()
- * @super Object
- * @type Function
- * @param {String} functionName
- * @param {String} arg1
- * @param {String} arg1
- * @param {String} arg2
- * @param {String} arg3
- * @param {String} arg4
- * @param {String} arg5
- * @param {String} arg6
- * @param {String} arg7
- * @param {String} arg8
- * @param {String} arg9
- * @param {String} body
- * @memberOf Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/x844tc74.aspx
- */
-function Function(functionName, arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9, body){};
-Function.prototype=new Object();
- /**
- * Property arguments
- * @type arguments
- * @memberOf Function
- * @returns {arguments}
- * @see Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Function.prototype.arguments=new arguments();
- /**
- * Property callee
- * @type String
- * @memberOf Function
- * @returns {String}
- * @see Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Function.prototype.callee=""
- /**
- * Property caller
- * @type String
- * @memberOf Function
- * @returns {String}
- * @see Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Function.prototype.caller=""
- /**
- * Property constructor
- * @type String
- * @memberOf Function
- * @returns {String}
- * @see Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Function.prototype.constructor=""
- /**
- * Property length
- * @type Number
- * @memberOf Function
- * @returns {Number}
- * @see Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Function.prototype.length=function(){};
- /**
- * function apply(thisObj,args)
- * @memberOf Function
- * @param {Object} thisObj
- * @param {argument} args
- * @see Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Function.prototype.apply=function(thisObj,args){};
- /**
- * function apply(thisObj,args)
- * @memberOf Function
- * @param {Object} thisObj
- * @param {argument} args
- * @see Function
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dww52sbt.aspx
- */
-Function.prototype.call=function(thisObj, args){};
-/**
-
- * Object Global()
- * @super Object
- * @type Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-function Global(){};
-Global.prototype=new Object();
- /**
- * Property infinity
- * @memberOf Global
- * @type Number
- * @returns {Number}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.infinity=0;
- /**
- * Property NaN
- * @memberOf Global
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.NaN=null;
- /**
- * Property undefined
- * @memberOf Global
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.undefined=null;
- /**
- * function decodeURI(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.decodeURI=function(value){};
- /**
- * function decodeURIComponent(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.decodeURIComponent=function(value){};
- /**
- * function encodeURI(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.encodeURI=function(value){};
- /**
- * function encodeURIComponent(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.encodeURIComponent=function(value){};
- /**
- * function escape(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.escape=function(value){};
- /**
- * function eval(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.eval=function(value){};
- /**
- * function isFinite(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.isFinite=function(value){};
- /**
- * function isNaN(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.isNaN=function(value){};
- /**
- * function parseFloat(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.parseFloat=function(value){};
- /**
- * function parseInt(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.parseInt=function(value){};
- /**
- * function unescape(value)
- * @memberOf Global
- * @type String
- * @param {String} value
- * @returns {String}
- * @see Global
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/52f50e9t.aspx
- */
-Global.prototype.unescape=function(value){};
-
- /**
- * @memberOf Math
- * @see Number
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-function Math(){};
-Math.prototype=new Object();
- /**
- * Property E
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.E=0;
- /**
- * Property LN2
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.LN2=0;
- /**
- * Property LN10
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.LN10=0;
- /**
- * Property LOG2E
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.LOG2E=0;
- /**
- * Property LOG10E
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.LOG10E=0;
- /**
- * Property PI
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.PI=0;
- /**
- * Property SQRT1_2
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.SQRT1_2=0;
- /**
- * Property SQRT2=0
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.SQRT2=0;
- /**
- * function abs(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.abs=function(number){};
- /**
- * function acos(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.acos=function(number){};
- /**
- * function asin(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.asin=function(number){};
- /**
- * function atan(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.atan=function(number){};
- /**
- * function atan2(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} x
- * @param {Number} y
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.atan2=function(x,y){};
- /**
- * function ceil(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.ceil=function(number){};
- /**
- * function cos(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.cos=function(number){};
- /**
- * function exp(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.exp=function(number){};
- /**
- * function floor(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.floor=function(number){};
- /**
- * function log(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.log=function(number){};
- /**
- * function max(argList)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {arguments} argList
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.max=function(argList){};
- /**
- * function min(argList)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {arguments} argList
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.min=function(argList){};
- /**
- * function pow(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} base
- * @param {Number} exp
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.pow=function(base, exp){};
- /**
- * function random(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.random=function(number){};
- /**
- * function round(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.round=function(number){};
- /**
- * function sin(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.sin=function(number){};
- /**
- * function sqrt(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.sqrt=function(number){};
- /**
- * function tan(number)
- * @memberOf Math
- * @type Number
- * @returns {Number}
- * @param {Number} number
- * @see Math
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/b272f386.aspx
- */
-Math.tan=function(number){};
-
-Number.MAX_VALUE=0;
-Number.MIN_VALUE=0;
-Number.NaN Property=0;
-Number.NEGATIVE_INFINITY=0;
-Number.POSITIVE_INFINITY=0;
-
- /**
- * function toExponential()
- * @memberOf Number
- * @type Number
- * @returns {Number}
- * @see Number
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dwab3ed2.aspx
- */
-Number.prototype.toExponential=function(){};
- /**
- * function toFixed()
- * @memberOf Number
- * @type Number
- * @returns {Number}
- * @see Number
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dwab3ed2.aspx
- */
-Number.prototype.toFixed=function(){};
- /**
- * function toLocaleString()
- * @memberOf Number
- * @type String
- * @returns {String}
- * @see Number
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dwab3ed2.aspx
- */
-Number.prototype.toLocaleString=function(){};
- /**
- * function toPrecision()
- * @memberOf Number
- * @type Number
- * @returns {Number}
- * @see Number
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/dwab3ed2.aspx
- */
-Number.prototype.toPrecision=function(){};
-
- /**
- * function anchor(aString)
- * @memberOf String
- * @type String
- * @returns {String}
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.anchor=function(aString){};
- /**
- * function big()
- * @memberOf String
-
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.big=function(){};
- /**
- * function blink(aString)
- * @memberOf String
-
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.blink=function(){};
- /**
- * function bold(aString)
- * @memberOf String
-
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.bold=function(){};
- /**
- * function fixed()
- * @memberOf String
-
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.fixed=function(){};
- /**
- * function fontcolor(color)
- * @memberOf String
- * @type String
- * @param {String} color
- * @returns {String}
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.fontcolor=function(color){};
- /**
- * function fontsize(aString)
- * @memberOf String
- * @type String
- * @returns {String}
- * @param {String} aString
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.fontsize=function(aString){};
- /**
- * function anchor(aString)
- * @memberOf String
- * @type String
- * @returns {String}
- * @param {argument} args
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.fromCharCode=function(args){};
- /**
- * function italics()
- * @memberOf String
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.String.prototype.italics=function(){};
- /**
- * function link(aString)
- * @memberOf String
- * @param {String} aString
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.link=function(aString){};
- /**
- * function strike()
- * @memberOf String
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.strike=function(){};
- /**
- * function sub()
- * @memberOf String
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.sub=function(){};
- /**
- * function substr(start,length)
- * @memberOf String
- * @type String
- * @returns {String}
- * @param {Number} start
- * @param {Number} length
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.substr=function(start,length){};
- /**
- * function substring(aString)
- * @memberOf String
- * @type String
- * @returns {String}
- * @param {Number} start
- * @param {Number} length
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.substring=function(start,length){};
- /**
- * function sup(aString)
- * @memberOf String
- * @see String
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/ecczf11c.aspx
- */
-String.prototype.sup=function(){};
-/**
- *
- * Object VBArray()
- * @super Array
- * @type VBArray
- * @param {Boolean} safe
- * @memberOf VBArray
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/y39d47w8.aspx
- */
-function VBArray(safe){};
-VBArray.prototype=new Array();
-/**
- * function dimensions();
- * @type Number
- * @returns {Number}
- * @memberOf VBArray
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/y39d47w8.aspx
- */
-VBArray.prototype.dimensions=function();
-/**
- * function getItem(dims);
- * @type Object
- * @returns {Object}
- * @memberOf VBArray
- * @param {arguments} dims
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/y39d47w8.aspx
- */
-VBArray.prototype.getItem=function(dims);
-/**
- * function lbound(dims);
- * @type Object
- * @returns {Object}
- * @memberOf VBArray
- * @param {arguments} dims
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/y39d47w8.aspx
- */
-VBArray.prototype.lbound=function(dims);
-/**
- * function toArray()
- * @type Array
- * @returns {Array}
- * @memberOf VBArray
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/y39d47w8.aspx
- */
-VBArray.prototype.toArray=function();
-/**
- * function ubound(dims);
- * @type Object
- * @returns {Object}
- * @memberOf VBArray
- * @param {arguments} dims
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/y39d47w8.aspx
- */
-VBArray.prototype.ubound=function(number);
-
-
-/**
- * Returns a reference to an Automation object from a file.
- *
- * GetObject([pathname] [, class])
- * function GetObject()
- * @param {String} pathname Optional. Full path and name of the file containing the object to retrieve. If pathname is omitted, class is required
- * @param {String} class Optional. Class of the object. The class argument uses the syntax appname.objectype and has these parts: appname Required. Name of the application providing the object. objectype Required. Type or class of object to create.
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/7tf9xwsc.aspx
- */
-function GetObject(pathname, class){};
-
-/**
- * Returns a string representing the scripting language in use.
- *
- * ScriptEngine()
- * function ScriptEngine( )
- * @returns {String}
- The ScriptEngine function can return any of the following strings: JScript Indicates that Microsoft JScript is the current scripting engine.VBA Indicates that Microsoft Visual Basic for Applications is the current scripting engine.VBScript Indicates that Microsoft Visual Basic Scripting Edition is the current scripting engine.
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/efy5bay1.aspx
- */
-function ScriptEngine(){};
-
-/**
- * Returns a string representing the scripting language in use. The return value corresponds directly to the version information contained in the dynamic-link library (DLL) for the scripting language in use.
- *
- * ScriptEngineBuildVersion()
- * function ScriptEngineBuildVersion( )
- * @returns {String}
-
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/yftk84kt.aspx
- */
-function ScriptEngineBuildVersion(){};
-
-/**
- * Returns a string representing the scripting language in use. The return value corresponds directly to the version information contained in the dynamic-link library (DLL) for the scripting language in use.
- *
- * ScriptEngineMajorVersion()
- * function ScriptEngineMajorVersion( )
- * @returns {String}
-
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/x7cbaet3.aspx
- */
-function ScriptEngineMajorVersion(){};
-
-/**
- * Returns a string representing the scripting language in use. The return value corresponds directly to the version information contained in the dynamic-link library (DLL) for the scripting language in use.
- *
- * ScriptEngineMajorVersion()
- * function ScriptEngineMajorVersion( )
- * @returns {String}
-
- * @since JScript 5.6
- * @see http://msdn2.microsoft.com/en-us/library/wzaz8hhz.aspx
- */
-function ScriptEngineMinorVersion(){}
-
-
-
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties b/bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties
deleted file mode 100644
index 83414aab..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.properties
+++ /dev/null
@@ -1,14 +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
-###############################################################################
-#Properties file for org.eclipse.wst.jsdt.support.ie
-Bundle-Name.0 = JSDT Support for Internet Explorer
-JsGlobalScopeContainerPage.name.0 = Internet Explorer Library
-Bundle-Vendor.0 = Eclipse.org \ No newline at end of file
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml b/bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml
deleted file mode 100644
index b7c42469..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/plugin.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.2"?>
-<plugin>
-
- <extension point="org.eclipse.wst.jsdt.ui.JsGlobalScopeContainerPage">
- <JsGlobalScopeContainerPage
- name="%JsGlobalScopeContainerPage.name.0"
- class="org.eclipse.wst.jsdt.internal.ui.wizards.buildpaths.InternetExplorerLibraryWizardPage"
- id="org.eclipse.wst.jsdt.support.ie">
- </JsGlobalScopeContainerPage>
- </extension>
- <extension
- point="org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer">
- <JsGlobalScopeContainerInitializer
- class="org.eclipse.wst.jsdt.core.compiler.libraries.InternetExplorerLibInitializer"
- id="org.eclipse.wst.jsdt.launching.InternetExplorer">
- </JsGlobalScopeContainerInitializer>
- </extension>
- <extension point="org.eclipse.wst.jsdt.ui.JsGlobalScopeUIInitializer">
- <JsGlobalScopeUIInitializer
- id="org.eclipse.wst.jsdt.launching.InternetExplorer"
- class="org.eclipse.wst.jsdt.core.compiler.libraries.InternetExplorerUILibInitializer">
- </JsGlobalScopeUIInitializer>
- </extension>
-
-</plugin>
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.java
deleted file mode 100644
index 6b8ade8a..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.java
+++ /dev/null
@@ -1,111 +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.compiler.libraries;
-
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.jface.resource.ImageDescriptor;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer;
-import org.eclipse.wst.jsdt.core.IJsGlobalScopeContainerInitializer;
-import org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer;
-
-
-public class InternetExplorerLibInitializer extends JsGlobalScopeContainerInitializer implements IJsGlobalScopeContainerInitializer {
- protected static final String CONTAINER_ID = "org.eclipse.wst.jsdt.launching.InternetExplorer";
- protected static final String ContainerDescription = "Internet Explorer Support Library";
- //private static final char[][] LIBRARY_FILE_NAMES = { { 'I','n','t','e','r','n','e','t','E','x','p','l','o','r','e','r','.','j','s' } };
- protected static final String PLUGIN_ID = "org.eclipse.wst.jsdt.support.ie";
-
-
- static class IeLibLocation extends SystemLibraryLocation {
- IeLibLocation() {
- super();
- }
-
-
- public char[][] getLibraryFileNames() {
- return getAllFilesInPluginDirectory(getLibraryPathInPlugin().toString());
- }
-
-
- protected String getPluginId() {
- return InternetExplorerLibInitializer.PLUGIN_ID;
- }
- private static LibraryLocation fInstance;
- public static LibraryLocation getInstance(){
- if(fInstance== null){
- fInstance = new IeLibLocation();
- }
- return fInstance;
- }
- }
-
- public LibraryLocation getLibraryLocation() {
- return IeLibLocation.getInstance();
- }
-
-
- public String getDescription(IPath containerPath, IJavaScriptProject project) {
- return InternetExplorerLibInitializer.ContainerDescription;
- }
-
- public String getDescription() {
- return InternetExplorerLibInitializer.ContainerDescription;
- }
-
- public ImageDescriptor getImage(IPath containerPath, String element, IJavaScriptProject project) {
-
- if(containerPath==null) return null;
- /* Dont use the rino image for the individual files */
- String requestedContainerPath = new Path(element).getFileExtension();
- if(requestedContainerPath!=null && requestedContainerPath.equalsIgnoreCase("js")) return null;
-
-
-// char[][] allLibFiles = ( new IeLibLocation()).getLibraryFileNames();
-// for(int i = 0;i<allLibFiles.length;i++) {
-// String libName = new String(allLibFiles[i]);
-// if (element!=null && requestedContainerPath.equals(libName)) {
-// return null;
-// }
-// }
- return ImageDescriptor.createFromFile(this.getClass(),"ie_small.gif");
- //return ImageDescriptor.createFromFile(this.getClass(),"ie_small.gif");
- // System.out.println("Unimplemented method:BasicBrowserLibraryJsGlobalScopeContainerInitializer.getImage");
- //return null;
- }
- public IPath getPath() {
- return new Path(InternetExplorerLibInitializer.CONTAINER_ID);
- }
-
-
- /* (non-Javadoc)
- * @see org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer#getKind()
- */
- public int getKind() {
-
-
- return IJsGlobalScopeContainer.K_SYSTEM; }
-
-
- public boolean canUpdateJsGlobalScopeContainer(IPath containerPath, IJavaScriptProject project) {
- return true;
-
-
- }
-
-
- public String[] containerSuperTypes() {
- return new String[] {"window", "object", "array"};
- }
-
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerUILibInitializer.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerUILibInitializer.java
deleted file mode 100644
index e6d7ec98..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerUILibInitializer.java
+++ /dev/null
@@ -1,47 +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.compiler.libraries;
-
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.Path;
-import org.eclipse.jface.resource.ImageDescriptor;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.internal.ui.IJsGlobalScopeContainerInitializerExtension;
-
-/**
- * @author childsb
- *
- */
-public class InternetExplorerUILibInitializer implements IJsGlobalScopeContainerInitializerExtension{
- public ImageDescriptor getImage(IPath containerPath, String element, IJavaScriptProject project) {
-
- if(containerPath==null) return null;
- /* Dont use the rino image for the individual files */
- String requestedContainerPath = new Path(element).getFileExtension();
- if(requestedContainerPath!=null && requestedContainerPath.equalsIgnoreCase("js")) return null;
-
-
-// char[][] allLibFiles = ( new IeLibLocation()).getLibraryFileNames();
-// for(int i = 0;i<allLibFiles.length;i++) {
-// String libName = new String(allLibFiles[i]);
-// if (element!=null && requestedContainerPath.equals(libName)) {
-// return null;
-// }
-// }
- return ImageDescriptor.createFromFile(this.getClass(),"ie_small.gif");
- //return ImageDescriptor.createFromFile(this.getClass(),"ie_small.gif");
- // System.out.println("Unimplemented method:BasicBrowserLibraryJsGlobalScopeContainerInitializer.getImage");
- //return null;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/Thumbs.db b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/Thumbs.db
deleted file mode 100644
index 4ec14a42..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/Thumbs.db
+++ /dev/null
Binary files differ
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.JPG b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.JPG
deleted file mode 100644
index b04642f8..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.JPG
+++ /dev/null
Binary files differ
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.gif b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.gif
deleted file mode 100644
index aa1c038c..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_logo2.gif
+++ /dev/null
Binary files differ
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_small.gif b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_small.gif
deleted file mode 100644
index cb729107..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/core/compiler/libraries/ie_small.gif
+++ /dev/null
Binary files differ
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/InternetExplorerLibraryWizardPage.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/InternetExplorerLibraryWizardPage.java
deleted file mode 100644
index 50ff1486..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/internal/ui/wizards/buildpaths/InternetExplorerLibraryWizardPage.java
+++ /dev/null
@@ -1,80 +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.ui.wizards.buildpaths;
-
-
-
-import org.eclipse.core.runtime.Path;
-import org.eclipse.jface.dialogs.Dialog;
-import org.eclipse.swt.SWT;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.wst.jsdt.core.IIncludePathEntry;
-import org.eclipse.wst.jsdt.core.IJavaScriptProject;
-import org.eclipse.wst.jsdt.core.JavaScriptCore;
-import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.DialogField;
-import org.eclipse.wst.jsdt.internal.ui.wizards.dialogfields.LayoutUtil;
-import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPage;
-import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension;
-import org.eclipse.wst.jsdt.ui.wizards.IJsGlobalScopeContainerPageExtension2;
-import org.eclipse.wst.jsdt.ui.wizards.NewElementWizardPage;
-
-
-
-/**
- *
- */
-public class InternetExplorerLibraryWizardPage extends NewElementWizardPage implements IJsGlobalScopeContainerPage, IJsGlobalScopeContainerPageExtension, IJsGlobalScopeContainerPageExtension2 {
-
- private static final String LIBRARY_FILE_NAME = "InternetExplorer.js";
- private static final String CONTAINER_ID="org.eclipse.wst.jsdt.launching.InternetExplorer";
-
- public InternetExplorerLibraryWizardPage() {
- super("InternetExplorerBrowserLib");
- }
-
- public boolean finish() {
- return true;
- }
-
- public IIncludePathEntry getSelection() {
- // TODO Auto-generated method stub
- System.out.println("Unimplemented method:BaseLibraryWizardPage.getSelection");
- return null;
- }
-
- public void setSelection(IIncludePathEntry containerEntry) {}
-
- public void createControl(Composite parent) {
- Composite composite= new Composite(parent, SWT.NONE);
- composite.setFont(parent.getFont());
- DialogField field = new DialogField();
-
- //field.createEmptySpace(parent);
- field.setLabelText("Internet Explorer Browser (5.0) Library added to Project.\n\n - This library supports JavaScript elements provided by Microsoft's Internet Explorer web browser.");
- //field.setText("Default Browser Library added to project");
- LayoutUtil.doDefaultLayout(composite, new DialogField[] {field }, false, SWT.DEFAULT, SWT.DEFAULT);
- //LayoutUtil.setHorizontalGrabbing(fLibrarySelector.getListControl(null));
- Dialog.applyDialogFont(composite);
- setControl(composite);
- setDescription("Internet Explorer Browser Support");
-
- }
-
- public void initialize(IJavaScriptProject project, IIncludePathEntry[] currentEntries) {
-
- }
-
- public IIncludePathEntry[] getNewContainers() {
- IIncludePathEntry library = JavaScriptCore.newContainerEntry( new Path(CONTAINER_ID));
- return new IIncludePathEntry[] {library};
- }
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/ElementInfo.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/ElementInfo.java
deleted file mode 100644
index cba5fe4b..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/ElementInfo.java
+++ /dev/null
@@ -1,243 +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
- *******************************************************************************/
-package org.eclipse.wst.jsdt.jsdoc;
-
-import java.io.IOException;
-import java.util.ArrayList;
-
-/**
- *
- */
-/**
- * @author childsb
- *
- */
-public class ElementInfo {
-
- public static final int CLASS = 1;
- public static final int METHOD = 2;
- public static final int PROPERTY = 3;
-
- public static final int EVENT = 4;
- public static final int COLLECTION = 5;
-
- protected String name;
- protected String baseUrl;
- protected ElementInfo parent;
- protected ElementInfo[] children;
- protected int type=-5;
- protected static ArrayList nodes;
- protected boolean visited=false;
- protected static int instances = 0;
- protected static boolean DEBUG=false;
- protected static boolean useCache;
- protected static boolean keepCache;
-
- public boolean shouldUseCache() {
- return useCache;
- }
-
- public boolean shouldKeepCache() {
- return keepCache;
- }
- public static void setUseCache(boolean shouldUseCache) {
- useCache=shouldUseCache;
- }
-
- public static void setKeepCache(boolean shouldKeepCache) {
- keepCache = shouldKeepCache;
- }
-
- public boolean visit() {
- boolean ov = visited;
- visited = true;
- return ov;
-
- }
-
- public boolean equals(Object o) {
-
- try {
- ElementInfo other = (ElementInfo)o;
- boolean equal = other.getUrl().trim().equalsIgnoreCase(this.getUrl().trim());
-// boolean equal = other.getName().equals(this.getName()) &&
-// other.getType()==this.getType() &&
-// (
-// other.getParent().getName().equals(this.getParent().getName()) &&
-// other.getParent().getType()== (this.getParent().getType()) ||
-// other.getParent()==null && this.getParent()==null
-// );
- return equal;
- } catch (Exception ex) {}
-
- return false;
- }
-
- public static void freeObject(ElementInfo element) {
- for(int i = 0;i<nodes.size();i++) {
- ElementInfo temp = (ElementInfo)nodes.get(i);
- if(temp.getUrl().equalsIgnoreCase(element.getUrl())) {
- nodes.remove(i);
- break;
- }
- }
- }
-
- public ElementInfo[] getFoundObjects() {
- ArrayList found = new ArrayList();
- ElementInfo[] children = getChildren();
-
- //found.add(this);
- for(int i = 0;i<children.length;i++) {
-
- if(children[i].getType() == COLLECTION || children[i].getType()==EVENT) {
- children[i].clearVisit();
- found.add(children[i]);
- }
- }
-
- return (ElementInfo[])found.toArray(new ElementInfo[found.size()]);
- }
- public void clearVisit() {
- visited=false;
- }
-
- {
- nodes = new ArrayList();
- }
-
- public ElementInfo(String baseUrl,ElementInfo parent) {
- this.baseUrl = baseUrl;
- this.parent = parent;
- //addNode(this);
- if(DEBUG) {
- System.out.println("Creating new instance for total of : " + ++instances);
- }
-
- }
-
- public void finalize() {
- if(DEBUG) {
- System.out.println("Destroying instance for total of : " + --instances);
- }
- }
-
- public void addNode(ElementInfo element) {
-
- nodes.add(element);
- }
-
- public static ElementInfo findChild(String baseUrl) {
- for(int i = 0;i<nodes.size();i++) {
- ElementInfo temp = (ElementInfo)nodes.get(i);
- if(temp.getUrl().equalsIgnoreCase(baseUrl)) return temp;
- }
- return null;
- }
-
- public boolean isDefined(String baseUrl) {
- return findChild(baseUrl)!=null;
- }
-
- public ElementInfo getParent() {
- return this.parent;
- }
-
- public ElementInfo[] getChildren() {
- return this.children;
- }
-
- public boolean hasChildren() { return this.children!=null && this.children.length>0;}
-
- public String getName() { return name;}
-
- public String getUrl() { return baseUrl;}
-
-
-
- public String getJsDoc(String parentName) { return null; }
-
- public String getJsStructure() { return null;}
-
- public String getTypeName() {
- switch(getType()) {
- case ElementInfo.PROPERTY:
- return "Property";
- case ElementInfo.METHOD:
- return "Method";
- case ElementInfo.CLASS:
- return "Class";
-
-
- }
- return "Unknown Type";
- }
-
- public int getType() {
- return -1;
- }
-
- public String toString() {
- StringBuffer buff = new StringBuffer();
- buff.append("name : " + getName() + Util.NEW_LINE);
- buff.append("Type : " + getTypeName() + "Util.NEW_LINE");
- if(getParent()!=null) {
- buff.append("\tParent Name : " + getParent().getName() + Util.NEW_LINE);
- buff.append("\tParent Type : " + getParent().getTypeName() + Util.NEW_LINE);
- }else {
- buff.append("No Parent" + Util.NEW_LINE);
- }
- buff.append("baseUrl : " + baseUrl + Util.NEW_LINE);
- //buff.append("translation : " + translation + "\n");
- buff.append("----------------Children--------------" + Util.NEW_LINE + "Name\t\t\t\tType"+ Util.NEW_LINE);
- if(hasChildren()) {
-
- ElementInfo[] children = getChildren();
- for(int i = 0;i<children.length;i++) {
- buff.append(children[i].getName() + "\t\t\t" + children[i].getTypeName() + Util.NEW_LINE);
- }
- }else {
- buff.append(Util.NEW_LINE + "No Children" + Util.NEW_LINE);
- }
- buff.append("--------------------------------------");
- return buff.toString();
- }
-
- protected String getPageText() {
- try {
- return Util.retrieveFromUrl(getUrl(), shouldUseCache(), !shouldKeepCache());
- } catch (IOException ex) {
-
- }
- return null;
-// if(pageText!=null) return pageText;
-// try {
-// pageText = Util.retrieveFromUrl(getUrl());
-// } catch (IOException ex) {
-// // TODO Auto-generated catch block
-// //ex.printStackTrace();
-// }
-// return pageText;
- }
-
- public String getBaseUrl() {
- return Util.getBaseUrl(getUrl());
- }
-
- public String getDeclarationString() {
- return null;
- }
- public String getJsStructure(String parent) {
- return "NOT DEFINED " + parent;
- }
-
- public boolean isStatic() { return false; }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/GenerateJsDoc.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/GenerateJsDoc.java
deleted file mode 100644
index de1d7c81..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/GenerateJsDoc.java
+++ /dev/null
@@ -1,121 +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
- *******************************************************************************/
-package org.eclipse.wst.jsdt.jsdoc;
-
-import java.io.File;
-import java.util.ArrayList;
-
-import org.eclipse.wst.jsdt.jsdoc.msdn.IeFromMsdn;
-
-// import com.sun.org.apache.xpath.internal.FoundIndex;
-
-/**
- *
- */
-/**
- * @author childsb
- *
- */
-public class GenerateJsDoc {
-
-
-
-
- static final String outDirectory = "./libraries";
- static final String outFileName = "JScptBrowserObj.js";
- static final int REPLACE_FILE = 0;
- static final int SKIP_FILE = 1;
- static final int APPEND = 2;
- static final int LIB_FILE_ACTION = SKIP_FILE;
- static final boolean CLEAR_CACHE_ON_EXIT = false;
- static final boolean USE_CACHE=true;
- static final IJsDocSource source = new IeFromMsdn(USE_CACHE, !CLEAR_CACHE_ON_EXIT);
- static final String JS_PREFIX="IE_";
-
-
- public static String getOutFile(String fileName) {
- File outDir = new File(outDirectory);
- if(!outDir.exists()) outDir.mkdir();
- File outFile = new File(outDir.getAbsolutePath() + "/" + fileName);
- return outFile.getAbsolutePath();
- }
-
- public static void main(String[] args) {
- ElementInfo tempElement = new ElementInfo(null,null);
-
- ElementInfo[] tops = source.getTopObjects();
- ArrayList allFoundNodes= new ArrayList();
-
- boolean workDone = true;
- while(workDone) {
- workDone = false;
- //allFoundNodes = new ArrayList();
- for(int i = 0;i<tops.length;i++) {
- String fileName = getOutFile(JS_PREFIX + tops[i].getName().toLowerCase().trim() + ".js");
- //String fileName = getOutFile(outFileName);
- File theFile = new File(fileName);
- switch(LIB_FILE_ACTION) {
- case SKIP_FILE:
-
- if(theFile.exists()) {
- System.out.println("Skipping output to file : " + theFile.getAbsolutePath());
- ElementInfo[] foundObjects = tops[i].getFoundObjects();
- for(int k = 0;k<foundObjects.length;k++) {
- if(!allFoundNodes.contains(foundObjects[k])) {
- workDone = true;
- allFoundNodes.add(foundObjects[k]);
- }
- }
- ElementInfo.freeObject(tops[i]);
- tops[i]=null;
- System.gc();
- continue;
- }
- break;
- case REPLACE_FILE:
- {
-
- if(theFile.exists()) theFile.delete();
- break;
- }
- case APPEND:
-
-
- }
- workDone = true;
- System.out.println("Writing Class '" + tops[i].getName() + "' to disk in " + fileName );
- tops[i].getChildren();
- String jsSctureture = tops[i].getJsStructure();
- Util.stringToFile(jsSctureture, fileName, true, false);
-
- ElementInfo[] foundObjects = tops[i].getFoundObjects();
- for(int k = 0;k<foundObjects.length;k++) {
- if(!allFoundNodes.contains(foundObjects[k])) {
- allFoundNodes.add(foundObjects[k]);
- workDone = true;
- }
- }
- ElementInfo.freeObject(tops[i]);
- tops[i]=null;
- System.gc();
- }
- System.out.println("Writing Collections and Events....");
-
- tops = (ElementInfo[])allFoundNodes.toArray(new ElementInfo[allFoundNodes.size()]);
- tempElement=null;
- }
-
- }
-
-
-
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/IJsDocSource.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/IJsDocSource.java
deleted file mode 100644
index b3e176c0..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/IJsDocSource.java
+++ /dev/null
@@ -1,25 +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
- *******************************************************************************/
-package org.eclipse.wst.jsdt.jsdoc;
-/**
- *
- */
-/**
- * @author childsb
- *
- */
-public interface IJsDocSource {
-
-
- public ElementInfo[] getTopObjects();
-
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/MappingException.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/MappingException.java
deleted file mode 100644
index a4e372b3..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/MappingException.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.eclipse.wst.jsdt.jsdoc;
-/*
- * Created on Apr 24, 2006
- *
- * Bradley Childs (childsb@us.ibm.com)
- * Copyright IBM 2006.
- *
- * Error thrown for any mapping related issues.
- */
-public class MappingException extends Exception {
-
- /**
- *
- */
- private static final long serialVersionUID = 1L;
-
- public MappingException() {
- super();
- }
-
- public MappingException(String ex) {
- super(ex);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/Util.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/Util.java
deleted file mode 100644
index 6c0a7462..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/Util.java
+++ /dev/null
@@ -1,173 +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
- *******************************************************************************/
-package org.eclipse.wst.jsdt.jsdoc;
-
-import java.io.BufferedReader;
-import java.io.BufferedWriter;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.FileWriter;
-import java.io.IOException;
-import java.io.InputStreamReader;
-import java.net.URL;
-import java.net.URLConnection;
-import java.util.StringTokenizer;
-
-/**
- *
- */
-/**
- * @author childsb
- *
- */
-public class Util {
- public static final String XSL_HEADER = "<?xml version=\"1.0\"?> <xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
- public static final String XSL_FOOTER = "</xsl:stylesheet>";
- public static final String NEW_LINE = System.getProperty("line.separator");
- private static final String BUFFER_DIR = "./webCache";
- public static final boolean VERBOSE = true;
-
- private static File getTempDir() {
- File tempDir = new File(BUFFER_DIR);
- if (tempDir.exists()) return tempDir;
- tempDir.mkdir();
- return tempDir;
- }
-
- public static String retrieveFromUrl(String url, boolean useCache, boolean deleteOnExit) throws IOException {
- System.gc();
- String buffFile = getTempDir().getAbsolutePath() + "\\" + toUniqueFileName(url);
- String text = null;
- if (useCache) {
- try {
- text = fileToString(buffFile);
- } catch (IOException e) {
- }
- if (text != null) {
- // System.out.println("Found file in cache..");
- return text;
- }
- }
- StringBuffer pageText = new StringBuffer();
- URL location = new URL(url);
- URLConnection yc = location.openConnection();
- BufferedReader in = new BufferedReader(new InputStreamReader(yc.getInputStream()));
- String inputLine;
- while ((inputLine = in.readLine()) != null)
- pageText.append(inputLine);
- in.close();
- if (useCache) {
- if (VERBOSE) System.out.println("Caching URL.. " + url);
- stringToFile(pageText.toString(), buffFile, false, deleteOnExit);
- }
- return pageText.toString();
- }
-
- public static String toUniqueFileName(String url) {
- String temp = url.replace('/', '_');
- temp = temp.replace('\\', '_');
- temp = temp.replace(':', '_');
- temp = temp.replace('#', '_');
- temp = temp.replace('?', '_');
- temp = temp.replace('%', '_');
- temp = temp.replace('=', '_');
- temp = temp.replace('&', '_');
- temp = temp.replace(';', '_');
- temp = temp.replace('(', '_');
- temp = temp.replace(')', '_');
- temp = temp.replace('\'', '_');
- temp = temp.replace(',', '_');
- temp = temp.replace('$', '_');
- return temp;
- }
-
- public static String retrieveFromUrlFixEncode(String url, boolean useBuffer, boolean deleteOnExit) throws IOException {
- String encoding = "ISO-8859-1";
- /* Changes all UTF-8 and UTF-16 encoding to stated encoding string */
- String text = retrieveFromUrl(url, useBuffer, deleteOnExit);
- text = text.replaceAll("UTF-8", encoding);
- text = text.replaceAll("UTF-16", encoding);
- return text;
- }
-
- public static String applyTranslation(String text, File translation) throws MappingException {
- XSLTMap map = new XSLTMap(translation);
- return map.applyMap(text);
- }
-
- public static File dataToTempFile(String data) {
- File temp = null;
- try {
- // Create temp file.
- temp = File.createTempFile(System.currentTimeMillis() + "_tmp", ".tmp");
- // Delete temp file when program exits.
- temp.deleteOnExit();
- // Write to temp file
- BufferedWriter out = new BufferedWriter(new FileWriter(temp));
- out.write(data);
- out.close();
- } catch (IOException e) {
- }
- return temp;
- }
-
- public static String fileToString(String fileName) throws IOException {
- System.gc();
- File file = new File(fileName);
- FileInputStream fis = new FileInputStream(file);
- //BufferedInputStream bis = null;
- BufferedReader dis = new BufferedReader(new InputStreamReader(fis));
- // dis.available() returns 0 if the file does not have more lines.
- StringBuffer buff = new StringBuffer();
- String line = null;
- while ((line = dis.readLine()) != null) {
- buff.append(line);
- }
- // dispose all the resources after using them.
- fis.close();
- dis.close();
- return buff.toString();
- }
-
- public static File stringToFile(String data, String fileName, boolean appendToEnd, boolean deleteOnExit) {
- File temp = null;
- System.gc();
- try {
- // Create temp file.
- temp = new File(fileName);
- if(deleteOnExit) temp.deleteOnExit();
- // Delete temp file when program exits.
- // temp.deleteOnExit();
- // Write to temp file
- FileWriter writer = new FileWriter(temp, appendToEnd);
- BufferedWriter out = new BufferedWriter(writer);
- StringTokenizer st = new StringTokenizer(data, "\n");
- String fullLine = null;
- while (st.hasMoreTokens()) {
- fullLine = st.nextToken();
- if (appendToEnd) {
- out.write(fullLine /* + Util.NEW_LINE */);
- } else {
- out.write(fullLine /* + Util.NEW_LINE */);
- }
- }
- out.close();
- } catch (IOException e) {
- }
- return temp;
- }
-
- public static String getBaseUrl(String url) {
- int last = url.lastIndexOf('/');
- if (last < 0) return url;
- return url.substring(0, last);
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XSLTMap.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XSLTMap.java
deleted file mode 100644
index 9a446281..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XSLTMap.java
+++ /dev/null
@@ -1,112 +0,0 @@
-package org.eclipse.wst.jsdt.jsdoc;
-/*
- * Created on Apr 24, 2006
- *
- * Bradley Childs (childsb@us.ibm.com)
- * Copyright IBM 2006.
- *
- * XSL Mapper. Very simple, takes a few things as input and translates them
- * via the XSL file defined.
- */
-
-import java.io.ByteArrayInputStream;
-import java.io.ByteArrayOutputStream;
-import java.io.File;
-import java.io.IOException;
-import java.io.OutputStream;
-
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-import javax.xml.parsers.ParserConfigurationException;
-import javax.xml.transform.Transformer;
-import javax.xml.transform.TransformerConfigurationException;
-import javax.xml.transform.TransformerException;
-import javax.xml.transform.TransformerFactory;
-import javax.xml.transform.dom.DOMSource;
-import javax.xml.transform.stream.StreamResult;
-import javax.xml.transform.stream.StreamSource;
-
-import org.w3c.dom.Document;
-import org.xml.sax.SAXException;
-
-public class XSLTMap {
-
- private File stylesheet;
-
- public XSLTMap(File stylesheet) {
- this.stylesheet = stylesheet;
- }
-
- public String applyMap(String datastring) throws MappingException {
- ByteArrayOutputStream xOutputStream = new ByteArrayOutputStream(1024); // Buffer size- trivial
- applyMap(datastring, xOutputStream);
- String XMLText = xOutputStream.toString();
- try{
- xOutputStream.close();
- }catch(IOException ex){
- // I ran into a door. I'm so clumsy.
- }
- return XMLText;
- }
-
- public void applyMap(String dataString, OutputStream _os) throws MappingException {
- Document document;
- DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
- factory.setValidating(false);
-
- try {
- DocumentBuilder builder = factory.newDocumentBuilder();
-
- byte[] docBytes = dataString.getBytes();
-
- document = builder.parse(new ByteArrayInputStream(docBytes));
- // Use a Transformer for output
- TransformerFactory tFactory = TransformerFactory.newInstance();
- StreamSource stylesource = new StreamSource(stylesheet);
- Transformer transformer = tFactory.newTransformer(stylesource);
- DOMSource source = new DOMSource(document);
- /* Need to get an output stream to a string */
- StreamResult result = new StreamResult(_os);
- transformer.transform(source, result);
-
- /* close things */
- transformer.clearParameters();
-
-
-
- } catch (SAXException sxe) {
- throw new MappingException("Transformer c error:\n" + sxe.getMessage());
- } catch (TransformerConfigurationException tce) {
- // Error generated by the parser
- throw new MappingException("Transformer c error:\n" + tce.getMessage());
- } catch (TransformerException te) {
- // Error generated by the parser
- throw new MappingException("Transformer error:\n" + te.getMessage());
- } catch (ParserConfigurationException pce) {
- // Parser with specified options can't be built
- throw new MappingException("Transformer factory error:\n" + pce.getMessage());
- } catch (IOException ioe) {
- // I/O error (probably corrupt DTD)
- throw new MappingException("I/O Exception error (probably bad/missing XSL map) :\n" + ioe.getMessage());
- } catch (Exception ex){
- throw new MappingException("General exceptioned occured while mapping: " + ex.getMessage());
- }
-
-
- }
-
-// public static void main(String argv[]) {
-// if (argv.length != 2) {
-// System.err.println("Usage: java Stylizer stylesheet xmlfile");
-// System.exit(1);
-// }
-// File stylesheet = new File(argv[0]);
-// File datafile = new File(argv[1]);
-// XSLTMap t = new XSLTMap(stylesheet);
-// String dataString = "";
-// //System.out.println(t.applyMap(dataString));
-//
-// }
-
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XmlBasedSource.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XmlBasedSource.java
deleted file mode 100644
index 6fc90357..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/XmlBasedSource.java
+++ /dev/null
@@ -1,70 +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
- *******************************************************************************/
-package org.eclipse.wst.jsdt.jsdoc;
-
-/**
- *
- */
-/**
- * @author childsb
- *
- */
-public abstract class XmlBasedSource implements IJsDocSource{
-
-
- public String toStringObjectTree() {
- ElementInfo[] tops = getTopObjects();
- if(tops==null) return "No Top Level Objects Found in " + this.getClass().getName();
- StringBuffer buff = new StringBuffer();
- buff.append("Top Level Object tree for : " + getClass().getName() + Util.NEW_LINE);
- for(int i = 0;i<tops.length;i++) {
- buff.append(tops[i]);
- }
- return buff.toString();
- }
-
- public String getXsl() {
-
- return Util.XSL_HEADER + "" + Util.XSL_FOOTER;
- }
-
- public String getUrl() {
- return null;
- }
-
- public String toString() {
- return toStringObjectTree();
- }
-
- public String pageToString() {
- StringBuffer buff = new StringBuffer();
- String page="error retrieving page";
- try {
- page = Util.retrieveFromUrlFixEncode(getUrl(), false, false);
- } catch (Exception ex) {
- return "Error retrieving page " + ex.toString();
- }
- buff.append("------------------------- Page ----------------------" + Util.NEW_LINE );
- buff.append(page+ Util.NEW_LINE);
-// buff.append("------------------------- Translated Page ----------------------\n" );
-// File tempTran = Util.dataToTempFile(getXsl());
-// try {
-// buff.append(Util.applyTranslation(page, tempTran) + "\n");
-// } catch (Exception ex) {
-// // TODO Auto-generated catch block
-// buff.append(ex.toString() + "\n");
-// }
- buff.append("================================================================================" + Util.NEW_LINE );
- return buff.toString();
- }
-}
-
-
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/IeFromMsdn.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/IeFromMsdn.java
deleted file mode 100644
index f3f3c2f5..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/IeFromMsdn.java
+++ /dev/null
@@ -1,102 +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
- *******************************************************************************/
-package org.eclipse.wst.jsdt.jsdoc.msdn;
-import java.io.IOException;
-import java.util.ArrayList;
-
-import org.eclipse.wst.jsdt.jsdoc.ElementInfo;
-import org.eclipse.wst.jsdt.jsdoc.Util;
-import org.eclipse.wst.jsdt.jsdoc.XmlBasedSource;
-
-/**
- *
- */
-/**
- * @author childsb
- *
- */
-public class IeFromMsdn extends XmlBasedSource {
-
- //String topUrl = "http://msdn2.microsoft.com/en-us/library/ms535873.aspx#";
- String topUrl = "http://msdn2.microsoft.com/en-us/library/ms533054.aspx";
-
- boolean useCache = false;
- boolean keepCache = false;
-
- public IeFromMsdn(boolean useCache, boolean keepCache) {
- this.useCache=useCache;
- this.keepCache=keepCache;
- ElementInfo.setUseCache(useCache);
- ElementInfo.setKeepCache(keepCache);
- }
-
- public ElementInfo[] getTopObjects() {
- String[] allUrls = parseTopObjectPage();
-
- MsdnElement[] parents = new MsdnElement[allUrls.length];
-
- for(int i = 0;i<allUrls.length;i++) {
- parents[i] = new MsdnElement(allUrls[i]);
- }
-
- return parents;
- }
-
-
- private String[] parseTopObjectPage() {
- ArrayList allObject = new ArrayList();
-
- String pageText=null;
- try {
- pageText = Util.retrieveFromUrl(getUrl(), useCache, keepCache);
- } catch (IOException ex) {
- // TODO Auto-generated catch block
- ex.printStackTrace();
- }
-
- String p1 = "<h2>Objects</h2><blockquote>";
- String end = "</blockquote>";
- int i1 = pageText.indexOf(p1);
-
- if(i1<0) return null;
-
- i1 = i1 + p1.length() ;
- int indexOfEnd = pageText.indexOf(end, i1);
-
-
-
- String p2 = "href=\"";
- String p3 = "\"";
- String baseUrl = Util.getBaseUrl(getUrl());
-
- //System.out.println(pageText.substring(i1, indexOfEnd));
- int i2 =0;
-
- while(i2<indexOfEnd && i2>=0) {
- i2 = pageText.indexOf(p2, i1) + p2.length();
- if(i2>=indexOfEnd) break;
- int i3 = pageText.indexOf(p3,i2);
- String href = baseUrl + "/" + pageText.substring(i2,i3);
- allObject.add(href);
- i1=i3 + p3.length();
- }
-
-
-
- return (String[])allObject.toArray(new String[allObject.size()]);
-
- }
-
- public String getUrl() {
- return topUrl;
- }
-
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/MsdnElement.java b/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/MsdnElement.java
deleted file mode 100644
index 21585906..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/src/org/eclipse/wst/jsdt/jsdoc/msdn/MsdnElement.java
+++ /dev/null
@@ -1,703 +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
- *******************************************************************************/
-/**
- *
- */
-package org.eclipse.wst.jsdt.jsdoc.msdn;
-
-import java.util.ArrayList;
-import java.util.Arrays;
-
-import org.eclipse.wst.jsdt.jsdoc.ElementInfo;
-import org.eclipse.wst.jsdt.jsdoc.Util;
-
-/**
- * @author childsb
- *
- * parsers msdn web pages into a JSDoc and JavaScript prototype structure for library purposes.
- *
- */
-public class MsdnElement extends ElementInfo{
-
-
- String typeName;
- String[][] parsedParams = null;
-
-
- public String getJsTypeName() {
- if(typeName!=null) return typeName;
-
- switch(getType()) {
- case ElementInfo.PROPERTY:
- String pageText = getPageText();
- String p1 = "<p class=\"clsRef\">Possible Values</p>";
- String end = "</blockquote>";
- int i1 = pageText.indexOf(p1);
-
- if(i1<0) return null;
-
- i1 = i1 + p1.length() ;
- int indexOfEnd = pageText.indexOf(end, i1);
- String p2 = "<b>";
- String p3 = "</b>";
-
-
- //System.out.println(pageText.substring(i1, indexOfEnd));
- int i2 = pageText.indexOf(p2, i1) + p2.length();
-
- int i3 = pageText.indexOf(p3,i2);
- if(i2>indexOfEnd || i3>indexOfEnd) return null;
-
- typeName = pageText.substring(i2,i3);
- break;
- case ElementInfo.COLLECTION:
- typeName="Array";
- break;
- case METHOD:
- pageText = getPageText();
- p1 = "<p class=\"clsRef\">Return Value</p>";
- end = "</blockquote>";
- i1 = pageText.indexOf(p1);
-
- if(i1<0) return null;
-
- i1 = i1 + p1.length() ;
- indexOfEnd = pageText.indexOf(end, i1);
- p2 = "<b>";
- p3 = "</b>";
-
-
- //System.out.println(pageText.substring(i1, indexOfEnd));
- i2 = pageText.indexOf(p2, i1);
- if(i2<0) return null;
- i2 = i2+ p2.length();
-
- i3 = pageText.indexOf(p3,i2);
- if(i2>indexOfEnd || i3>indexOfEnd) return null;
-
- typeName = pageText.substring(i2,i3);
- break;
-
- }
- return typeName;
- }
-
-
-
- public String getJsDoc(String parentName) {
- StringBuffer jsDoc = new StringBuffer();
- jsDoc.append("/**" + Util.NEW_LINE);
- String dec = " * ";
- String endDec = Util.NEW_LINE;
-
- switch(getType()) {
- case COLLECTION:
- case EVENT:
- case ElementInfo.CLASS:
- if(parentName!=null) {
- jsDoc.append(dec + "Property " + getName() + endDec);
- jsDoc.append(dec + "@type " + getName() + endDec);
- jsDoc.append(dec + "@return " + getName() + endDec);
- jsDoc.append(dec + "@class " + parentName + endDec);
- jsDoc.append(dec + "@since " + getSince() + endDec);
- break;
- }
- jsDoc.append(dec + "Object " + getName() + "()" + endDec);
- jsDoc.append(dec + "@type " + getName() + endDec);
- jsDoc.append(dec + "@super "+ getSuperType() + endDec);
- jsDoc.append(dec + "@class " + getName() + endDec);
- jsDoc.append(dec + "@since " + getSince() + endDec);
- break;
- case ElementInfo.METHOD:
- String superType = getSuperType();
- jsDoc.append(dec + "function " + getName() + "(" + getParamString() + ")" + endDec);
- String params[][] = getParamaters();
- for(int i = 0;i<params.length;i++) {
- jsDoc.append(dec + "@param " + params[i][0] + " " + params[i][1] + endDec);
- }
- if(superType!=null) jsDoc.append(dec + "@type " + superType + endDec);
- if(superType!=null) jsDoc.append(dec + "@return " + superType + endDec);
-
- jsDoc.append(dec + "@class " + parentName + endDec);
- jsDoc.append(dec + "@since " + getSince() + endDec);
- break;
- case ElementInfo.PROPERTY:
- jsDoc.append(dec + "Property " + getName() + endDec);
- jsDoc.append(dec + "@type " + getSuperType() + endDec);
- jsDoc.append(dec + "@return " + getSuperType() + endDec);
- jsDoc.append(dec + "@class " + parentName + endDec);
- jsDoc.append(dec + "@since " + getSince() + endDec);
- break;
- }
- jsDoc.append(dec + "@link " + getUrl() + endDec);
- jsDoc.append("*/" + Util.NEW_LINE);
- return jsDoc.toString();
- }
-
- public String[][] getParamaters() {
-
- if(parsedParams!=null) return parsedParams;
-
- String[][] noParams = new String[0][];
- //
-
- String pageText = getPageText();
- String p1 = "<p class=\"clsRef\">Parameters</p>";
- String end = "</blockquote>";
- int i1 = pageText.indexOf(p1);
-
- if(i1<0) {
- parsedParams = noParams;
- return parsedParams;
- }
-
- i1 = i1 + p1.length() ;
- int indexOfEnd = pageText.indexOf(end, i1);
-
- int paramStart = i1;
-
- ArrayList params = new ArrayList();
- ArrayList types = new ArrayList();
-
- String paramI = "<i>";
- String paramIend = "</i>";
- String p2 = "<b>";
- String p3 = "</b>";
- String paramTypeEendFallback1 = "<td>";
- String paramTypeEendFallback1End = "</td>";
- while(paramStart<indexOfEnd) {
- paramStart = pageText.indexOf(paramI, paramStart);
- if(paramStart<0 || paramStart>indexOfEnd) break;
- paramStart =paramStart + paramI.length();
- int paramEnd = pageText.indexOf(paramIend, paramStart);
- String paramName = pageText.substring(paramStart,paramEnd);
-
- int typeStart = pageText.indexOf(p2,paramEnd);
- int typeEnd = -1;
-
- if(typeStart>0) {
- typeStart = typeStart + p2.length();
- typeEnd = pageText.indexOf(p3, typeStart);
-
- }else {
- typeStart =pageText.indexOf(paramTypeEendFallback1,paramEnd + paramI.length()) + paramTypeEendFallback1.length() ;
- typeEnd = pageText.indexOf(paramTypeEendFallback1End, typeStart);
- }
- String typeName=null;
- try {
- typeName = pageText.substring(typeStart,typeEnd);
- } catch (RuntimeException ex) {
- // TODO Auto-generated catch block
- //ex.printStackTrace();
- break;
- }
-
- paramStart = pageText.indexOf(paramTypeEendFallback1End, typeStart);
- //paramStart = typeEnd;
-
- if(contains(typeName, "integer")) typeName = "Number";
-
- params.add(paramName);
- types.add(typeName);
- }
-
- //int paramTypeStart = i1;
-
-
-// while(paramTypeStart<indexOfEnd) {
-// paramTypeStart = pageText.indexOf(p2, paramTypeStart);
-// if(paramTypeStart<0) break;
-// paramTypeStart =paramTypeStart + p2.length();
-// int paramEnd = pageText.indexOf(p3, paramTypeStart);
-// String paramName = pageText.substring(paramTypeStart,paramEnd);
-// types.add(paramName.trim());
-// }
-
- if(params.size()==0) return noParams;
-
- parsedParams = new String[params.size()][2];
-
- for(int i = 0;i<params.size();i++) {
- parsedParams[i][0]=(String)params.get(i);
- parsedParams[i][1]=(String)types.get(i);
- }
-
- return parsedParams;
- }
-
- public String getSuperType() {
- if(getType()==COLLECTION) return "Array";
- if(getType()==EVENT) return "Object";
- if(getType()==PROPERTY) {
- String jsTypeName = getJsTypeName();
- if(jsTypeName==null) return "Object";
- jsTypeName = jsTypeName.trim();
- if(contains(jsTypeName, "variant")) return "Object";
- if(contains(jsTypeName, "integer")) return "Number";
- return jsTypeName ;
- }
- if(getType()==CLASS) {
-
- return "Object";
-
- }
- if(getType()==METHOD) {
- String jsTypeName = getJsTypeName();
- if(jsTypeName==null) return null;
- jsTypeName = jsTypeName.trim();
- if(contains(jsTypeName, "variant")) return "Object";
- if(contains(jsTypeName, "integer")) return "Number";
- return jsTypeName ;
-
- }
-
- return "Object";
- }
-
- public String getSince() {
- return "JScript 5.6";
- }
-
- public String getJsStructure() {
- StringBuffer structure = new StringBuffer();
- structure.append(getJsDoc(null) + Util.NEW_LINE);
- ElementInfo[] children = getChildren();
- String myName = getName();
- structure.append("function " + myName + "(){};" + Util.NEW_LINE);
- structure.append(myName + ".prototype= new " + getSuperType() + "();" + Util.NEW_LINE);
-
- for(int i = 0;i<children.length;i++) {
-
- //if( !children[i].visit())
- structure.append(children[i].getJsStructure(myName));
- }
- return structure.toString();
- }
-
- public String getParamString() {
- String[][] params = getParamaters();
- String paramString="";
-
- for(int i = 0;i<params.length;i++) {
- paramString = paramString + params[i][0] + (((i+1)<params.length) ?",":"");
- }
- return paramString;
- }
-
- public String getJsStructure(String parent) {
- StringBuffer structure = new StringBuffer();
-
- switch(getType()) {
- case ElementInfo.PROPERTY:
- structure.append(getJsDoc(parent)+ Util.NEW_LINE);
-
- if(!isStatic()) {
- structure.append(parent + ".prototype." + getName() + "=" + getInitializer(getSuperType()) + ";" + Util.NEW_LINE );
- }else {
- structure.append(parent + "." + getName() + "=" + getInitializer(getSuperType()) + ";" + Util.NEW_LINE);
- }
- break;
- case ElementInfo.METHOD:
- structure.append(getJsDoc(parent)+ Util.NEW_LINE);
- if(!isStatic()) {
- structure.append(parent + ".prototype." + getName() + "=function("+getParamString()+"){};" + Util.NEW_LINE);
- }else {
- structure.append(parent + getName()+ "=function("+getParamString()+"){};" + Util.NEW_LINE );
- }
-
- break;
- case CLASS:
- case EVENT:
- case COLLECTION:
- structure.append(getJsDoc(parent)+ Util.NEW_LINE);
-
- if(!isStatic()) {
- structure.append(parent + ".prototype." + getName() + "= new " + getName() + "();" + Util.NEW_LINE );
- }else {
- structure.append(parent + "." + getName() + "= new " + getName() + "();" + Util.NEW_LINE);
- }
- //System.out.println("adding complex structure : \n" + structure.toString());
- break;
-
- }
- return structure.toString();
- }
-
- public boolean isStatic() {
- return false;
- }
-
- public MsdnElement(String baseUrl,ElementInfo parent) {
-
- super(baseUrl,parent);
- }
-
- public MsdnElement(String baseUrl) {
-
- super(baseUrl,null);
- }
-
- private ElementInfo getMsdnElement(String baseUrl) {
- ElementInfo temp = findChild(baseUrl);
- if(temp!=null) return temp;
-
- MsdnElement element = new MsdnElement(baseUrl, this);
- nodes.add(element);
- return element;
- }
-
-
- public String getName() {
- if(super.name!=null) return super.name;
- String pageText = getPageText();
- if(pageText==null) return null;
-
- String p1 = "<div class=\"stat\"><strong>&nbsp;";
-
- int i1 = pageText.indexOf(p1) + p1.length() ;
-
- String p2 = " ";
-
- int i2 = pageText.indexOf(p2,i1);
- super.name = pageText.substring(i1,i2);
- return super.name;
- }
-
-
-
- public boolean contains(String s1, String searchFor) {
- String temp = s1.toLowerCase();
- String temp2 = searchFor.toLowerCase();
-
- return temp.indexOf(temp2)>-1;
- }
-
- public int getType() {
-
- String typeName=null;
-
- if(super.type>-1) return super.type;
-
- String pageText;
- int i1;
- int i2;
- try {
- pageText = getPageText();
-
- String p1 = "<div class=\"stat\"><strong>&nbsp;" + getName();
-
- i1 = pageText.indexOf(p1) + p1.length();
-
- String p2 = "</strong>";
-
- i2 = pageText.indexOf(p2,i1);
- } catch (RuntimeException ex) {
- return -1;
- }
-
-
-
- try {
- typeName = pageText.substring(i1,i2).trim();
- } catch (Exception ex) {
- return -1;
- // TODO Auto-generated catch block
- //ex.printStackTrace();
- }
-
- if(contains(typeName,("object")) || contains(typeName,"Collection")){
- super.type = ElementInfo.CLASS;
- }
-
- if(contains(typeName,"Property")){
- super.type = ElementInfo.PROPERTY;
- }
-
- if(contains(typeName,"Method")){
- super.type = ElementInfo.METHOD;
- }
- if(contains(typeName,"Event")){
- super.type = ElementInfo.EVENT;
- }
- if(contains(typeName,"Collection")){
- super.type = ElementInfo.COLLECTION;
- }
- return super.type;
- }
-
- public String getTypeName() {
- switch(getType()) {
- case ElementInfo.EVENT:
- return "Event";
- case ElementInfo.COLLECTION:
- return "Collection";
- default:
- return super.getTypeName();
- }
- }
-
- public ElementInfo[] getChildren() {
- if(super.children!=null && super.children.length!=0) return super.children;
- ArrayList children = new ArrayList();
-
- ElementInfo[] elemnts;
-
- elemnts = getProperties();
- children.addAll(Arrays.asList(elemnts));
- if(DEBUG) {
- System.out.println("Found the following in getProperties()");
- for(int i = 0;i<elemnts.length;i++) {
- String name = elemnts[i].getName();
- System.out.println("\t" + name);
- }
- }
- elemnts =getMethods();
- children.addAll(Arrays.asList(elemnts));
-
- if(DEBUG) {
- System.out.println("Found the following in getMethods()");
- for(int i = 0;i<elemnts.length;i++) {
- String name = elemnts[i].getName();
- System.out.println("\t" + name);
- }
- }
- elemnts =getObjects();
- children.addAll(Arrays.asList(elemnts));
- if(DEBUG) {
- System.out.println("Found the following in getObjects()");
- for(int i = 0;i<elemnts.length;i++) {
- String name = elemnts[i].getName();
- System.out.println("\t" + name);
- }
- }
- elemnts =getEvents();
- children.addAll(Arrays.asList(elemnts));
-
- if(DEBUG) {
- System.out.println("Found the following in getEvents()");
- for(int i = 0;i<elemnts.length;i++) {
- String name = elemnts[i].getName();
- System.out.println("\t" + name);
- }
- }
- elemnts =getCollections();
- children.addAll(Arrays.asList(elemnts));
- if(DEBUG) {
- System.out.println("Found the following in getCollections()");
- for(int i = 0;i<elemnts.length;i++) {
- String name = elemnts[i].getName();
- System.out.println("\t" + name);
- }
- }
- super.children = (ElementInfo[])children.toArray(new ElementInfo[children.size()]);
-
-
- return super.children;
- }
-
-
-
- public boolean hasChildren() {
- ElementInfo[] children = getChildren();
- return children!=null && children.length>0;
- }
-
- public ElementInfo[] getProperties() {
- ArrayList foundProps = new ArrayList();
- String baseUrl = getBaseUrl();
- String pageText = getPageText();
- String p1 = "<tr><th>Property</th><th>Description</th></tr>";
- String end = "</table>";
- int i1 = pageText.indexOf(p1);
-
- if(i1<0) {
- p1 = "<th>Attribute</th><th>Property</th><th>Description</th>";
- i1 = pageText.indexOf(p1);
- }
- if(i1<0) {
- //System.out.println("No properties");
- return new ElementInfo[0];
- }
- i1 = i1 + p1.length() ;
-
-
-
- int indexOfEnd = pageText.indexOf(end, i1);
- String p2 = "href=\"";
- int i2 = i1;
- String p3 = "\"";
- while(i2<indexOfEnd) {
- i2 = pageText.indexOf(p2,i2) + p2.length();
-
- int i3 = pageText.indexOf(p3,i2);
- String urlName = pageText.substring(i2,i3);
-
-
-
- ElementInfo info = getMsdnElement(baseUrl + "/" + urlName);
- if(!foundProps.contains(info)) foundProps.add(info);
- }
- return (ElementInfo[])foundProps.toArray(new ElementInfo[foundProps.size()]);
- }
-
- public ElementInfo[] getMethods() {
-
- ArrayList foundProps = new ArrayList();
- String baseUrl = getBaseUrl();
- String pageText = getPageText();
- String p1 = "<tr><th>Method</th><th>Description</th></tr>";
- String end = "</table>";
- int i1 = pageText.indexOf(p1);
-
- if(i1<0) {
- //System.out.println("no methods");
- return new ElementInfo[0];
- }
-
- i1 = i1 + p1.length() ;
- int indexOfEnd = pageText.indexOf(end, i1);
- String p2 = "href=\"";
- int i2 = i1;
- String p3 = "\"";
- while(i2<indexOfEnd) {
- i2 = pageText.indexOf(p2,i2) + p2.length();
- if(i2>indexOfEnd) break;
- int i3 = pageText.indexOf(p3,i2);
- String urlName = pageText.substring(i2,i3);
-
-
- ElementInfo info = getMsdnElement(baseUrl + "/" + urlName);
- if(!foundProps.contains(info)) foundProps.add(info);
- }
- return (ElementInfo[])foundProps.toArray(new ElementInfo[foundProps.size()]);
- }
-
- public ElementInfo[] getObjects() {
- ArrayList foundProps = new ArrayList();
- String baseUrl = getBaseUrl();
- String pageText = getPageText();
- String p1 = "<tr><th>Object</th><th>Description</th></tr>";
- String end = "</table>";
- int i1 = pageText.indexOf(p1);
- if(i1<0) {
- p1 = "<tr><th>Element</th><th>Object</th><th>Description</th>";
- i1 = pageText.indexOf(p1);
- }
-
- if(i1<0) {
- //System.out.println("no Objects");
- return new ElementInfo[0];
- }
-
- i1 = i1 + p1.length() ;
-
- int indexOfEnd = pageText.indexOf(end, i1);
- String p2 = "href=\"";
- int i2 = i1;
- String p3 = "\"";
- while(i2<indexOfEnd) {
- i2 = pageText.indexOf(p2,i2) + p2.length();
- if(i2>indexOfEnd) break;
- int i3 = pageText.indexOf(p3,i2);
- String urlName = pageText.substring(i2,i3);
-
-
- ElementInfo info = getMsdnElement(baseUrl + "/" + urlName);
- //System.out.println("Adding object: " + baseUrl + "/" + urlName);
- if(!foundProps.contains(info)) {
- //String objectName = info.getName();
- //System.out.println("Adding " + objectName);
- foundProps.add(info);
- }
- }
- return (ElementInfo[])foundProps.toArray(new ElementInfo[foundProps.size()]);
- }
-
- public ElementInfo[] getEvents() {
-
- ArrayList foundProps = new ArrayList();
- String baseUrl = getBaseUrl();
- String pageText = getPageText();
- String p1 = "<tr><th>Event</th><th>Description</th></tr>";
- String end = "</table>";
- int i1 = pageText.indexOf(p1);
-
- if(i1<0) {
- //System.out.println("No events");
- return new ElementInfo[0];
- }
-
- i1 = i1 + p1.length() ;
- int indexOfEnd = pageText.indexOf(end, i1);
- String p2 = "href=\"";
- int i2 = i1;
- String p3 = "\"";
- while(i2<indexOfEnd) {
- i2 = pageText.indexOf(p2,i2) + p2.length();
- if(i2>indexOfEnd) break;
- int i3 = pageText.indexOf(p3,i2);
- String urlName = pageText.substring(i2,i3);
-
-
- ElementInfo info = getMsdnElement(baseUrl + "/" + urlName);
-
- if(!foundProps.contains(info)) foundProps.add(info);
- }
- return (ElementInfo[])foundProps.toArray(new ElementInfo[foundProps.size()]);
- }
-
- public ElementInfo[] getCollections() {
-
- ArrayList foundProps = new ArrayList();
- String baseUrl = getBaseUrl();
- String pageText = getPageText();
- String p1 = "<tr><th>Collection</th><th>Description</th></tr>";
- String end = "</table>";
- int i1 = pageText.indexOf(p1);
- if(i1<0) {
- //System.out.println("No Collections");
- return new ElementInfo[0];
- }
- i1 = i1 + p1.length() ;
- int indexOfEnd = pageText.indexOf(end, i1);
- String p2 = "href=\"";
- int i2 = i1;
- String p3 = "\"";
- while(i2<indexOfEnd) {
- i2 = pageText.indexOf(p2,i2) + p2.length();
- if(i2>indexOfEnd) break;
- int i3 = pageText.indexOf(p3,i2);
- String urlName = pageText.substring(i2,i3);
-
-
- ElementInfo info = getMsdnElement(baseUrl + "/" + urlName);
-
- if(!foundProps.contains(info)) foundProps.add(info);
- }
- return (ElementInfo[])foundProps.toArray(new ElementInfo[foundProps.size()]);
- }
-
- private static String getInitializer(String className) {
- if(className.trim().equalsIgnoreCase("Integer")) return "0";
- if(className.trim().equalsIgnoreCase("Boolean")) return "false";
- if(className.trim().equalsIgnoreCase("String")) return "\"\"";
- if(className.trim().equalsIgnoreCase("Number")) return "0";
-
- return "new " + className + "()";
-
-
- }
-
- public String toString() {
- if(name!=null) return name + " URL " + baseUrl;
- return baseUrl;
- }
-}
diff --git a/bundles/org.eclipse.wst.jsdt.support.ie/webCache/.cvsignore b/bundles/org.eclipse.wst.jsdt.support.ie/webCache/.cvsignore
deleted file mode 100644
index dee56957..00000000
--- a/bundles/org.eclipse.wst.jsdt.support.ie/webCache/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-*.* \ No newline at end of file
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 f8d6a915..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.103.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/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>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_EVALUTE_TEMPORARY_PROBLEMS">EDITOR_EVALUTE_TEMPORARY_PROBLEMS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"handleTemporaryProblems"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOLDING_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/ui/PreferenceConstants.html#EDITOR_FOLDING_ENABLED">EDITOR_FOLDING_ENABLED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_folding_enabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOLDING_HEADERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_FOLDING_HEADERS">EDITOR_FOLDING_HEADERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_folding_default_headers"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOLDING_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/ui/PreferenceConstants.html#EDITOR_FOLDING_IMPORTS">EDITOR_FOLDING_IMPORTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_folding_default_imports"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOLDING_INNERTYPES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_FOLDING_INNERTYPES">EDITOR_FOLDING_INNERTYPES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_folding_default_innertypes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOLDING_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#EDITOR_FOLDING_JAVADOC">EDITOR_FOLDING_JAVADOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_folding_default_javadoc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOLDING_METHODS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_FOLDING_METHODS">EDITOR_FOLDING_METHODS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_folding_default_methods"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOLDING_PROVIDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_FOLDING_PROVIDER">EDITOR_FOLDING_PROVIDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"editor_folding_provider"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FORMAT_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_FORMAT_JAVADOCS">EDITOR_FORMAT_JAVADOCS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"autoFormatJavaDocs"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_IMPORTS_ON_PASTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_IMPORTS_ON_PASTE">EDITOR_IMPORTS_ON_PASTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"importsOnPaste"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ITALIC_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_ITALIC_SUFFIX">EDITOR_ITALIC_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_ANNOTATION_BOLD">EDITOR_JAVA_ANNOTATION_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_annotation_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_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_JAVA_ANNOTATION_COLOR">EDITOR_JAVA_ANNOTATION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_ANNOTATION_ITALIC">EDITOR_JAVA_ANNOTATION_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_annotation_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_ANNOTATION_STRIKETHROUGH">EDITOR_JAVA_ANNOTATION_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_annotation_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_ANNOTATION_UNDERLINE">EDITOR_JAVA_ANNOTATION_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_annotation_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_BRACKET_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_BRACKET_BOLD">EDITOR_JAVA_BRACKET_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_bracket_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_BRACKET_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_JAVA_BRACKET_COLOR">EDITOR_JAVA_BRACKET_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_bracket"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_BRACKET_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_BRACKET_ITALIC">EDITOR_JAVA_BRACKET_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_bracket_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_BRACKET_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_BRACKET_STRIKETHROUGH">EDITOR_JAVA_BRACKET_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_bracket_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_BRACKET_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_BRACKET_UNDERLINE">EDITOR_JAVA_BRACKET_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_bracket_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_DEFAULT_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_DEFAULT_BOLD">EDITOR_JAVA_DEFAULT_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_default_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_DEFAULT_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_JAVA_DEFAULT_COLOR">EDITOR_JAVA_DEFAULT_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_default"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_DEFAULT_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_DEFAULT_ITALIC">EDITOR_JAVA_DEFAULT_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_default_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_DEFAULT_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_DEFAULT_STRIKETHROUGH">EDITOR_JAVA_DEFAULT_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_default_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_DEFAULT_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_DEFAULT_UNDERLINE">EDITOR_JAVA_DEFAULT_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_default_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_BOLD">EDITOR_JAVA_KEYWORD_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_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_JAVA_KEYWORD_COLOR">EDITOR_JAVA_KEYWORD_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_ITALIC">EDITOR_JAVA_KEYWORD_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_RETURN_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_RETURN_BOLD">EDITOR_JAVA_KEYWORD_RETURN_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_return_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_RETURN_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_JAVA_KEYWORD_RETURN_COLOR">EDITOR_JAVA_KEYWORD_RETURN_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_return"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_RETURN_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_RETURN_ITALIC">EDITOR_JAVA_KEYWORD_RETURN_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_return_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_RETURN_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_RETURN_STRIKETHROUGH">EDITOR_JAVA_KEYWORD_RETURN_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_return_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_RETURN_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_RETURN_UNDERLINE">EDITOR_JAVA_KEYWORD_RETURN_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_return_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_STRIKETHROUGH">EDITOR_JAVA_KEYWORD_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_KEYWORD_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_KEYWORD_UNDERLINE">EDITOR_JAVA_KEYWORD_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_METHOD_NAME_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_METHOD_NAME_BOLD">EDITOR_JAVA_METHOD_NAME_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_method_name_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_METHOD_NAME_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_JAVA_METHOD_NAME_COLOR">EDITOR_JAVA_METHOD_NAME_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_method_name"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_METHOD_NAME_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_METHOD_NAME_ITALIC">EDITOR_JAVA_METHOD_NAME_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_method_name_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_OPERATOR_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_OPERATOR_BOLD">EDITOR_JAVA_OPERATOR_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_operator_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_OPERATOR_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_JAVA_OPERATOR_COLOR">EDITOR_JAVA_OPERATOR_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_OPERATOR_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_OPERATOR_ITALIC">EDITOR_JAVA_OPERATOR_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_operator_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_OPERATOR_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_OPERATOR_STRIKETHROUGH">EDITOR_JAVA_OPERATOR_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_operator_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_OPERATOR_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVA_OPERATOR_UNDERLINE">EDITOR_JAVA_OPERATOR_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_operator_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_DEFAULT_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_DEFAULT_BOLD">EDITOR_JAVADOC_DEFAULT_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_default_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_DEFAULT_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_JAVADOC_DEFAULT_COLOR">EDITOR_JAVADOC_DEFAULT_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_default"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_DEFAULT_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_DEFAULT_ITALIC">EDITOR_JAVADOC_DEFAULT_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_default_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_DEFAULT_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_DEFAULT_STRIKETHROUGH">EDITOR_JAVADOC_DEFAULT_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_default_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_DEFAULT_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_DEFAULT_UNDERLINE">EDITOR_JAVADOC_DEFAULT_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_default_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_KEYWORD_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_KEYWORD_BOLD">EDITOR_JAVADOC_KEYWORD_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_keyword_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_KEYWORD_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_JAVADOC_KEYWORD_COLOR">EDITOR_JAVADOC_KEYWORD_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_keyword"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_KEYWORD_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_KEYWORD_ITALIC">EDITOR_JAVADOC_KEYWORD_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_keyword_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_KEYWORD_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_KEYWORD_STRIKETHROUGH">EDITOR_JAVADOC_KEYWORD_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_keyword_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_KEYWORD_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_KEYWORD_UNDERLINE">EDITOR_JAVADOC_KEYWORD_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_keyword_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_LINKS_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_LINKS_BOLD">EDITOR_JAVADOC_LINKS_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_link_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_LINKS_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_JAVADOC_LINKS_COLOR">EDITOR_JAVADOC_LINKS_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_link"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_LINKS_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_LINKS_ITALIC">EDITOR_JAVADOC_LINKS_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_link_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_LINKS_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_LINKS_STRIKETHROUGH">EDITOR_JAVADOC_LINKS_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_link_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_LINKS_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_LINKS_UNDERLINE">EDITOR_JAVADOC_LINKS_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_link_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_TAG_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_TAG_BOLD">EDITOR_JAVADOC_TAG_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_tag_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_TAG_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_JAVADOC_TAG_COLOR">EDITOR_JAVADOC_TAG_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_tag"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_TAG_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_TAG_ITALIC">EDITOR_JAVADOC_TAG_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_tag_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_TAG_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_TAG_STRIKETHROUGH">EDITOR_JAVADOC_TAG_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_tag_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVADOC_TAG_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_JAVADOC_TAG_UNDERLINE">EDITOR_JAVADOC_TAG_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_tag_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINE_NUMBER_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_LINE_NUMBER_RULER">EDITOR_LINE_NUMBER_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lineNumberRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINE_NUMBER_RULER_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_LINE_NUMBER_RULER_COLOR">EDITOR_LINE_NUMBER_RULER_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lineNumberColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINK_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_LINK_COLOR">EDITOR_LINK_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"linkColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINKED_POSITION_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_LINKED_POSITION_COLOR">EDITOR_LINKED_POSITION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"linkedPositionColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_BREAK_CONTINUE_TARGETS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_BREAK_CONTINUE_TARGETS">EDITOR_MARK_BREAK_CONTINUE_TARGETS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markBreakContinueTargets"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_CONSTANT_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_CONSTANT_OCCURRENCES">EDITOR_MARK_CONSTANT_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markConstantOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_EXCEPTION_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_EXCEPTION_OCCURRENCES">EDITOR_MARK_EXCEPTION_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markExceptionOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_FIELD_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_FIELD_OCCURRENCES">EDITOR_MARK_FIELD_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markFieldOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_IMPLEMENTORS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_IMPLEMENTORS">EDITOR_MARK_IMPLEMENTORS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markImplementors"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_LOCAL_VARIABLE_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_LOCAL_VARIABLE_OCCURRENCES">EDITOR_MARK_LOCAL_VARIABLE_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markLocalVariableOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_METHOD_EXIT_POINTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_METHOD_EXIT_POINTS">EDITOR_MARK_METHOD_EXIT_POINTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markMethodExitPoints"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_METHOD_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_METHOD_OCCURRENCES">EDITOR_MARK_METHOD_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markMethodOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_OCCURRENCES">EDITOR_MARK_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MARK_TYPE_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MARK_TYPE_OCCURRENCES">EDITOR_MARK_TYPE_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"markTypeOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MATCHING_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_MATCHING_BRACKETS">EDITOR_MATCHING_BRACKETS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"matchingBrackets"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MATCHING_BRACKETS_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_MATCHING_BRACKETS_COLOR">EDITOR_MATCHING_BRACKETS_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"matchingBracketsColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MULTI_LINE_COMMENT_BOLD">EDITOR_MULTI_LINE_COMMENT_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_multi_line_comment_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_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_MULTI_LINE_COMMENT_COLOR">EDITOR_MULTI_LINE_COMMENT_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_multi_line_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MULTI_LINE_COMMENT_ITALIC">EDITOR_MULTI_LINE_COMMENT_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_multi_line_comment_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MULTI_LINE_COMMENT_STRIKETHROUGH">EDITOR_MULTI_LINE_COMMENT_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_multi_line_comment_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_MULTI_LINE_COMMENT_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_MULTI_LINE_COMMENT_UNDERLINE">EDITOR_MULTI_LINE_COMMENT_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_multi_line_comment_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_NO_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_NO_HOVER_CONFIGURED_ID">EDITOR_NO_HOVER_CONFIGURED_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"noHoverConfiguredId"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_NONE_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_NONE_HOVER">EDITOR_NONE_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"noneHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_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_OVERVIEW_RULER">EDITOR_OVERVIEW_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"overviewRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PRINT_MARGIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_PRINT_MARGIN">EDITOR_PRINT_MARGIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"printMargin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PRINT_MARGIN_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_PRINT_MARGIN_COLOR">EDITOR_PRINT_MARGIN_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"printMarginColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PRINT_MARGIN_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/ui/PreferenceConstants.html#EDITOR_PRINT_MARGIN_COLUMN">EDITOR_PRINT_MARGIN_COLUMN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"printMarginColumn"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PROBLEM_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_PROBLEM_INDICATION">EDITOR_PROBLEM_INDICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"problemIndication"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PROBLEM_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_PROBLEM_INDICATION_COLOR">EDITOR_PROBLEM_INDICATION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"problemIndicationColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_QUICKASSIST_LIGHTBULB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_QUICKASSIST_LIGHTBULB">EDITOR_QUICKASSIST_LIGHTBULB</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.quickassist.lightbulb"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEARCH_RESULT_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_SEARCH_RESULT_INDICATION">EDITOR_SEARCH_RESULT_INDICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"searchResultIndication"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEARCH_RESULT_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_SEARCH_RESULT_INDICATION_COLOR">EDITOR_SEARCH_RESULT_INDICATION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"searchResultIndicationColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEARCH_RESULT_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_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER">EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"searchResultIndicationInOverviewRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_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_SEMANTIC_HIGHLIGHTING_BOLD_SUFFIX">EDITOR_SEMANTIC_HIGHLIGHTING_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_SEMANTIC_HIGHLIGHTING_COLOR_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_SEMANTIC_HIGHLIGHTING_COLOR_SUFFIX">EDITOR_SEMANTIC_HIGHLIGHTING_COLOR_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>".color"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_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/ui/PreferenceConstants.html#EDITOR_SEMANTIC_HIGHLIGHTING_ENABLED">EDITOR_SEMANTIC_HIGHLIGHTING_ENABLED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"semanticHighlighting.enabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_ENABLED_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_SEMANTIC_HIGHLIGHTING_ENABLED_SUFFIX">EDITOR_SEMANTIC_HIGHLIGHTING_ENABLED_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>".enabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_ITALIC_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_SEMANTIC_HIGHLIGHTING_ITALIC_SUFFIX">EDITOR_SEMANTIC_HIGHLIGHTING_ITALIC_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>".italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_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#EDITOR_SEMANTIC_HIGHLIGHTING_PREFIX">EDITOR_SEMANTIC_HIGHLIGHTING_PREFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"semanticHighlighting."</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_STRIKETHROUGH_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_SEMANTIC_HIGHLIGHTING_STRIKETHROUGH_SUFFIX">EDITOR_SEMANTIC_HIGHLIGHTING_STRIKETHROUGH_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>".strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_UNDERLINE_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_SEMANTIC_HIGHLIGHTING_UNDERLINE_SUFFIX">EDITOR_SEMANTIC_HIGHLIGHTING_UNDERLINE_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>".underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_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_SHIFT_HOVER">EDITOR_SHIFT_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"shiftHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SHOW_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_SHOW_HOVER">EDITOR_SHOW_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.editor.showHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SHOW_SEGMENTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SHOW_SEGMENTS">EDITOR_SHOW_SEGMENTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.editor.showSegments"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SHOW_TEXT_HOVER_AFFORDANCE">EDITOR_SHOW_TEXT_HOVER_AFFORDANCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SINGLE_LINE_COMMENT_BOLD">EDITOR_SINGLE_LINE_COMMENT_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_single_line_comment_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_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_SINGLE_LINE_COMMENT_COLOR">EDITOR_SINGLE_LINE_COMMENT_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_single_line_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SINGLE_LINE_COMMENT_ITALIC">EDITOR_SINGLE_LINE_COMMENT_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_single_line_comment_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SINGLE_LINE_COMMENT_STRIKETHROUGH">EDITOR_SINGLE_LINE_COMMENT_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_single_line_comment_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SINGLE_LINE_COMMENT_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SINGLE_LINE_COMMENT_UNDERLINE">EDITOR_SINGLE_LINE_COMMENT_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_single_line_comment_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SMART_BACKSPACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SMART_BACKSPACE">EDITOR_SMART_BACKSPACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"smart_backspace"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SMART_OPENING_BRACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SMART_OPENING_BRACE">EDITOR_SMART_OPENING_BRACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"smart_opening_brace"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SMART_PASTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SMART_PASTE">EDITOR_SMART_PASTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"smartPaste"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SMART_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/ui/PreferenceConstants.html#EDITOR_SMART_SEMICOLON">EDITOR_SMART_SEMICOLON</A></CODE></TD>
-<TD ALIGN="right"><CODE>"smart_semicolon"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SMART_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/ui/PreferenceConstants.html#EDITOR_SMART_TAB">EDITOR_SMART_TAB</A></CODE></TD>
-<TD ALIGN="right"><CODE>"smart_tab"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SOURCE_HOVER_BACKGROUND_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_SOURCE_HOVER_BACKGROUND_COLOR">EDITOR_SOURCE_HOVER_BACKGROUND_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sourceHoverBackgroundColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SOURCE_HOVER_BACKGROUND_COLOR_SYSTEM_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/PreferenceConstants.html#EDITOR_SOURCE_HOVER_BACKGROUND_COLOR_SYSTEM_DEFAULT">EDITOR_SOURCE_HOVER_BACKGROUND_COLOR_SYSTEM_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sourceHoverBackgroundColor.SystemDefault"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SPACES_FOR_TABS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SPACES_FOR_TABS">EDITOR_SPACES_FOR_TABS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spacesForTabs"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_STICKY_OCCURRENCES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_STICKY_OCCURRENCES">EDITOR_STICKY_OCCURRENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"stickyOccurrences"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_STRIKETHROUGH_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_STRIKETHROUGH_SUFFIX">EDITOR_STRIKETHROUGH_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_STRING_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_STRING_BOLD">EDITOR_STRING_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_string_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_STRING_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_STRING_COLOR">EDITOR_STRING_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_string"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_STRING_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_STRING_ITALIC">EDITOR_STRING_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_string_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_STRING_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_STRING_STRIKETHROUGH">EDITOR_STRING_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_string_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_STRING_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_STRING_UNDERLINE">EDITOR_STRING_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_string_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SUB_WORD_NAVIGATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_SUB_WORD_NAVIGATION">EDITOR_SUB_WORD_NAVIGATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"subWordNavigation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SYNC_OUTLINE_ON_CURSOR_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/ui/PreferenceConstants.html#EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE">EDITOR_SYNC_OUTLINE_ON_CURSOR_MOVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"JavaEditor.SyncOutlineOnCursorMove"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TAB_WIDTH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_TAB_WIDTH">EDITOR_TAB_WIDTH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.editor.tab.width"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_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_TASK_INDICATION">EDITOR_TASK_INDICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"taskIndication"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_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_TASK_INDICATION_COLOR">EDITOR_TASK_INDICATION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"taskIndicationColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_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_TASK_INDICATION_IN_OVERVIEW_RULER">EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"taskIndicationInOverviewRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_TAG_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_TASK_TAG_BOLD">EDITOR_TASK_TAG_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_comment_task_tag_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_TAG_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_TASK_TAG_COLOR">EDITOR_TASK_TAG_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_comment_task_tag"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_TAG_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_TASK_TAG_ITALIC">EDITOR_TASK_TAG_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_comment_task_tag_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_TAG_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_TASK_TAG_STRIKETHROUGH">EDITOR_TASK_TAG_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_comment_task_tag_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_TAG_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_TASK_TAG_UNDERLINE">EDITOR_TASK_TAG_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_comment_task_tag_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TEXT_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#EDITOR_TEXT_FONT">EDITOR_TEXT_FONT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.editors.textfont"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIER_MASKS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_TEXT_HOVER_MODIFIER_MASKS">EDITOR_TEXT_HOVER_MODIFIER_MASKS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hoverModifierMasks"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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_TEXT_HOVER_MODIFIERS">EDITOR_TEXT_HOVER_MODIFIERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hoverModifiers"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_UNDERLINE_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_UNDERLINE_SUFFIX">EDITOR_UNDERLINE_SUFFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_UNKNOWN_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_UNKNOWN_INDICATION">EDITOR_UNKNOWN_INDICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"othersIndication"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_UNKNOWN_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_UNKNOWN_INDICATION_COLOR">EDITOR_UNKNOWN_INDICATION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"othersIndicationColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_UNKNOWN_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_UNKNOWN_INDICATION_IN_OVERVIEW_RULER">EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"othersIndicationInOverviewRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_WARNING_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_WARNING_INDICATION">EDITOR_WARNING_INDICATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"warningIndication"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_WARNING_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_WARNING_INDICATION_COLOR">EDITOR_WARNING_INDICATION_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"warningIndicationColor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_WARNING_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_WARNING_INDICATION_IN_OVERVIEW_RULER">EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"warningIndicationInOverviewRuler"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_WRAP_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_WRAP_STRINGS">EDITOR_WRAP_STRINGS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"wrapStrings"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.FORMATTER_PROFILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#FORMATTER_PROFILE">FORMATTER_PROFILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"formatter_profile"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.ID_BESTMATCH_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#ID_BESTMATCH_HOVER">ID_BESTMATCH_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.BestMatchHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.ID_JAVADOC_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#ID_JAVADOC_HOVER">ID_JAVADOC_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavadocHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.ID_SOURCE_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#ID_SOURCE_HOVER">ID_SOURCE_HOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.JavaSourceHover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.JAVADOC_COMMAND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#JAVADOC_COMMAND">JAVADOC_COMMAND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"command"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.LINK_BROWSING_MEMBERS_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#LINK_BROWSING_MEMBERS_TO_EDITOR">LINK_BROWSING_MEMBERS_TO_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.browsing.memberstoeditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.LINK_BROWSING_PACKAGES_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#LINK_BROWSING_PACKAGES_TO_EDITOR">LINK_BROWSING_PACKAGES_TO_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.browsing.packagestoeditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.LINK_BROWSING_PROJECTS_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#LINK_BROWSING_PROJECTS_TO_EDITOR">LINK_BROWSING_PROJECTS_TO_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.browsing.projectstoeditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.LINK_BROWSING_TYPES_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#LINK_BROWSING_TYPES_TO_EDITOR">LINK_BROWSING_TYPES_TO_EDITOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.browsing.typestoeditor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.NEWPROJECT_JRELIBRARY_INDEX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#NEWPROJECT_JRELIBRARY_INDEX">NEWPROJECT_JRELIBRARY_INDEX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.wizards.jre.index"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.NEWPROJECT_JRELIBRARY_LIST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#NEWPROJECT_JRELIBRARY_LIST">NEWPROJECT_JRELIBRARY_LIST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.wizards.jre.list"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.OPEN_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/PreferenceConstants.html#OPEN_TYPE_HIERARCHY">OPEN_TYPE_HIERARCHY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.openTypeHierarchy"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.OPEN_TYPE_HIERARCHY_IN_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/PreferenceConstants.html#OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE">OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"perspective"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.OPEN_TYPE_HIERARCHY_IN_VIEW_PART"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#OPEN_TYPE_HIERARCHY_IN_VIEW_PART">OPEN_TYPE_HIERARCHY_IN_VIEW_PART</A></CODE></TD>
-<TD ALIGN="right"><CODE>"viewPart"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.ORGIMPORTS_IGNORELOWERCASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#ORGIMPORTS_IGNORELOWERCASE">ORGIMPORTS_IGNORELOWERCASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.ignorelowercasenames"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.ORGIMPORTS_IMPORTORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#ORGIMPORTS_IMPORTORDER">ORGIMPORTS_IMPORTORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.importorder"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.ORGIMPORTS_ONDEMANDTHRESHOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#ORGIMPORTS_ONDEMANDTHRESHOLD">ORGIMPORTS_ONDEMANDTHRESHOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.ondemandthreshold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.ORGIMPORTS_STATIC_ONDEMANDTHRESHOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#ORGIMPORTS_STATIC_ONDEMANDTHRESHOLD">ORGIMPORTS_STATIC_ONDEMANDTHRESHOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.staticondemandthreshold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ARGUMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ARGUMENT">PROPERTIES_FILE_COLORING_ARGUMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_argument"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ARGUMENT_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ARGUMENT_BOLD">PROPERTIES_FILE_COLORING_ARGUMENT_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_argument_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ARGUMENT_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ARGUMENT_ITALIC">PROPERTIES_FILE_COLORING_ARGUMENT_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_argument_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ARGUMENT_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ARGUMENT_STRIKETHROUGH">PROPERTIES_FILE_COLORING_ARGUMENT_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_argument_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ARGUMENT_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ARGUMENT_UNDERLINE">PROPERTIES_FILE_COLORING_ARGUMENT_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_argument_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_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/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT">PROPERTIES_FILE_COLORING_ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_assignment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ASSIGNMENT_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ASSIGNMENT_BOLD">PROPERTIES_FILE_COLORING_ASSIGNMENT_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_assignment_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ASSIGNMENT_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ASSIGNMENT_ITALIC">PROPERTIES_FILE_COLORING_ASSIGNMENT_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_assignment_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ASSIGNMENT_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ASSIGNMENT_STRIKETHROUGH">PROPERTIES_FILE_COLORING_ASSIGNMENT_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_assignment_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_ASSIGNMENT_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_ASSIGNMENT_UNDERLINE">PROPERTIES_FILE_COLORING_ASSIGNMENT_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_assignment_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_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/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_COMMENT">PROPERTIES_FILE_COLORING_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_COMMENT_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_COMMENT_BOLD">PROPERTIES_FILE_COLORING_COMMENT_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_comment_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_COMMENT_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_COMMENT_ITALIC">PROPERTIES_FILE_COLORING_COMMENT_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_comment_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_COMMENT_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_COMMENT_STRIKETHROUGH">PROPERTIES_FILE_COLORING_COMMENT_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_comment_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_COMMENT_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_COMMENT_UNDERLINE">PROPERTIES_FILE_COLORING_COMMENT_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_comment_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_KEY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_KEY">PROPERTIES_FILE_COLORING_KEY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_key"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_KEY_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_KEY_BOLD">PROPERTIES_FILE_COLORING_KEY_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_key_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_KEY_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_KEY_ITALIC">PROPERTIES_FILE_COLORING_KEY_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_key_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_KEY_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_KEY_STRIKETHROUGH">PROPERTIES_FILE_COLORING_KEY_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_key_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_KEY_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_KEY_UNDERLINE">PROPERTIES_FILE_COLORING_KEY_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_key_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_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/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_VALUE">PROPERTIES_FILE_COLORING_VALUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_value"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_VALUE_BOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_VALUE_BOLD">PROPERTIES_FILE_COLORING_VALUE_BOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_value_bold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_VALUE_ITALIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_VALUE_ITALIC">PROPERTIES_FILE_COLORING_VALUE_ITALIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_value_italic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_VALUE_STRIKETHROUGH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_VALUE_STRIKETHROUGH">PROPERTIES_FILE_COLORING_VALUE_STRIKETHROUGH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_value_strikethrough"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_COLORING_VALUE_UNDERLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#PROPERTIES_FILE_COLORING_VALUE_UNDERLINE">PROPERTIES_FILE_COLORING_VALUE_UNDERLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_value_underline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.PROPERTIES_FILE_EDITOR_TEXT_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#PROPERTIES_FILE_EDITOR_TEXT_FONT">PROPERTIES_FILE_EDITOR_TEXT_FONT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.PropertiesFileEditor.textfont"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD">REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Refactoring.ErrorPage.severityThreshold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_ERROR_SEVERITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_ERROR_SEVERITY">REFACTOR_ERROR_SEVERITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"3"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_FATAL_SEVERITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_FATAL_SEVERITY">REFACTOR_FATAL_SEVERITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"4"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_INFO_SEVERITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_INFO_SEVERITY">REFACTOR_INFO_SEVERITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_LIGHTWEIGHT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_LIGHTWEIGHT">REFACTOR_LIGHTWEIGHT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Refactor.lightweight"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_OK_SEVERITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_OK_SEVERITY">REFACTOR_OK_SEVERITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"0"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_SAVE_ALL_EDITORS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_SAVE_ALL_EDITORS">REFACTOR_SAVE_ALL_EDITORS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Refactoring.savealleditors"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_WARNING_SEVERITY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#REFACTOR_WARNING_SEVERITY">REFACTOR_WARNING_SEVERITY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"2"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SEARCH_USE_REDUCED_MENU"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SEARCH_USE_REDUCED_MENU">SEARCH_USE_REDUCED_MENU</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Search.usereducemenu"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SHOW_CU_CHILDREN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SHOW_CU_CHILDREN">SHOW_CU_CHILDREN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.packages.cuchildren"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_ENABLE_CONTENTASSIST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_ENABLE_CONTENTASSIST">SPELLING_ENABLE_CONTENTASSIST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_enable_contentassist"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_AMPERSAND_IN_PROPERTIES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_IGNORE_AMPERSAND_IN_PROPERTIES">SPELLING_IGNORE_AMPERSAND_IN_PROPERTIES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_ampersand_in_properties"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_DIGITS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_IGNORE_DIGITS">SPELLING_IGNORE_DIGITS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_digits"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_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/ui/PreferenceConstants.html#SPELLING_IGNORE_MIXED">SPELLING_IGNORE_MIXED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_mixed"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_NON_LETTERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_IGNORE_NON_LETTERS">SPELLING_IGNORE_NON_LETTERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_non_letters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_SENTENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_IGNORE_SENTENCE">SPELLING_IGNORE_SENTENCE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_sentence"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_SINGLE_LETTERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_IGNORE_SINGLE_LETTERS">SPELLING_IGNORE_SINGLE_LETTERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_single_letters"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_UPPER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_IGNORE_UPPER">SPELLING_IGNORE_UPPER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_upper"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_IGNORE_URLS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_IGNORE_URLS">SPELLING_IGNORE_URLS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_ignore_urls"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_LOCALE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_LOCALE">SPELLING_LOCALE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_locale"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_PROPOSAL_THRESHOLD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_PROPOSAL_THRESHOLD">SPELLING_PROPOSAL_THRESHOLD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_proposal_threshold"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_USER_DICTIONARY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SPELLING_USER_DICTIONARY">SPELLING_USER_DICTIONARY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_user_dictionary"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SPELLING_USER_DICTIONARY_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/ui/PreferenceConstants.html#SPELLING_USER_DICTIONARY_ENCODING">SPELLING_USER_DICTIONARY_ENCODING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spelling_user_dictionary_encoding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SRCBIN_BINNAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SRCBIN_BINNAME">SRCBIN_BINNAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.wizards.srcBinFoldersBinName"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SRCBIN_FOLDERS_IN_NEWPROJ"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SRCBIN_FOLDERS_IN_NEWPROJ">SRCBIN_FOLDERS_IN_NEWPROJ</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.wizards.srcBinFoldersInNewProjects"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.SRCBIN_SRCNAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#SRCBIN_SRCNAME">SRCBIN_SRCNAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.wizards.srcBinFoldersSrcName"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.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/ui/PreferenceConstants.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.ui.PreferenceConstants.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/ui/PreferenceConstants.html#SUPER_TYPE_NAME">SUPER_TYPE_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.superType.name"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.TEMPLATES_USE_CODEFORMATTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#TEMPLATES_USE_CODEFORMATTER">TEMPLATES_USE_CODEFORMATTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.template.format"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.TYPEFILTER_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/ui/PreferenceConstants.html#TYPEFILTER_DISABLED">TYPEFILTER_DISABLED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.typefilter.disabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.TYPEFILTER_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/ui/PreferenceConstants.html#TYPEFILTER_ENABLED">TYPEFILTER_ENABLED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.typefilter.enabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.UPDATE_JAVA_VIEWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#UPDATE_JAVA_VIEWS">UPDATE_JAVA_VIEWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"JavaScriptUI.update"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.UPDATE_ON_SAVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#UPDATE_ON_SAVE">UPDATE_ON_SAVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"JavaScriptUI.update.onSave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.PreferenceConstants.UPDATE_WHILE_EDITING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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#UPDATE_WHILE_EDITING">UPDATE_WHILE_EDITING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"JavaScriptUI.update.whileEditing"</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.refactoring.<A HREF="org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html" title="interface in org.eclipse.wst.jsdt.ui.refactoring">IRefactoringProcessorIds</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.COPY_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#COPY_PROCESSOR">COPY_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.CopyProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.DELETE_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#DELETE_PROCESSOR">DELETE_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.DeleteProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.MOVE_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#MOVE_PROCESSOR">MOVE_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.MoveProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.MOVE_STATIC_MEMBERS_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#MOVE_STATIC_MEMBERS_PROCESSOR">MOVE_STATIC_MEMBERS_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.MoveStaticMemberProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_COMPILATION_UNIT_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_COMPILATION_UNIT_PROCESSOR">RENAME_COMPILATION_UNIT_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renameCompilationUnitProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_FIELD_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_FIELD_PROCESSOR">RENAME_FIELD_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renameFieldProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_JAVA_PROJECT_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_JAVA_PROJECT_PROCESSOR">RENAME_JAVA_PROJECT_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renameJavaProjectProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_METHOD_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_METHOD_PROCESSOR">RENAME_METHOD_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renameMethodProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_PACKAGE_FRAGMENT_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_PACKAGE_FRAGMENT_PROCESSOR">RENAME_PACKAGE_FRAGMENT_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renamePackageProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_RESOURCE_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_RESOURCE_PROCESSOR">RENAME_RESOURCE_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renameResourceProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_SOURCE_FOLDER_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_SOURCE_FOLDER_PROCESSOR">RENAME_SOURCE_FOLDER_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renameSourceFolderProcessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.IRefactoringProcessorIds.RENAME_TYPE_PROCESSOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/refactoring/IRefactoringProcessorIds.html#RENAME_TYPE_PROCESSOR">RENAME_TYPE_PROCESSOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"org.eclipse.wst.jsdt.ui.renameTypeProcessor"</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.refactoring.<A HREF="org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.RenameSupport.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/ui/refactoring/RenameSupport.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.ui.refactoring.RenameSupport.UPDATE_GETTER_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/ui/refactoring/RenameSupport.html#UPDATE_GETTER_METHOD">UPDATE_GETTER_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>16</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.RenameSupport.UPDATE_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/ui/refactoring/RenameSupport.html#UPDATE_REFERENCES">UPDATE_REFERENCES</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.RenameSupport.UPDATE_SETTER_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/ui/refactoring/RenameSupport.html#UPDATE_SETTER_METHOD">UPDATE_SETTER_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>32</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.refactoring.RenameSupport.UPDATE_TEXTUAL_MATCHES"><!-- --></A><TD ALIGN="right"><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/refactoring/RenameSupport.html#UPDATE_TEXTUAL_MATCHES">UPDATE_TEXTUAL_MATCHES</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.ui.text.<A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_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/text/IJavaScriptColorConstants.html#JAVA_ANNOTATION">JAVA_ANNOTATION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_annotation"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_BRACKET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptColorConstants.html#JAVA_BRACKET">JAVA_BRACKET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_bracket"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_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/text/IJavaScriptColorConstants.html#JAVA_DEFAULT">JAVA_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_default"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_KEYWORD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptColorConstants.html#JAVA_KEYWORD">JAVA_KEYWORD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_KEYWORD_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/ui/text/IJavaScriptColorConstants.html#JAVA_KEYWORD_RETURN">JAVA_KEYWORD_RETURN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_keyword_return"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_METHOD_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/text/IJavaScriptColorConstants.html#JAVA_METHOD_NAME">JAVA_METHOD_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_method_name"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_MULTI_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/ui/text/IJavaScriptColorConstants.html#JAVA_MULTI_LINE_COMMENT">JAVA_MULTI_LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_multi_line_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_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/ui/text/IJavaScriptColorConstants.html#JAVA_OPERATOR">JAVA_OPERATOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_operator"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_SINGLE_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/ui/text/IJavaScriptColorConstants.html#JAVA_SINGLE_LINE_COMMENT">JAVA_SINGLE_LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_single_line_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_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/text/IJavaScriptColorConstants.html#JAVA_STRING">JAVA_STRING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_string"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVADOC_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/text/IJavaScriptColorConstants.html#JAVADOC_DEFAULT">JAVADOC_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_default"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVADOC_KEYWORD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptColorConstants.html#JAVADOC_KEYWORD">JAVADOC_KEYWORD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_keyword"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVADOC_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/ui/text/IJavaScriptColorConstants.html#JAVADOC_LINK">JAVADOC_LINK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_link"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVADOC_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/ui/text/IJavaScriptColorConstants.html#JAVADOC_TAG">JAVADOC_TAG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_doc_tag"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.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/text/IJavaScriptColorConstants.html#PREFIX">PREFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.PROPERTIES_FILE_COLORING_ARGUMENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_ARGUMENT">PROPERTIES_FILE_COLORING_ARGUMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_argument"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.PROPERTIES_FILE_COLORING_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/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT">PROPERTIES_FILE_COLORING_ASSIGNMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_assignment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.PROPERTIES_FILE_COLORING_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/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_COMMENT">PROPERTIES_FILE_COLORING_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.PROPERTIES_FILE_COLORING_KEY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_KEY">PROPERTIES_FILE_COLORING_KEY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_key"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.PROPERTIES_FILE_COLORING_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/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_VALUE">PROPERTIES_FILE_COLORING_VALUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pf_coloring_value"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.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/ui/text/IJavaScriptColorConstants.html#TASK_TAG">TASK_TAG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"java_comment_task_tag"</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.text.<A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptPartitions</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptPartitions.JAVA_CHARACTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptPartitions.html#JAVA_CHARACTER">JAVA_CHARACTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"__java_character"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptPartitions.JAVA_DOC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptPartitions.html#JAVA_DOC">JAVA_DOC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"__java_javadoc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptPartitions.JAVA_MULTI_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/ui/text/IJavaScriptPartitions.html#JAVA_MULTI_LINE_COMMENT">JAVA_MULTI_LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"__java_multiline_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptPartitions.JAVA_PARTITIONING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-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/text/IJavaScriptPartitions.html#JAVA_PARTITIONING">JAVA_PARTITIONING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"___java_partitioning"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptPartitions.JAVA_SINGLE_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/ui/text/IJavaScriptPartitions.html#JAVA_SINGLE_LINE_COMMENT">JAVA_SINGLE_LINE_COMMENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"__java_singleline_comment"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.IJavaScriptPartitions.JAVA_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/text/IJavaScriptPartitions.html#JAVA_STRING">JAVA_STRING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"__java_string"</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.text.java.<A HREF="org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java">IJavadocCompletionProcessor</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.text.java.IJavadocCompletionProcessor.RESTRICT_TO_MATCHING_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/ui/text/java/IJavadocCompletionProcessor.html#RESTRICT_TO_MATCHING_CASE">RESTRICT_TO_MATCHING_CASE</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.ui.wizards.<A HREF="org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.wizards.NewTypeWizardPage.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/ui/wizards/NewTypeWizardPage.html#ANNOTATION_TYPE">ANNOTATION_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.wizards.NewTypeWizardPage.CLASS_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/wizards/NewTypeWizardPage.html#CLASS_TYPE">CLASS_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.wizards.NewTypeWizardPage.ENUM_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/wizards/NewTypeWizardPage.html#ENUM_TYPE">ENUM_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.ui.wizards.NewTypeWizardPage.INTERFACE_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/wizards/NewTypeWizardPage.html#INTERFACE_TYPE">INTERFACE_TYPE</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.web.core.javascript.<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ABBR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ABBR">ATTR_NAME_ABBR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"abbr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ACCEPT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACCEPT">ATTR_NAME_ACCEPT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"accept"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ACCEPT_CHARSET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACCEPT_CHARSET">ATTR_NAME_ACCEPT_CHARSET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"accept-charset"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ACCESSKEY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACCESSKEY">ATTR_NAME_ACCESSKEY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"accesskey"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ACTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACTION">ATTR_NAME_ACTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"action"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ALIGN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ALIGN">ATTR_NAME_ALIGN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"align"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ALINK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ALINK">ATTR_NAME_ALINK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"alink"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ALT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ALT">ATTR_NAME_ALT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"alt"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ARCHIVE">ATTR_NAME_ARCHIVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"archive"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_AUTOPLAY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AUTOPLAY">ATTR_NAME_AUTOPLAY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"autoplay"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_AUTOSIZE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AUTOSIZE">ATTR_NAME_AUTOSIZE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"autosize"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_AUTOSTART"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AUTOSTART">ATTR_NAME_AUTOSTART</A></CODE></TD>
-<TD ALIGN="right"><CODE>"autostart"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_AXIS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AXIS">ATTR_NAME_AXIS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"axis"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BACKGROUND">ATTR_NAME_BACKGROUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"background"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_BEHAVIOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BEHAVIOR">ATTR_NAME_BEHAVIOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"behavior"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_BGCOLOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BGCOLOR">ATTR_NAME_BGCOLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bgcolor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_BORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BORDER">ATTR_NAME_BORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"border"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_BORDERCOLOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BORDERCOLOR">ATTR_NAME_BORDERCOLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bordercolor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_BOTTOMMARGIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BOTTOMMARGIN">ATTR_NAME_BOTTOMMARGIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bottommargin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CELLPADDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CELLPADDING">ATTR_NAME_CELLPADDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cellpadding"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CELLSPACING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CELLSPACING">ATTR_NAME_CELLSPACING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cellspacing"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CGI"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CGI">ATTR_NAME_CGI</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cgi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHAR">ATTR_NAME_CHAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"char"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CHAROFF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHAROFF">ATTR_NAME_CHAROFF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"charoff"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CHARSET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHARSET">ATTR_NAME_CHARSET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"charset"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CHECKED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHECKED">ATTR_NAME_CHECKED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"checked"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CITE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CITE">ATTR_NAME_CITE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cite"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CLASS">ATTR_NAME_CLASS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"class"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CLASSID"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CLASSID">ATTR_NAME_CLASSID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"classid"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CLEAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CLEAR">ATTR_NAME_CLEAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"clear"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CMD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CMD">ATTR_NAME_CMD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cmd"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CODE">ATTR_NAME_CODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"code"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CODEBASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CODEBASE">ATTR_NAME_CODEBASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"codebase"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CODETYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CODETYPE">ATTR_NAME_CODETYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"codetype"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COLOR">ATTR_NAME_COLOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"color"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_COLS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COLS">ATTR_NAME_COLS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cols"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_COLSPAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COLSPAN">ATTR_NAME_COLSPAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"colspan"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COMPACT">ATTR_NAME_COMPACT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"compact"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CONTENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CONTENT">ATTR_NAME_CONTENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"content"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_CONTROLLER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CONTROLLER">ATTR_NAME_CONTROLLER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"controller"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_COORDS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COORDS">ATTR_NAME_COORDS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"coords"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DATA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DATA">ATTR_NAME_DATA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"data"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DATAPAGESIZE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DATAPAGESIZE">ATTR_NAME_DATAPAGESIZE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"datapagesize"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DATETIME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DATETIME">ATTR_NAME_DATETIME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"datetime"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DECLARE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DECLARE">ATTR_NAME_DECLARE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"declare"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DEFER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DEFER">ATTR_NAME_DEFER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"defer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DIR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DIR">ATTR_NAME_DIR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"dir"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DIRECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DIRECTION">ATTR_NAME_DIRECTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"direction"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_DIRECTKEY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DIRECTKEY">ATTR_NAME_DIRECTKEY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"directkey"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DISABLED">ATTR_NAME_DISABLED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"disabled"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ENCTYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ENCTYPE">ATTR_NAME_ENCTYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"enctype"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ERRMSG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ERRMSG">ATTR_NAME_ERRMSG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"errmsg"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_EVENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_EVENT">ATTR_NAME_EVENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"event"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_FACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FACE">ATTR_NAME_FACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"face"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_FILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FILE">ATTR_NAME_FILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"file"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FOR">ATTR_NAME_FOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"for"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_FRAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FRAME">ATTR_NAME_FRAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"frame"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_FRAMEBORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FRAMEBORDER">ATTR_NAME_FRAMEBORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"frameborder"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_FRAMESPACING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FRAMESPACING">ATTR_NAME_FRAMESPACING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"framespacing"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_HEADERS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HEADERS">ATTR_NAME_HEADERS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"headers"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_HEIGHT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HEIGHT">ATTR_NAME_HEIGHT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"height"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_HIDDEN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HIDDEN">ATTR_NAME_HIDDEN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hidden"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_HREF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HREF">ATTR_NAME_HREF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"href"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_HREFLANG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HREFLANG">ATTR_NAME_HREFLANG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hreflang"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_HSPACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HSPACE">ATTR_NAME_HSPACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hspace"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_HTTP_EQUIV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HTTP_EQUIV">ATTR_NAME_HTTP_EQUIV</A></CODE></TD>
-<TD ALIGN="right"><CODE>"http-equiv"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ID">ATTR_NAME_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"id"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ISMAP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ISMAP">ATTR_NAME_ISMAP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ismap"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ISTYLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ISTYLE">ATTR_NAME_ISTYLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"istyle"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LABEL">ATTR_NAME_LABEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"label"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_LANG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LANG">ATTR_NAME_LANG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lang"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_LANGUAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LANGUAGE">ATTR_NAME_LANGUAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"language"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_LEFTMARGIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LEFTMARGIN">ATTR_NAME_LEFTMARGIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"leftmargin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LINK">ATTR_NAME_LINK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"link"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_LONGDESC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LONGDESC">ATTR_NAME_LONGDESC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"longdesc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_LOOP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LOOP">ATTR_NAME_LOOP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"loop"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MACRO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MACRO">ATTR_NAME_MACRO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"macro"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MAPFILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MAPFILE">ATTR_NAME_MAPFILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"mapfile"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MARGINHEIGHT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MARGINHEIGHT">ATTR_NAME_MARGINHEIGHT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"marginheight"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MARGINWIDTH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MARGINWIDTH">ATTR_NAME_MARGINWIDTH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"marginwidth"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MAXLENGTH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MAXLENGTH">ATTR_NAME_MAXLENGTH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"maxlength"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MAYSCRIPT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MAYSCRIPT">ATTR_NAME_MAYSCRIPT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"mayscript"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MEDIA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MEDIA">ATTR_NAME_MEDIA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"media"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_METHOD">ATTR_NAME_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"method"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_MULTIPLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MULTIPLE">ATTR_NAME_MULTIPLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"multiple"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NAME">ATTR_NAME_NAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"name"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_NOHREF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NOHREF">ATTR_NAME_NOHREF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"nohref"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_NORESIZE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NORESIZE">ATTR_NAME_NORESIZE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"noresize"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_NOSHADE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NOSHADE">ATTR_NAME_NOSHADE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"noshade"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_NOWRAP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NOWRAP">ATTR_NAME_NOWRAP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"nowrap"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_OBJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_OBJECT">ATTR_NAME_OBJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"object"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONBLUR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONBLUR">ATTR_NAME_ONBLUR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onblur"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONCHANGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONCHANGE">ATTR_NAME_ONCHANGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onchange"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONCLICK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONCLICK">ATTR_NAME_ONCLICK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onclick"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONDBLCLICK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONDBLCLICK">ATTR_NAME_ONDBLCLICK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ondblclick"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONFOCUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONFOCUS">ATTR_NAME_ONFOCUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onfocus"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONHELP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONHELP">ATTR_NAME_ONHELP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onhelp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONKEYDOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONKEYDOWN">ATTR_NAME_ONKEYDOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onkeydown"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONKEYPRESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONKEYPRESS">ATTR_NAME_ONKEYPRESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onkeypress"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONKEYUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONKEYUP">ATTR_NAME_ONKEYUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onkeyup"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONLOAD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONLOAD">ATTR_NAME_ONLOAD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onload"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONMOUSEDOWN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEDOWN">ATTR_NAME_ONMOUSEDOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onmousedown"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONMOUSEMOVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEMOVE">ATTR_NAME_ONMOUSEMOVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onmousemove"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONMOUSEOUT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEOUT">ATTR_NAME_ONMOUSEOUT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onmouseout"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONMOUSEOVER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEOVER">ATTR_NAME_ONMOUSEOVER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onmouseover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONMOUSEUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEUP">ATTR_NAME_ONMOUSEUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onmouseup"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONRESET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONRESET">ATTR_NAME_ONRESET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onreset"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONSELECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONSELECT">ATTR_NAME_ONSELECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onselect"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONSUBMIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONSUBMIT">ATTR_NAME_ONSUBMIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onsubmit"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ONUNLOAD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONUNLOAD">ATTR_NAME_ONUNLOAD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onunload"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_PALETTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PALETTE">ATTR_NAME_PALETTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"palette"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_PANEL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PANEL">ATTR_NAME_PANEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"panel"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_PLAYCOUNT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PLAYCOUNT">ATTR_NAME_PLAYCOUNT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"playcount"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_PROFILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PROFILE">ATTR_NAME_PROFILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"profile"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_PROMPT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PROMPT">ATTR_NAME_PROMPT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"prompt"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_READONLY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_READONLY">ATTR_NAME_READONLY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"readonly"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_REL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_REL">ATTR_NAME_REL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rel"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_REPEAT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_REPEAT">ATTR_NAME_REPEAT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"repeat"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_REV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_REV">ATTR_NAME_REV</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rev"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_RIGHTMARGIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_RIGHTMARGIN">ATTR_NAME_RIGHTMARGIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rightmargin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ROWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ROWS">ATTR_NAME_ROWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rows"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_ROWSPAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ROWSPAN">ATTR_NAME_ROWSPAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rowspan"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_RULES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_RULES">ATTR_NAME_RULES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rules"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SCALE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCALE">ATTR_NAME_SCALE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scale"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SCHEME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCHEME">ATTR_NAME_SCHEME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scheme"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SCOPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCOPE">ATTR_NAME_SCOPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scope"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SCROLLAMOUNT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCROLLAMOUNT">ATTR_NAME_SCROLLAMOUNT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scrollamount"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SCROLLDELAY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCROLLDELAY">ATTR_NAME_SCROLLDELAY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scrolldelay"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SCROLLING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCROLLING">ATTR_NAME_SCROLLING</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scrolling"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SELECTED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SELECTED">ATTR_NAME_SELECTED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"selected"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SHAPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SHAPE">ATTR_NAME_SHAPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"shape"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SHOWCONTROLS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SHOWCONTROLS">ATTR_NAME_SHOWCONTROLS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"showcontrols"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SIZE">ATTR_NAME_SIZE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"size"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SIZEFMT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SIZEFMT">ATTR_NAME_SIZEFMT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sizefmt"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SPAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SPAN">ATTR_NAME_SPAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"span"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SRC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SRC">ATTR_NAME_SRC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"src"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_STANDBY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_STANDBY">ATTR_NAME_STANDBY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"standby"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_START"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_START">ATTR_NAME_START</A></CODE></TD>
-<TD ALIGN="right"><CODE>"start"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_STYLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_STYLE">ATTR_NAME_STYLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"style"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_SUMMARY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SUMMARY">ATTR_NAME_SUMMARY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"summary"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TABINDEX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TABINDEX">ATTR_NAME_TABINDEX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"tabindex"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TARGET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TARGET">ATTR_NAME_TARGET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"target"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TEXT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TEXT">ATTR_NAME_TEXT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"text"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TEXTFOCUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TEXTFOCUS">ATTR_NAME_TEXTFOCUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"textfocus"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TIMEFMT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TIMEFMT">ATTR_NAME_TIMEFMT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"timefmt"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TITLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TITLE">ATTR_NAME_TITLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"title"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TOPMARGIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TOPMARGIN">ATTR_NAME_TOPMARGIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"topmargin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_TRUESPEED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TRUESPEED">ATTR_NAME_TRUESPEED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"truespeed"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TYPE">ATTR_NAME_TYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"type"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_USEMAP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_USEMAP">ATTR_NAME_USEMAP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"usemap"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_VALIGN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VALIGN">ATTR_NAME_VALIGN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"valign"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VALUE">ATTR_NAME_VALUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"value"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_VALUETYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VALUETYPE">ATTR_NAME_VALUETYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"valuetype"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_VAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VAR">ATTR_NAME_VAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"var"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VERSION">ATTR_NAME_VERSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"version"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_VIRTUAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VIRTUAL">ATTR_NAME_VIRTUAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"virtual"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_VLINK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VLINK">ATTR_NAME_VLINK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"vlink"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_VOLUME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VOLUME">ATTR_NAME_VOLUME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"volume"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_VSPACE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VSPACE">ATTR_NAME_VSPACE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"vspace"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_NAME_WIDTH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_WIDTH">ATTR_NAME_WIDTH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"width"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_0"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_0">ATTR_VALUE_0</A></CODE></TD>
-<TD ALIGN="right"><CODE>"0"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_1">ATTR_VALUE_1</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_ABOVE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ABOVE">ATTR_VALUE_ABOVE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"above"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ALL">ATTR_VALUE_ALL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"all"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_ALTERNATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ALTERNATE">ATTR_VALUE_ALTERNATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"alternate"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_AUTO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_AUTO">ATTR_VALUE_AUTO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"auto"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_BASELINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BASELINE">ATTR_VALUE_BASELINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"baseline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_BELOW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BELOW">ATTR_VALUE_BELOW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"below"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_BORDER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BORDER">ATTR_VALUE_BORDER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"border"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_BOTTOM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BOTTOM">ATTR_VALUE_BOTTOM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bottom"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_BOX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BOX">ATTR_VALUE_BOX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"box"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_BUTTON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BUTTON">ATTR_VALUE_BUTTON</A></CODE></TD>
-<TD ALIGN="right"><CODE>"button"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_CENTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CENTER">ATTR_VALUE_CENTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"center"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CHAR">ATTR_VALUE_CHAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"char"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_CHECKBOX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CHECKBOX">ATTR_VALUE_CHECKBOX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"checkbox"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_CIRCLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CIRCLE">ATTR_VALUE_CIRCLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"circle"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_COL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_COL">ATTR_VALUE_COL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"col"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_COLGROUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_COLGROUP">ATTR_VALUE_COLGROUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"colgroup"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_COLS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_COLS">ATTR_VALUE_COLS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cols"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_DATA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DATA">ATTR_VALUE_DATA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"data"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DEFAULT">ATTR_VALUE_DEFAULT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"default"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_DISC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DISC">ATTR_VALUE_DISC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"disc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DOWN">ATTR_VALUE_DOWN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"down"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_FALSE">ATTR_VALUE_FALSE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"false"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_FILE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_FILE">ATTR_VALUE_FILE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"file"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_GET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_GET">ATTR_VALUE_GET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"get"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_GROUPS">ATTR_VALUE_GROUPS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"groups"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_HIDDEN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_HIDDEN">ATTR_VALUE_HIDDEN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hidden"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_HSIDES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_HSIDES">ATTR_VALUE_HSIDES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hsides"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_IMAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_IMAGE">ATTR_VALUE_IMAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"image"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_INFINITE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_INFINITE">ATTR_VALUE_INFINITE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"infinite"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_JUSTIFY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_JUSTIFY">ATTR_VALUE_JUSTIFY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"justify"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_LEFT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LEFT">ATTR_VALUE_LEFT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"left"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_LHS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LHS">ATTR_VALUE_LHS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lhs"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_LOWER_ALPHA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LOWER_ALPHA">ATTR_VALUE_LOWER_ALPHA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"a"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_LOWER_ROMAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LOWER_ROMAN">ATTR_VALUE_LOWER_ROMAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"i"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_LTR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LTR">ATTR_VALUE_LTR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ltr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_MIDDLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_MIDDLE">ATTR_VALUE_MIDDLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"middle"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_NO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_NO">ATTR_VALUE_NO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"no"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_NONE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_NONE">ATTR_VALUE_NONE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"none"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_NUMBER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_NUMBER">ATTR_VALUE_NUMBER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"1"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_OBJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_OBJECT">ATTR_VALUE_OBJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"object"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_PASSWORD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_PASSWORD">ATTR_VALUE_PASSWORD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"password"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_POLY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_POLY">ATTR_VALUE_POLY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"poly"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_POST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_POST">ATTR_VALUE_POST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"post"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_RADIO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RADIO">ATTR_VALUE_RADIO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"radio"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_RECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RECT">ATTR_VALUE_RECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rect"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_REF">ATTR_VALUE_REF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ref"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_RESET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RESET">ATTR_VALUE_RESET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"reset"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_RHS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RHS">ATTR_VALUE_RHS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rhs"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_RIGHT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RIGHT">ATTR_VALUE_RIGHT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"right"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_ROW"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ROW">ATTR_VALUE_ROW</A></CODE></TD>
-<TD ALIGN="right"><CODE>"row"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_ROWGROUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ROWGROUP">ATTR_VALUE_ROWGROUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rowgroup"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_ROWS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ROWS">ATTR_VALUE_ROWS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rows"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_RTL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RTL">ATTR_VALUE_RTL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rtl"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_SCROLL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SCROLL">ATTR_VALUE_SCROLL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scroll"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_SLIDE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SLIDE">ATTR_VALUE_SLIDE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"slide"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_SQUARE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SQUARE">ATTR_VALUE_SQUARE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"square"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_SUBMIT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SUBMIT">ATTR_VALUE_SUBMIT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"submit"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_TEXT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_TEXT">ATTR_VALUE_TEXT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"text"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_TOP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_TOP">ATTR_VALUE_TOP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"top"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_TRUE">ATTR_VALUE_TRUE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"true"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_UP">ATTR_VALUE_UP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"up"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_UPPER_ALPHA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_UPPER_ALPHA">ATTR_VALUE_UPPER_ALPHA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"A"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_UPPER_ROMAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_UPPER_ROMAN">ATTR_VALUE_UPPER_ROMAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"I"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_VERSION_FRAMESET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VERSION_FRAMESET">ATTR_VALUE_VERSION_FRAMESET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"-//W3C//DTD HTML 4.01 Frameset//EN"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_VERSION_TRANSITIONAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VERSION_TRANSITIONAL">ATTR_VALUE_VERSION_TRANSITIONAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"-//W3C//DTD HTML 4.01 Transitional//EN"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_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/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VOID">ATTR_VALUE_VOID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"void"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_VSIDES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VSIDES">ATTR_VALUE_VSIDES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"vsides"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_WWW_FORM_URLENCODED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_WWW_FORM_URLENCODED">ATTR_VALUE_WWW_FORM_URLENCODED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"application/x-www-form-urlencoded"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ATTR_VALUE_YES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_YES">ATTR_VALUE_YES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"yes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.HTML40_TAG_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/web/core/javascript/HTML40Namespace.html#HTML40_TAG_PREFIX">HTML40_TAG_PREFIX</A></CODE></TD>
-<TD ALIGN="right"><CODE>""</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.HTML40_URI"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#HTML40_URI">HTML40_URI</A></CODE></TD>
-<TD ALIGN="right"><CODE>"http://www.w3.org/TR/REC-html40/frameset.dtd"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_ACCEPT_CHARSET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_ACCEPT_CHARSET">WML_ATTR_NAME_ACCEPT_CHARSET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"accept-charset"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_CACHE_CONTROL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_CACHE_CONTROL">WML_ATTR_NAME_CACHE_CONTROL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cache-control"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_COLUMNS">WML_ATTR_NAME_COLUMNS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"columns"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_DOMAIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_DOMAIN">WML_ATTR_NAME_DOMAIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"domain"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_ENCTYPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_ENCTYPE">WML_ATTR_NAME_ENCTYPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"enctype"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_METHOD">WML_ATTR_NAME_METHOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"method"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_NEWCONTEXT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_NEWCONTEXT">WML_ATTR_NAME_NEWCONTEXT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"newcontext"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_ONENTERBACKWARD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_ONENTERBACKWARD">WML_ATTR_NAME_ONENTERBACKWARD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onenterbackward"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_ONENTERFORWARD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_ONENTERFORWARD">WML_ATTR_NAME_ONENTERFORWARD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onenterforward"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_ONPICK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_ONPICK">WML_ATTR_NAME_ONPICK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onpick"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_ONTIMER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_ONTIMER">WML_ATTR_NAME_ONTIMER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ontimer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_OPTIONAL">WML_ATTR_NAME_OPTIONAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"optional"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_ORDERED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_ORDERED">WML_ATTR_NAME_ORDERED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ordered"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_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/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_PATH">WML_ATTR_NAME_PATH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"path"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_SENDREFERER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_SENDREFERER">WML_ATTR_NAME_SENDREFERER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sendreferer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.WML_ATTR_NAME_TITLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#WML_ATTR_NAME_TITLE">WML_ATTR_NAME_TITLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"title"</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.web.core.javascript.<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.A"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#A">A</A></CODE></TD>
-<TD ALIGN="right"><CODE>"A"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.ABBR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#ABBR">ABBR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ABBR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.ACRONYM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#ACRONYM">ACRONYM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ACRONYM"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.ADDRESS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#ADDRESS">ADDRESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ADDRESS"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.APPLET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#APPLET">APPLET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"APPLET"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.AREA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#AREA">AREA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"AREA"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.B"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#B">B</A></CODE></TD>
-<TD ALIGN="right"><CODE>"B"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BASE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BASE">BASE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BASE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BASEFONT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BASEFONT">BASEFONT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BASEFONT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BDO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BDO">BDO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BDO"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BGSOUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BGSOUND">BGSOUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BGSOUND"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BIG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BIG">BIG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BIG"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BLINK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BLINK">BLINK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BLINK"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BLOCKQUOTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BLOCKQUOTE">BLOCKQUOTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BLOCKQUOTE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.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/web/core/javascript/HTML40Namespace.ElementName.html#BODY">BODY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BODY"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BR">BR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.BUTTON"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#BUTTON">BUTTON</A></CODE></TD>
-<TD ALIGN="right"><CODE>"BUTTON"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.CAPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#CAPTION">CAPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"CAPTION"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.CENTER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#CENTER">CENTER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"CENTER"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.CITE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#CITE">CITE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"CITE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.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/web/core/javascript/HTML40Namespace.ElementName.html#CODE">CODE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"CODE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.COL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#COL">COL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"COL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.COLGROUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#COLGROUP">COLGROUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"COLGROUP"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.DD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#DD">DD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"DD"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.DEL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#DEL">DEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"DEL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.DFN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#DFN">DFN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"DFN"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.DIR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#DIR">DIR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"DIR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.DIV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#DIV">DIV</A></CODE></TD>
-<TD ALIGN="right"><CODE>"DIV"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.DL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#DL">DL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"DL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.DT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#DT">DT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"DT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.EM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#EM">EM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"EM"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.EMBED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#EMBED">EMBED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"EMBED"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.FIELDSET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#FIELDSET">FIELDSET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"FIELDSET"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.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/web/core/javascript/HTML40Namespace.ElementName.html#FONT">FONT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"FONT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.FORM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#FORM">FORM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"FORM"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.FRAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#FRAME">FRAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"FRAME"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.FRAMESET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#FRAMESET">FRAMESET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"FRAMESET"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.H1"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#H1">H1</A></CODE></TD>
-<TD ALIGN="right"><CODE>"H1"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.H2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#H2">H2</A></CODE></TD>
-<TD ALIGN="right"><CODE>"H2"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.H3"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#H3">H3</A></CODE></TD>
-<TD ALIGN="right"><CODE>"H3"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.H4"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#H4">H4</A></CODE></TD>
-<TD ALIGN="right"><CODE>"H4"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.H5"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#H5">H5</A></CODE></TD>
-<TD ALIGN="right"><CODE>"H5"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.H6"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#H6">H6</A></CODE></TD>
-<TD ALIGN="right"><CODE>"H6"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.HEAD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#HEAD">HEAD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"HEAD"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.HR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#HR">HR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"HR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.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/web/core/javascript/HTML40Namespace.ElementName.html#HTML">HTML</A></CODE></TD>
-<TD ALIGN="right"><CODE>"HTML"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.I"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#I">I</A></CODE></TD>
-<TD ALIGN="right"><CODE>"I"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.IFRAME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#IFRAME">IFRAME</A></CODE></TD>
-<TD ALIGN="right"><CODE>"IFRAME"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.IMG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#IMG">IMG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"IMG"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.INPUT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#INPUT">INPUT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"INPUT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.INS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#INS">INS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"INS"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.ISINDEX"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#ISINDEX">ISINDEX</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ISINDEX"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.KBD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#KBD">KBD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"KBD"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.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/web/core/javascript/HTML40Namespace.ElementName.html#LABEL">LABEL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"LABEL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.LEGEND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#LEGEND">LEGEND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"LEGEND"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.LI"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#LI">LI</A></CODE></TD>
-<TD ALIGN="right"><CODE>"LI"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.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/web/core/javascript/HTML40Namespace.ElementName.html#LINK">LINK</A></CODE></TD>
-<TD ALIGN="right"><CODE>"LINK"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.MAP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#MAP">MAP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"MAP"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.MARQUEE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#MARQUEE">MARQUEE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"MARQUEE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.MENU"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#MENU">MENU</A></CODE></TD>
-<TD ALIGN="right"><CODE>"MENU"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.META"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#META">META</A></CODE></TD>
-<TD ALIGN="right"><CODE>"META"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.NOBR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOBR">NOBR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"NOBR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.NOEMBED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOEMBED">NOEMBED</A></CODE></TD>
-<TD ALIGN="right"><CODE>"NOEMBED"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.NOFRAMES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOFRAMES">NOFRAMES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"NOFRAMES"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.NOSCRIPT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOSCRIPT">NOSCRIPT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"NOSCRIPT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.OBJECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OBJECT">OBJECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"OBJECT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.OL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OL">OL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"OL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.OPTGROUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OPTGROUP">OPTGROUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"OPTGROUP"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.OPTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OPTION">OPTION</A></CODE></TD>
-<TD ALIGN="right"><CODE>"OPTION"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.P"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#P">P</A></CODE></TD>
-<TD ALIGN="right"><CODE>"P"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.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/web/core/javascript/HTML40Namespace.ElementName.html#PARAM">PARAM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"PARAM"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.PRE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#PRE">PRE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"PRE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.Q"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#Q">Q</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Q"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.S"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#S">S</A></CODE></TD>
-<TD ALIGN="right"><CODE>"S"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SAMP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SAMP">SAMP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SAMP"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SCRIPT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SCRIPT">SCRIPT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SCRIPT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SELECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SELECT">SELECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SELECT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SMALL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SMALL">SMALL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SMALL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SPAN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SPAN">SPAN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SPAN"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_CONFIG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SSI_CONFIG">SSI_CONFIG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:CONFIG"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_ECHO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SSI_ECHO">SSI_ECHO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:ECHO"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_EXEC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SSI_EXEC">SSI_EXEC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:EXEC"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_FLASTMOD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SSI_FLASTMOD">SSI_FLASTMOD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:FLASTMOD"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_FSIZE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SSI_FSIZE">SSI_FSIZE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:FSIZE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_INCLUDE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SSI_INCLUDE">SSI_INCLUDE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:INCLUDE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_PRINTENV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SSI_PRINTENV">SSI_PRINTENV</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:PRINTENV"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SSI_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/web/core/javascript/HTML40Namespace.ElementName.html#SSI_SET">SSI_SET</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SSI:SET"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.STRIKE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#STRIKE">STRIKE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"STRIKE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.STRONG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#STRONG">STRONG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"STRONG"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.STYLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#STYLE">STYLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"STYLE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SUB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SUB">SUB</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SUB"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.SUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#SUP">SUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"SUP"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TABLE">TABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TABLE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TBODY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TBODY">TBODY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TBODY"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TD">TD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TD"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TEXTAREA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TEXTAREA">TEXTAREA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TEXTAREA"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TFOOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TFOOT">TFOOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TFOOT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TH">TH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TH"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.THEAD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#THEAD">THEAD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"THEAD"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TITLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TITLE">TITLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TITLE"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TR">TR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.TT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#TT">TT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"TT"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#U">U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"U"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.UL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#UL">UL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"UL"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.VAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#VAR">VAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"VAR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WBR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WBR">WBR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"WBR"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_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/web/core/javascript/HTML40Namespace.ElementName.html#WML_ACCESS">WML_ACCESS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"access"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_ANCHOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_ANCHOR">WML_ANCHOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"anchor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_CARD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_CARD">WML_CARD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"card"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_DO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_DO">WML_DO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"do"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_GO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_GO">WML_GO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"go"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_NOOP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_NOOP">WML_NOOP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"noop"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_ONEVENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_ONEVENT">WML_ONEVENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"onevent"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_POSTFIELD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_POSTFIELD">WML_POSTFIELD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"postfield"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_PREV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_PREV">WML_PREV</A></CODE></TD>
-<TD ALIGN="right"><CODE>"prev"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_REFRESH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_REFRESH">WML_REFRESH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"refresh"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_SETVAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_SETVAR">WML_SETVAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"setvar"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_TEMPLATE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_TEMPLATE">WML_TEMPLATE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"template"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_TIMER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_TIMER">WML_TIMER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"timer"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.ElementName.WML_WML"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#WML_WML">WML_WML</A></CODE></TD>
-<TD ALIGN="right"><CODE>"wml"</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.web.core.javascript.<A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AACUTE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AACUTE_L">AACUTE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"aacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AACUTE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AACUTE_U">AACUTE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Aacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ACIRC_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ACIRC_L">ACIRC_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"acirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ACIRC_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ACIRC_U">ACIRC_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Acirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ACUTE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ACUTE">ACUTE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"acute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AELIG_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AELIG_L">AELIG_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"aelig"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AELIG_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AELIG_U">AELIG_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"AElig"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AGRAVE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AGRAVE_L">AGRAVE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"agrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AGRAVE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AGRAVE_U">AGRAVE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Agrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ALEFSYM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ALEFSYM">ALEFSYM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"alefsym"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ALPHA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ALPHA_L">ALPHA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"alpha"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ALPHA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ALPHA_U">ALPHA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Alpha"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AMP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AMP">AMP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"amp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AND">AND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"and"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ANG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ANG">ANG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ang"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ARING_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ARING_L">ARING_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"aring"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ARING_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ARING_U">ARING_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Aring"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ASYMP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ASYMP">ASYMP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"asymp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ATILDE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ATILDE_L">ATILDE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"atilde"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ATILDE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ATILDE_U">ATILDE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Atilde"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AUML_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AUML_L">AUML_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"auml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.AUML_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AUML_U">AUML_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Auml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.BDQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#BDQUO">BDQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bdquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.BETA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#BETA_L">BETA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"beta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.BETA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#BETA_U">BETA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Beta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.BRVBAR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#BRVBAR">BRVBAR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"brvbar"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.BULL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#BULL">BULL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"bull"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CAP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CAP">CAP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cap"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CCEDIL_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CCEDIL_L">CCEDIL_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ccedil"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CCEDIL_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CCEDIL_U">CCEDIL_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ccedil"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CEDIL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CEDIL">CEDIL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cedil"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CENT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CENT">CENT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cent"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CHI_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CHI_L">CHI_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"chi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CHI_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CHI_U">CHI_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Chi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CIRC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CIRC">CIRC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"circ"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CLUBS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CLUBS">CLUBS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"clubs"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CONG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CONG">CONG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cong"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.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/web/core/javascript/HTML40Namespace.EntityName.html#COPY">COPY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"copy"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CRARR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CRARR">CRARR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"crarr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CUP">CUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"cup"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.CURREN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CURREN">CURREN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"curren"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DAGGER_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DAGGER_L">DAGGER_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"dagger"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DAGGER_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DAGGER_U">DAGGER_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Dagger"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DARR_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DARR_L">DARR_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"darr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DARR_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DARR_U">DARR_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"dArr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DEG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DEG">DEG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"deg"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DELTA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DELTA_L">DELTA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"delta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DELTA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DELTA_U">DELTA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Delta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DIAMS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DIAMS">DIAMS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"diams"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.DIVIDE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#DIVIDE">DIVIDE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"divide"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EACUTE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EACUTE_L">EACUTE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"eacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EACUTE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EACUTE_U">EACUTE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Eacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ECIRC_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ECIRC_L">ECIRC_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ecirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ECIRC_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ECIRC_U">ECIRC_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ecirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EGRAVE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EGRAVE_L">EGRAVE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"egrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EGRAVE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EGRAVE_U">EGRAVE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Egrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EMPTY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EMPTY">EMPTY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"empty"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EMSP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EMSP">EMSP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"emsp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ENSP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ENSP">ENSP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ensp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EPSILON_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EPSILON_L">EPSILON_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"epsilon"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EPSILON_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EPSILON_U">EPSILON_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Epsilon"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EQUIV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EQUIV">EQUIV</A></CODE></TD>
-<TD ALIGN="right"><CODE>"equiv"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ETA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ETA_L">ETA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"eta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ETA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ETA_U">ETA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Eta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ETH_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ETH_L">ETH_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"eth"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ETH_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ETH_U">ETH_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ETH"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EUML_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EUML_L">EUML_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"euml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EUML_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EUML_U">EUML_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Euml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EURO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EURO">EURO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"euro"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.EXIST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#EXIST">EXIST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"exist"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.FNOF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#FNOF">FNOF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"fnof"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.FORALL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#FORALL">FORALL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"forall"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.FRAC12"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#FRAC12">FRAC12</A></CODE></TD>
-<TD ALIGN="right"><CODE>"frac12"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.FRAC14"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#FRAC14">FRAC14</A></CODE></TD>
-<TD ALIGN="right"><CODE>"frac14"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.FRAC34"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#FRAC34">FRAC34</A></CODE></TD>
-<TD ALIGN="right"><CODE>"frac34"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.FRASL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#FRASL">FRASL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"frasl"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.GAMMA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#GAMMA_L">GAMMA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"gamma"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.GAMMA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#GAMMA_U">GAMMA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Gamma"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.GE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#GE">GE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ge"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.GT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#GT">GT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"gt"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.HARR_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#HARR_L">HARR_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"harr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.HARR_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#HARR_U">HARR_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hArr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.HEARTS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#HEARTS">HEARTS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hearts"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.HELLIP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#HELLIP">HELLIP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hellip"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IACUTE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IACUTE_L">IACUTE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"iacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IACUTE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IACUTE_U">IACUTE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Iacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ICIRC_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ICIRC_L">ICIRC_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"icirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ICIRC_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ICIRC_U">ICIRC_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Icirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IEXCL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IEXCL">IEXCL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"iexcl"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IGRAVE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IGRAVE_L">IGRAVE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"igrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IGRAVE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IGRAVE_U">IGRAVE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Igrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IMAGE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IMAGE">IMAGE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"image"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.INFIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#INFIN">INFIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"infin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.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/web/core/javascript/HTML40Namespace.EntityName.html#INT">INT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"int"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IOTA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IOTA_L">IOTA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"iota"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IOTA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IOTA_U">IOTA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Iota"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IQUEST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IQUEST">IQUEST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"iquest"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ISIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ISIN">ISIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"isin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IUML_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IUML_L">IUML_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"iuml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.IUML_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#IUML_U">IUML_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Iuml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.KAPPA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#KAPPA_L">KAPPA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"kappa"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.KAPPA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#KAPPA_U">KAPPA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Kappa"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LAMBDA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LAMBDA_L">LAMBDA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lambda"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LAMBDA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LAMBDA_U">LAMBDA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Lambda"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LANG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LANG">LANG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lang"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LAQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LAQUO">LAQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"laquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LARR_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LARR_L">LARR_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"larr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LARR_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LARR_U">LARR_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lArr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LCEIL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LCEIL">LCEIL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lceil"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LDQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LDQUO">LDQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ldquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LE">LE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"le"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LFLOOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LFLOOR">LFLOOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lfloor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LOWAST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LOWAST">LOWAST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lowast"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LOZ"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LOZ">LOZ</A></CODE></TD>
-<TD ALIGN="right"><CODE>"loz"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LRM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LRM">LRM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lrm"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LSAQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LSAQUO">LSAQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lsaquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LSQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LSQUO">LSQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lsquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.LT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LT">LT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"lt"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.MACR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MACR">MACR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"macr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.MDASH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MDASH">MDASH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"mdash"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.MICRO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MICRO">MICRO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"micro"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.MIDDOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MIDDOT">MIDDOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"middot"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.MINUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MINUS">MINUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"minus"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.MU_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MU_L">MU_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"mu"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.MU_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MU_U">MU_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Mu"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NABLA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NABLA">NABLA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"nabla"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NBSP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NBSP">NBSP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"nbsp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NDASH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NDASH">NDASH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ndash"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NE">NE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ne"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NI"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NI">NI</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ni"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NOT">NOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"not"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NOTIN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NOTIN">NOTIN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"notin"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NSUB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NSUB">NSUB</A></CODE></TD>
-<TD ALIGN="right"><CODE>"nsub"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NTILDE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NTILDE_L">NTILDE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ntilde"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NTILDE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NTILDE_U">NTILDE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ntilde"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NU_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NU_L">NU_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"nu"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.NU_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NU_U">NU_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Nu"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OACUTE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OACUTE_L">OACUTE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"oacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OACUTE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OACUTE_U">OACUTE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Oacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OCIRC_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OCIRC_L">OCIRC_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ocirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OCIRC_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OCIRC_U">OCIRC_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ocirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OELIG_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OELIG_L">OELIG_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"oelig"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OELIG_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OELIG_U">OELIG_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"OElig"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OGRAVE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OGRAVE_L">OGRAVE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ograve"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OGRAVE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OGRAVE_U">OGRAVE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ograve"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OLINE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OLINE">OLINE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"oline"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OMEGA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMEGA_L">OMEGA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"omega"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OMEGA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMEGA_U">OMEGA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Omega"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OMICRON_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMICRON_L">OMICRON_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"omicron"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OMICRON_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMICRON_U">OMICRON_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Omicron"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OPLUS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OPLUS">OPLUS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"oplus"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OR">OR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"or"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ORDF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ORDF">ORDF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ordf"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ORDM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ORDM">ORDM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ordm"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OSLASH_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OSLASH_L">OSLASH_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"oslash"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OSLASH_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OSLASH_U">OSLASH_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Oslash"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OTILDE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OTILDE_L">OTILDE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"otilde"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OTILDE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OTILDE_U">OTILDE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Otilde"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OTIMES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OTIMES">OTIMES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"otimes"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OUML_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OUML_L">OUML_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ouml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.OUML_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OUML_U">OUML_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ouml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PARA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PARA">PARA</A></CODE></TD>
-<TD ALIGN="right"><CODE>"para"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PART"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PART">PART</A></CODE></TD>
-<TD ALIGN="right"><CODE>"part"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PERMIL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PERMIL">PERMIL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"permil"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PERP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PERP">PERP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"perp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PHI_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PHI_L">PHI_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"phi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PHI_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PHI_U">PHI_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Phi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PI_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PI_L">PI_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PI_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PI_U">PI_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Pi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PIV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PIV">PIV</A></CODE></TD>
-<TD ALIGN="right"><CODE>"piv"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PLUSMN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PLUSMN">PLUSMN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"plusmn"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.POUND"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#POUND">POUND</A></CODE></TD>
-<TD ALIGN="right"><CODE>"pound"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PRIME_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PRIME_L">PRIME_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"prime"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PRIME_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PRIME_U">PRIME_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Prime"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PROD"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PROD">PROD</A></CODE></TD>
-<TD ALIGN="right"><CODE>"prod"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PROP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PROP">PROP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"prop"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PSI_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PSI_L">PSI_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"psi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.PSI_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PSI_U">PSI_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Psi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.QUOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#QUOT">QUOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"quot"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RADIC"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RADIC">RADIC</A></CODE></TD>
-<TD ALIGN="right"><CODE>"radic"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RANG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RANG">RANG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rang"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RAQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RAQUO">RAQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"raquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RARR_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RARR_L">RARR_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rarr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RARR_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RARR_U">RARR_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rArr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RCEIL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RCEIL">RCEIL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rceil"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RDQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RDQUO">RDQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rdquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.REAL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#REAL">REAL</A></CODE></TD>
-<TD ALIGN="right"><CODE>"real"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.REG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#REG">REG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"reg"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RFLOOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RFLOOR">RFLOOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rfloor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RHO_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RHO_L">RHO_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rho"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RHO_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RHO_U">RHO_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Rho"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RLM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RLM">RLM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rlm"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RSAQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RSAQUO">RSAQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rsaquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.RSQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#RSQUO">RSQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"rsquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SBQUO"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SBQUO">SBQUO</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sbquo"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SCARON_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SCARON_L">SCARON_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"scaron"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SCARON_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SCARON_U">SCARON_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Scaron"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SDOT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SDOT">SDOT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sdot"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SECT"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SECT">SECT</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sect"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SHY"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SHY">SHY</A></CODE></TD>
-<TD ALIGN="right"><CODE>"shy"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SIGMA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SIGMA_L">SIGMA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sigma"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SIGMA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SIGMA_U">SIGMA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Sigma"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SIGMAF"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SIGMAF">SIGMAF</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sigmaf"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SIM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SIM">SIM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sim"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SPADES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SPADES">SPADES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"spades"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUB"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUB">SUB</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sub"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUBE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUBE">SUBE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sube"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUM">SUM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sum"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUP">SUP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sup"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUP1"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUP1">SUP1</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sup1"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUP2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUP2">SUP2</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sup2"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUP3"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUP3">SUP3</A></CODE></TD>
-<TD ALIGN="right"><CODE>"sup3"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SUPE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SUPE">SUPE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"supe"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.SZLIG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#SZLIG">SZLIG</A></CODE></TD>
-<TD ALIGN="right"><CODE>"szlig"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.TAU_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#TAU_L">TAU_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"tau"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.TAU_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#TAU_U">TAU_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Tau"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.THERE4"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#THERE4">THERE4</A></CODE></TD>
-<TD ALIGN="right"><CODE>"there4"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.THETA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#THETA_L">THETA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"theta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.THETA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#THETA_U">THETA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Theta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.THETASYM"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#THETASYM">THETASYM</A></CODE></TD>
-<TD ALIGN="right"><CODE>"thetasym"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.THINSP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#THINSP">THINSP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"thinsp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.THORN_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#THORN_L">THORN_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"thorn"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.THORN_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#THORN_U">THORN_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"THORN"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.TILDE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#TILDE">TILDE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"tilde"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.TIMES"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#TIMES">TIMES</A></CODE></TD>
-<TD ALIGN="right"><CODE>"times"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.TRADE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#TRADE">TRADE</A></CODE></TD>
-<TD ALIGN="right"><CODE>"trade"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UACUTE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UACUTE_L">UACUTE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"uacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UACUTE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UACUTE_U">UACUTE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Uacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UARR_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UARR_L">UARR_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"uarr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UARR_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UARR_U">UARR_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"uArr"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UCIRC_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UCIRC_L">UCIRC_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ucirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UCIRC_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UCIRC_U">UCIRC_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ucirc"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UGRAVE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UGRAVE_L">UGRAVE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"ugrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UGRAVE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UGRAVE_U">UGRAVE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Ugrave"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UML"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UML">UML</A></CODE></TD>
-<TD ALIGN="right"><CODE>"uml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UPSIH"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UPSIH">UPSIH</A></CODE></TD>
-<TD ALIGN="right"><CODE>"upsih"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UPSILON_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UPSILON_L">UPSILON_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"upsilon"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UPSILON_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UPSILON_U">UPSILON_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Upsilon"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UUML_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UUML_L">UUML_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"uuml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.UUML_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#UUML_U">UUML_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Uuml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.WEIERP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#WEIERP">WEIERP</A></CODE></TD>
-<TD ALIGN="right"><CODE>"weierp"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.XI_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#XI_L">XI_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"xi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.XI_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#XI_U">XI_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Xi"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.YACUTE_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#YACUTE_L">YACUTE_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"yacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.YACUTE_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#YACUTE_U">YACUTE_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Yacute"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.YEN"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#YEN">YEN</A></CODE></TD>
-<TD ALIGN="right"><CODE>"yen"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.YUML_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#YUML_L">YUML_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"yuml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.YUML_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#YUML_U">YUML_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Yuml"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ZETA_L"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ZETA_L">ZETA_L</A></CODE></TD>
-<TD ALIGN="right"><CODE>"zeta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ZETA_U"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ZETA_U">ZETA_U</A></CODE></TD>
-<TD ALIGN="right"><CODE>"Zeta"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ZWJ"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ZWJ">ZWJ</A></CODE></TD>
-<TD ALIGN="right"><CODE>"zwj"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.HTML40Namespace.EntityName.ZWNJ"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ZWNJ">ZWNJ</A></CODE></TD>
-<TD ALIGN="right"><CODE>"zwnj"</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.web.core.javascript.<A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">JsDataTypes</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.JsDataTypes.BASE_FILE_EXTENSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html#BASE_FILE_EXTENSION">BASE_FILE_EXTENSION</A></CODE></TD>
-<TD ALIGN="right"><CODE>".js"</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.web.core.javascript.search.<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></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.search.JsIndexManager.S_CANCELED"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html#S_CANCELED">S_CANCELED</A></CODE></TD>
-<TD ALIGN="right"><CODE>4</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.search.JsIndexManager.S_REBUILDING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html#S_REBUILDING">S_REBUILDING</A></CODE></TD>
-<TD ALIGN="right"><CODE>3</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.search.JsIndexManager.S_STABLE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html#S_STABLE">S_STABLE</A></CODE></TD>
-<TD ALIGN="right"><CODE>1</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.core.javascript.search.JsIndexManager.S_UPDATING"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html#S_UPDATING">S_UPDATING</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.web.ui.<A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html" title="class in org.eclipse.wst.jsdt.web.ui">StructuredTextViewerConfigurationJSDT.externalTypeExtension</A></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.ui.StructuredTextViewerConfigurationJSDT.externalTypeExtension.AUTOEDIT_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/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#AUTOEDIT_ID">AUTOEDIT_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"autoeditstrategy"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.ui.StructuredTextViewerConfigurationJSDT.externalTypeExtension.CONTENT_ASSIST"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#CONTENT_ASSIST">CONTENT_ASSIST</A></CODE></TD>
-<TD ALIGN="right"><CODE>"contentassistprocessor"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.ui.StructuredTextViewerConfigurationJSDT.externalTypeExtension.CONTENT_FORMATER"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#CONTENT_FORMATER">CONTENT_FORMATER</A></CODE></TD>
-<TD ALIGN="right"><CODE>"contentformater"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.ui.StructuredTextViewerConfigurationJSDT.externalTypeExtension.HOVER_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/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#HOVER_ID">HOVER_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"texthover"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.ui.StructuredTextViewerConfigurationJSDT.externalTypeExtension.HYPERLINK_DETECTOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#HYPERLINK_DETECTOR">HYPERLINK_DETECTOR</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hyperlinkdetector"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.ui.StructuredTextViewerConfigurationJSDT.externalTypeExtension.HYPERLINK_DETECTOR_TARGETS"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
-<CODE>public&nbsp;static&nbsp;final&nbsp;java.lang.String</CODE></FONT></TD>
-<TD ALIGN="left"><CODE><A HREF="org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#HYPERLINK_DETECTOR_TARGETS">HYPERLINK_DETECTOR_TARGETS</A></CODE></TD>
-<TD ALIGN="right"><CODE>"hyperlinkdetector"</CODE></TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<A NAME="org.eclipse.wst.jsdt.web.ui.StructuredTextViewerConfigurationJSDT.externalTypeExtension.INFORMATIONPROVIDER_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/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#INFORMATIONPROVIDER_ID">INFORMATIONPROVIDER_ID</A></CODE></TD>
-<TD ALIGN="right"><CODE>"informationpresenter"</CODE></TD>
-</TR>
-</FONT></TD>
-</TR>
-</TABLE>
-
-<P>
-
-<P>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/deprecated-list.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/deprecated-list.html
deleted file mode 100644
index 290f9aee..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/deprecated-list.html
+++ /dev/null
@@ -1,1277 +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>
-Deprecated List
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="Deprecated List";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT>&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?deprecated-list.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="deprecated-list.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>
-<H2>
-<B>Deprecated API</B></H2>
-</CENTER>
-<HR SIZE="4" NOSHADE>
-<B>Contents</B><UL>
-<LI><A HREF="#interface">Deprecated Interfaces</A>
-<LI><A HREF="#field">Deprecated Fields</A>
-<LI><A HREF="#method">Deprecated Methods</A>
-<LI><A HREF="#constructor">Deprecated Constructors</A>
-</UL>
-
-<A NAME="interface"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Deprecated Interfaces</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IBufferFactory.html" title="interface in org.eclipse.wst.jsdt.core">org.eclipse.wst.jsdt.core.IBufferFactory</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/WorkingCopyOwner.html" title="class in org.eclipse.wst.jsdt.core"><CODE>WorkingCopyOwner</CODE></A> instead
-
- 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.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">org.eclipse.wst.jsdt.core.ICompletionRequestor</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core"><CODE>CompletionRequestor</CODE></A> instead.
-
- 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.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html" title="interface in org.eclipse.wst.jsdt.core">org.eclipse.wst.jsdt.core.IWorkingCopy</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IJavaScriptUnit</CODE></A> instead
-
- 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.</I>&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<P>
-<A NAME="field"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Deprecated Fields</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeAmbiguous">org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeAmbiguous</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><CODE>IProblem.AmbiguousType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeCannotBeVoidArray">org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeCannotBeVoidArray</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotAllocateVoidArray"><CODE>IProblem.CannotAllocateVoidArray</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeInheritedNameHidesEnclosingName">org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeInheritedNameHidesEnclosingName</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName"><CODE>IProblem.InheritedTypeHidesEnclosingName</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeInternalNameProvided">org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeInternalNameProvided</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided"><CODE>IProblem.InternalTypeNameProvided</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeNotFound">org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeNotFound</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedType"><CODE>IProblem.UndefinedType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeNotVisible">org.eclipse.wst.jsdt.core.compiler.IProblem.ArgumentTypeNotVisible</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><CODE>IProblem.NotVisibleType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_ORDER_PROPOSALS">org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEASSIST_ORDER_PROPOSALS</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>use <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_SORTER"><CODE>PreferenceConstants.CODEASSIST_SORTER</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_GETTERSETTER_PREFIX">org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_GETTERSETTER_PREFIX</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use JavaScriptCore preference store (key JavaScriptCore.
- CODEASSIST_FIELD_PREFIXES and CODEASSIST_STATIC_FIELD_PREFIXES)</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_GETTERSETTER_SUFFIX">org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_GETTERSETTER_SUFFIX</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use setting from JavaScriptCore preference store (key JavaScriptCore.
- CODEASSIST_FIELD_SUFFIXES and CODEASSIST_STATIC_FIELD_SUFFIXES)</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_GETTERSETTER_PREFIX">org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_USE_GETTERSETTER_PREFIX</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use JavaScriptCore preference store (key JavaScriptCore.
- CODEASSIST_FIELD_PREFIXES and CODEASSIST_STATIC_FIELD_PREFIXES)</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_GETTERSETTER_SUFFIX">org.eclipse.wst.jsdt.ui.PreferenceConstants.CODEGEN_USE_GETTERSETTER_SUFFIX</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use JavaScriptCore preference store (key JavaScriptCore.
- CODEASSIST_FIELD_PREFIXES and CODEASSIST_STATIC_FIELD_PREFIXES)</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html#COMMENT_PROPERTY">org.eclipse.wst.jsdt.core.dom.JSdoc.COMMENT_PROPERTY</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Replaced by <A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html#TAGS_PROPERTY"><CODE>JSdoc.TAGS_PROPERTY</CODE></A> in the JLS3 API.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INCONSISTENT_NULL_CHECK">org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INCONSISTENT_NULL_CHECK</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NULL_REFERENCE"><CODE>JavaScriptCore.COMPILER_PB_NULL_REFERENCE</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_IMPORT">org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_INVALID_IMPORT</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- discontinued since turning off would violate language specs</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNREACHABLE_CODE">org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNREACHABLE_CODE</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- discontinued since turning off would violate language specs</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNSAFE_TYPE_OPERATION">org.eclipse.wst.jsdt.core.JavaScriptCore.COMPILER_PB_UNSAFE_TYPE_OPERATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- got renamed into <A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNCHECKED_TYPE_OPERATION"><CODE>JavaScriptCore.COMPILER_PB_UNCHECKED_TYPE_OPERATION</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_PRIORITY">org.eclipse.wst.jsdt.core.JavaScriptCore.DEFAULT_TASK_PRIORITY</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_PRIORITIES"><CODE>JavaScriptCore.DEFAULT_TASK_PRIORITIES</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_TAG">org.eclipse.wst.jsdt.core.JavaScriptCore.DEFAULT_TASK_TAG</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#DEFAULT_TASK_TAGS"><CODE>JavaScriptCore.DEFAULT_TASK_TAGS</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_ALT_SHIFT_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ALT_SHIFT_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BACKGROUND_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BACKGROUND_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractTextEditor#PREFERENCE_COLOR_BACKGROUND</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BACKGROUND_DEFAULT_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BACKGROUND_DEFAULT_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractTextEditor#PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BOOKMARK_INDICATION">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BOOKMARK_INDICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BOOKMARK_INDICATION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BOOKMARK_INDICATION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BOOKMARK_INDICATION_IN_OVERVIEW_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BROWSER_LIKE_LINKS">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractDecoratedTextEditorPreferenceConstants#EDITOR_HYPERLINKS_ENABLED</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractDecoratedTextEditorPreferenceConstants#EDITOR_HYPERLINK_KEY_MODIFIER</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_BROWSER_LIKE_LINKS_KEY_MODIFIER_MASK</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractDecoratedTextEditorPreferenceConstants#EDITOR_HYPERLINK_KEY_MODIFIER_MASK</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_ALT_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_ALT_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_ALT_SHIFT_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_ALT_SHIFT_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CTRL_SHIFT_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CTRL_SHIFT_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CURRENT_LINE">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CURRENT_LINE</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_CURRENT_LINE_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_CURRENT_LINE_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_DEFAULT_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_DEFAULT_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_DEFAULT_HOVER_CONFIGURED_ID">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_DEFAULT_HOVER_CONFIGURED_ID</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_DISABLE_OVERWRITE_MODE">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_DISABLE_OVERWRITE_MODE</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.1 replaced by <CODE>AbstractDecoratedTextEditorPreferenceConstants#EDITOR_DISABLE_OVERWRITE_MODE</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_ERROR_INDICATION_IN_OVERVIEW_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_FIND_SCOPE_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FIND_SCOPE_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.2, use <CODE>AbstractTextEditor#PREFERENCE_COLOR_FIND_SCOPE</CODE> instead}</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_FOREGROUND_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOREGROUND_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractTextEditor#PREFERENCE_COLOR_FOREGROUND</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_FOREGROUND_DEFAULT_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_FOREGROUND_DEFAULT_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractTextEditor#PREFERENCE_COLOR_FOREGROUND_SYSTEM_DEFAULT</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_ANNOTATION_BOLD">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_BOLD</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the annotation highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.ANNOTATION</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_ANNOTATION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the annotation highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.ANNOTATION</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_ANNOTATION_ITALIC">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_ITALIC</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the annotation highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.ANNOTATION</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_ANNOTATION_STRIKETHROUGH">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_STRIKETHROUGH</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the annotation highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.ANNOTATION</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_ANNOTATION_UNDERLINE">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_ANNOTATION_UNDERLINE</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the annotation highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.ANNOTATION</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_METHOD_NAME_BOLD">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_METHOD_NAME_BOLD</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the method name highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.METHOD</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_METHOD_NAME_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_METHOD_NAME_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the method name highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.METHOD</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_JAVA_METHOD_NAME_ITALIC">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_JAVA_METHOD_NAME_ITALIC</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>the method name highlighting has been replaced by a semantic highlighting, see <CODE>SemanticHighlightings.METHOD</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_LINE_NUMBER_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINE_NUMBER_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_LINE_NUMBER_RULER_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINE_NUMBER_RULER_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_LINK_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINK_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, replaced by <CODE>AbstractDecoratedTextEditorPreferenceConstants#EDITOR_HYPERLINK_COLOR</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_LINKED_POSITION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_LINKED_POSITION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>not used any longer as the linked positions are displayed as annotations</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_NO_HOVER_CONFIGURED_ID">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_NO_HOVER_CONFIGURED_ID</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_NONE_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_NONE_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_OVERVIEW_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_OVERVIEW_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_PRINT_MARGIN">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PRINT_MARGIN</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_PRINT_MARGIN_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PRINT_MARGIN_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_PRINT_MARGIN_COLUMN">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PRINT_MARGIN_COLUMN</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_PROBLEM_INDICATION">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PROBLEM_INDICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_PROBLEM_INDICATION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_PROBLEM_INDICATION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SEARCH_RESULT_INDICATION">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SEARCH_RESULT_INDICATION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEARCH_RESULT_INDICATION_IN_OVERVIEW_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SEMANTIC_HIGHLIGHTING_ENABLED">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SEMANTIC_HIGHLIGHTING_ENABLED</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1, this preference is not used or set any longer; see
- <CODE>SemanticHighlightings#affectsEnablement(IPreferenceStore, org.eclipse.jface.util.PropertyChangeEvent)</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SHIFT_HOVER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SHIFT_HOVER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0, replaced by <A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TEXT_HOVER_MODIFIERS"><CODE>PreferenceConstants.EDITOR_TEXT_HOVER_MODIFIERS</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SHOW_TEXT_HOVER_AFFORDANCE">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SHOW_TEXT_HOVER_AFFORDANCE</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.3, replaced by <CODE>AbstractDecoratedTextEditorPreferenceConstants#EDITOR_SHOW_TEXT_HOVER_AFFORDANCE</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SMART_HOME_END">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SMART_HOME_END</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.3 replaced by <CODE>org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants#EDITOR_SMART_HOME_END</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_SPACES_FOR_TABS">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_SPACES_FOR_TABS</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.1 replaced by the formatter setting defined in <A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_TAB_CHAR"><CODE>DefaultCodeFormatterConstants.FORMATTER_TAB_CHAR</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TAB_WIDTH">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TAB_WIDTH</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>As of 3.0 replaced by <CODE>AbstractDecoratedTextEditorPreferenceConstants#EDITOR_TAB_WIDTH</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TASK_INDICATION">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_INDICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TASK_INDICATION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_INDICATION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_TASK_INDICATION_IN_OVERVIEW_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_UNKNOWN_INDICATION">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_UNKNOWN_INDICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_UNKNOWN_INDICATION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_UNKNOWN_INDICATION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I></I>&nbsp;&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_UNKNOWN_INDICATION_IN_OVERVIEW_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_WARNING_INDICATION">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_WARNING_INDICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_WARNING_INDICATION_COLOR">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_WARNING_INDICATION_COLOR</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER">org.eclipse.wst.jsdt.ui.PreferenceConstants.EDITOR_WARNING_INDICATION_IN_OVERVIEW_RULER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>as of 3.0 replaced by <CODE>org.eclipse.ui.texteditor.MarkerAnnotationPreferences</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeAmbiguous">org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeAmbiguous</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><CODE>IProblem.AmbiguousType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeInheritedNameHidesEnclosingName">org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeInheritedNameHidesEnclosingName</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName"><CODE>IProblem.InheritedTypeHidesEnclosingName</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeInternalNameProvided">org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeInternalNameProvided</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided"><CODE>IProblem.InternalTypeNameProvided</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeNotFound">org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeNotFound</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedType"><CODE>IProblem.UndefinedType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ExceptionTypeNotVisible">org.eclipse.wst.jsdt.core.compiler.IProblem.ExceptionTypeNotVisible</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><CODE>IProblem.NotVisibleType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_CLEAR_BLANK_LINES">org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_CLEAR_BLANK_LINES</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT"><CODE>DefaultCodeFormatterConstants.FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_BLOCK_COMMENT</CODE></A> and <A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT"><CODE>DefaultCodeFormatterConstants.FORMATTER_COMMENT_CLEAR_BLANK_LINES_IN_JAVADOC_COMMENT</CODE></A></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT">org.eclipse.wst.jsdt.core.formatter.DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use multiple settings for each kind of comments. See <A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT"><CODE>DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_BLOCK_COMMENT</CODE></A>,
- <A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT"><CODE>DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_JAVADOC_COMMENT</CODE></A> and <A HREF="org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#FORMATTER_COMMENT_FORMAT_LINE_COMMENT"><CODE>DefaultCodeFormatterConstants.FORMATTER_COMMENT_FORMAT_LINE_COMMENT</CODE></A>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportAmbiguous">org.eclipse.wst.jsdt.core.compiler.IProblem.ImportAmbiguous</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><CODE>IProblem.AmbiguousType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportInheritedNameHidesEnclosingName">org.eclipse.wst.jsdt.core.compiler.IProblem.ImportInheritedNameHidesEnclosingName</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName"><CODE>IProblem.InheritedTypeHidesEnclosingName</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportInternalNameProvided">org.eclipse.wst.jsdt.core.compiler.IProblem.ImportInternalNameProvided</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided"><CODE>IProblem.InternalTypeNameProvided</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ImportNotVisible">org.eclipse.wst.jsdt.core.compiler.IProblem.ImportNotVisible</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><CODE>IProblem.NotVisibleType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceAmbiguous">org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceAmbiguous</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><CODE>IProblem.AmbiguousType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceInheritedNameHidesEnclosingName">org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceInheritedNameHidesEnclosingName</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName"><CODE>IProblem.InheritedTypeHidesEnclosingName</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceInternalNameProvided">org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceInternalNameProvided</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided"><CODE>IProblem.InternalTypeNameProvided</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceNotFound">org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceNotFound</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedType"><CODE>IProblem.UndefinedType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InterfaceNotVisible">org.eclipse.wst.jsdt.core.compiler.IProblem.InterfaceNotVisible</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><CODE>IProblem.NotVisibleType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_ANNOTATION">org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_ANNOTATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>replaced as of 3.2 by an equivalent semantic highlighting, see <CODE>SemanticHighlightings.ANNOTATION</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_METHOD_NAME">org.eclipse.wst.jsdt.ui.text.IJavaScriptColorConstants.JAVA_METHOD_NAME</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>replaced as of 3.1 by an equivalent semantic highlighting, see <CODE>SemanticHighlightings.METHOD</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#JLS2">org.eclipse.wst.jsdt.core.dom.AST.JLS2</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Clients should use the <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#JLS3"><CODE>AST.JLS3</CODE></A> AST API instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableCannotBeNull">org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableCannotBeNull</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantNullCheckOnNonNullLocalVariable"><CODE>IProblem.RedundantNullCheckOnNonNullLocalVariable</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableCanOnlyBeNull">org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableCanOnlyBeNull</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableReference"><CODE>IProblem.NullLocalVariableReference</CODE></A>, <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantNullCheckOnNullLocalVariable"><CODE>IProblem.RedundantNullCheckOnNullLocalVariable</CODE></A> or <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantLocalVariableNullAssignment"><CODE>IProblem.RedundantLocalVariableNullAssignment</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableMayBeNull">org.eclipse.wst.jsdt.core.compiler.IProblem.LocalVariableMayBeNull</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#PotentialNullLocalVariableReference"><CODE>IProblem.PotentialNullLocalVariableReference</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD">org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_ERROR_PAGE_SEVERITY_THRESHOLD</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use method <CODE>org.eclipse.ltk.core.refactoring.RefactoringCore#getConditionCheckingFailedSeverity()</CODE>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#REFACTOR_ERROR_SEVERITY">org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_ERROR_SEVERITY</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use constant <CODE>org.eclipse.ltk.core.refactoring.RefactoringStatus#ERROR</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#REFACTOR_FATAL_SEVERITY">org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_FATAL_SEVERITY</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use constant <CODE>org.eclipse.ltk.core.refactoring.RefactoringStatus#FATAL</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#REFACTOR_INFO_SEVERITY">org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_INFO_SEVERITY</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use constant <CODE>org.eclipse.ltk.core.refactoring.RefactoringStatus#INFO</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#REFACTOR_OK_SEVERITY">org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_OK_SEVERITY</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use constant <CODE>org.eclipse.ltk.core.refactoring.RefactoringStatus#OK</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#REFACTOR_WARNING_SEVERITY">org.eclipse.wst.jsdt.ui.PreferenceConstants.REFACTOR_WARNING_SEVERITY</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use constant <CODE>org.eclipse.ltk.core.refactoring.RefactoringStatus#WARNING</CODE></I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeAmbiguous">org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeAmbiguous</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><CODE>IProblem.AmbiguousType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeCannotBeVoidArray">org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeCannotBeVoidArray</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotAllocateVoidArray"><CODE>IProblem.CannotAllocateVoidArray</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeInheritedNameHidesEnclosingName">org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeInheritedNameHidesEnclosingName</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName"><CODE>IProblem.InheritedTypeHidesEnclosingName</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeInternalNameProvided">org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeInternalNameProvided</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided"><CODE>IProblem.InternalTypeNameProvided</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeNotFound">org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeNotFound</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedType"><CODE>IProblem.UndefinedType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#ReturnTypeNotVisible">org.eclipse.wst.jsdt.core.compiler.IProblem.ReturnTypeNotVisible</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><CODE>IProblem.NotVisibleType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_CONTAINER">org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_CONTAINER</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use SHOW_QUALIFIED or SHOW_ROOT instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_CONTAINER_QUALIFICATION">org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_CONTAINER_QUALIFICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use SHOW_QUALIFIED instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#SHOW_POSTIFIX_QUALIFICATION">org.eclipse.wst.jsdt.ui.JavaScriptElementLabelProvider.SHOW_POSTIFIX_QUALIFICATION</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>SHOW_POST_QUALIFIED instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassAmbiguous">org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassAmbiguous</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><CODE>IProblem.AmbiguousType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassInheritedNameHidesEnclosingName">org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassInheritedNameHidesEnclosingName</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName"><CODE>IProblem.InheritedTypeHidesEnclosingName</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassInternalNameProvided">org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassInternalNameProvided</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided"><CODE>IProblem.InternalTypeNameProvided</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassNotFound">org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassNotFound</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedType"><CODE>IProblem.UndefinedType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#SuperclassNotVisible">org.eclipse.wst.jsdt.core.compiler.IProblem.SuperclassNotVisible</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><CODE>IProblem.NotVisibleType</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#UPDATE_JAVA_VIEWS">org.eclipse.wst.jsdt.ui.PreferenceConstants.UPDATE_JAVA_VIEWS</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Since 3.0, views now always update while editing</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#UPDATE_ON_SAVE">org.eclipse.wst.jsdt.ui.PreferenceConstants.UPDATE_ON_SAVE</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Since 3.0, views now always update while editing</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/PreferenceConstants.html#UPDATE_WHILE_EDITING">org.eclipse.wst.jsdt.ui.PreferenceConstants.UPDATE_WHILE_EDITING</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Since 3.0, views now always update while editing</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#VariableTypeCannotBeVoidArray">org.eclipse.wst.jsdt.core.compiler.IProblem.VariableTypeCannotBeVoidArray</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>- problem is no longer generated, use <A HREF="org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotAllocateVoidArray"><CODE>IProblem.CannotAllocateVoidArray</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<P>
-<A NAME="method"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Deprecated Methods</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptAnonymousType(char[], char[], char[][], char[][], char[][], char[], int, int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptAnonymousType(char[], char[], char[][], char[][], char[][], char[], int, int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptError(org.eclipse.wst.jsdt.core.compiler.IProblem)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptError(IProblem)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#completionFailure(org.eclipse.wst.jsdt.core.compiler.IProblem)"><CODE>CompletionRequestor.completionFailure(IProblem)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptField(char[], char[], char[], char[], char[], char[], int, int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptField(char[], char[], char[], char[], char[], char[], int, int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptInterface(char[], char[], char[], int, int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptInterface(char[], char[], char[], int, int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptKeyword(char[], int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptKeyword(char[], int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptLabel(char[], int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptLabel(char[], int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptLocalVariable(char[], char[], char[], int, int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptLocalVariable(char[], char[], char[], int, int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptMethod(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptMethod(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptMethodDeclaration(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptMethodDeclaration(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptModifier(char[], int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptModifier(char[], int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptPackage(char[], char[], int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptPackage(char[], char[], int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptType(char[], char[], char[], int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptType(char[], char[], char[], int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptVariableName(char[], char[], char[], char[], int, int, int)">org.eclipse.wst.jsdt.core.ICompletionRequestor.acceptVariableName(char[], char[], char[], char[], int, int, int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#becomeWorkingCopy(org.eclipse.wst.jsdt.core.IProblemRequestor, IProgressMonitor)">org.eclipse.wst.jsdt.core.IJavaScriptUnit.becomeWorkingCopy(IProblemRequestor, IProgressMonitor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#becomeWorkingCopy(IProgressMonitor)"><CODE>IJavaScriptUnit.becomeWorkingCopy(IProgressMonitor)</CODE></A> instead.
- Note that if this deprecated method is used, problems will be reported to the given problem requestor
- as well as the problem requestor returned by the working copy owner (if not null).</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IClassFile.html#becomeWorkingCopy(org.eclipse.wst.jsdt.core.IProblemRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)">org.eclipse.wst.jsdt.core.IClassFile.becomeWorkingCopy(IProblemRequestor, WorkingCopyOwner, IProgressMonitor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/ITypeRoot.html#getWorkingCopy(org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><CODE>ITypeRoot.getWorkingCopy(WorkingCopyOwner, IProgressMonitor)</CODE></A> instead.
- Note that if this deprecated method is used, problems will be reported to the given problem requestor
- as well as the problem requestor returned by the working copy owner (if not null).</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.ICompletionRequestor)">org.eclipse.wst.jsdt.core.eval.IEvaluationContext.codeComplete(String, int, ICompletionRequestor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.CompletionRequestor)"><CODE>IEvaluationContext.codeComplete(String,int,CompletionRequestor)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.ICompletionRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner)">org.eclipse.wst.jsdt.core.eval.IEvaluationContext.codeComplete(String, int, ICompletionRequestor, WorkingCopyOwner)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.CompletionRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><CODE>IEvaluationContext.codeComplete(String,int,CompletionRequestor,WorkingCopyOwner)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#commit(boolean, IProgressMonitor)">org.eclipse.wst.jsdt.core.IWorkingCopy.commit(boolean, IProgressMonitor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#commitWorkingCopy(boolean, IProgressMonitor)"><CODE>IJavaScriptUnit.commitWorkingCopy(boolean, IProgressMonitor)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#destroy()">org.eclipse.wst.jsdt.core.IWorkingCopy.destroy()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#discardWorkingCopy()"><CODE>IJavaScriptUnit.discardWorkingCopy()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#findElements(org.eclipse.wst.jsdt.core.IJavaScriptElement)">org.eclipse.wst.jsdt.core.IWorkingCopy.findElements(IJavaScriptElement)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#findElements(org.eclipse.wst.jsdt.core.IJavaScriptElement)"><CODE>IJavaScriptUnit.findElements(IJavaScriptElement)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#findPrimaryType()">org.eclipse.wst.jsdt.core.IWorkingCopy.findPrimaryType()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/ITypeRoot.html#findPrimaryType()"><CODE>ITypeRoot.findPrimaryType()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#findSharedWorkingCopy(org.eclipse.wst.jsdt.core.IBufferFactory)">org.eclipse.wst.jsdt.core.IWorkingCopy.findSharedWorkingCopy(IBufferFactory)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#findWorkingCopy(org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><CODE>IJavaScriptUnit.findWorkingCopy(WorkingCopyOwner)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#getClasspathEntries()">org.eclipse.wst.jsdt.core.JsGlobalScopeContainerInitializer.getClasspathEntries()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#getIncludepathEntries()"><CODE>JsGlobalScopeContainerInitializer.getIncludepathEntries()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#getClasspathEntries()">org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer.getClasspathEntries()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#getIncludepathEntries()"><CODE>IJsGlobalScopeContainer.getIncludepathEntries()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html#getClasspathEntries()">org.eclipse.wst.jsdt.libraries.BasicBrowserLibraryJsGlobalScopeContainerInitializer.getClasspathEntries()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html#getIncludepathEntries()"><CODE>BasicBrowserLibraryJsGlobalScopeContainerInitializer.getIncludepathEntries()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/JavaElementSorter.html#getCollator()">org.eclipse.wst.jsdt.ui.JavaElementSorter.getCollator()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>The method is not intended to be used by clients.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html#getComment()">org.eclipse.wst.jsdt.core.dom.JSdoc.getComment()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>The comment string was replaced in the 3.0 release
- by a representation of the structure of the doc comment.
- See <A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html#tags()"><CODE>tags</CODE></A>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IMember.html#getCompilationUnit()">org.eclipse.wst.jsdt.core.IMember.getCompilationUnit()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IMember.html#getJavaScriptUnit()"><CODE>IMember.getJavaScriptUnit()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/Statement.html#getLeadingComment()">org.eclipse.wst.jsdt.core.dom.Statement.getLeadingComment()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>This feature was removed in the 2.1 release because it was
- only a partial, and inadequate, solution to the issue of associating
- comments with statements. Furthermore, AST.parseCompilationUnit did not
- associate leading comments, making this moot. Clients that need to access
- comments preceding a statement should either consult the compilation
- unit's <A HREF="org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html#getCommentList()">comment table</A>
- or use a scanner to reanalyze the source text immediately preceding
- the statement's source range.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IType.html#getMethods()">org.eclipse.wst.jsdt.core.IType.getMethods()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IType.html#getFunctions()"><CODE>IType.getFunctions()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IFunctionContainer.html#getMethods()">org.eclipse.wst.jsdt.core.IFunctionContainer.getMethods()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IFunctionContainer.html#getFunctions()"><CODE>IFunctionContainer.getFunctions()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#getName()">org.eclipse.wst.jsdt.core.dom.ClassInstanceCreation.getName()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#getType()"><CODE>ClassInstanceCreation.getType()</CODE></A>, which returns a <code>Type</code> instead of a
- <code>Name</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#getOriginal(org.eclipse.wst.jsdt.core.IJavaScriptElement)">org.eclipse.wst.jsdt.core.IWorkingCopy.getOriginal(IJavaScriptElement)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptElement.html#getPrimaryElement()"><CODE>IJavaScriptElement.getPrimaryElement()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#getOriginalElement()">org.eclipse.wst.jsdt.core.IWorkingCopy.getOriginalElement()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/ITypeRoot.html#findPrimaryType()"><CODE>ITypeRoot.findPrimaryType()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/StandardJavaScriptElementContentProvider.html#getProvideWorkingCopy()">org.eclipse.wst.jsdt.ui.StandardJavaScriptElementContentProvider.getProvideWorkingCopy()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Since 3.0 compilation unit children are always provided as working copies. The JavaScript model
- does not support the 'original' mode anymore.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#getReturnType()">org.eclipse.wst.jsdt.core.dom.FunctionDeclaration.getReturnType()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by <A HREF="org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#getReturnType2()"><CODE>FunctionDeclaration.getReturnType2()</CODE></A>,
- which may return <code>null</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#getSharedWorkingCopies(org.eclipse.wst.jsdt.core.IBufferFactory)">org.eclipse.wst.jsdt.core.JavaScriptCore.getSharedWorkingCopies(IBufferFactory)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#getWorkingCopies(org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><CODE>JavaScriptCore.getWorkingCopies(WorkingCopyOwner)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#getSharedWorkingCopy(IProgressMonitor, org.eclipse.wst.jsdt.core.IBufferFactory, org.eclipse.wst.jsdt.core.IProblemRequestor)">org.eclipse.wst.jsdt.core.IWorkingCopy.getSharedWorkingCopy(IProgressMonitor, IBufferFactory, IProblemRequestor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#getWorkingCopy(org.eclipse.wst.jsdt.core.WorkingCopyOwner, org.eclipse.wst.jsdt.core.IProblemRequestor, IProgressMonitor)"><CODE>IJavaScriptUnit.getWorkingCopy(WorkingCopyOwner, IProblemRequestor, IProgressMonitor)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/Message.html#getSourcePosition()">org.eclipse.wst.jsdt.core.dom.Message.getSourcePosition()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/dom/Message.html#getStartPosition()"><CODE>Message.getStartPosition()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#getSuperclass()">org.eclipse.wst.jsdt.core.dom.TypeDeclaration.getSuperclass()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#getSuperclassType()"><CODE>TypeDeclaration.getSuperclassType()</CODE></A>, which returns a <code>Type</code>
- instead of a <code>Name</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclarationStatement.html#getTypeDeclaration()">org.eclipse.wst.jsdt.core.dom.TypeDeclarationStatement.getTypeDeclaration()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclarationStatement.html#getDeclaration()"><CODE>TypeDeclarationStatement.getDeclaration()</CODE></A>, which returns <code>AbstractTypeDeclaration</code>
- instead of <code>TypeDeclaration</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#getWorkingCopy()">org.eclipse.wst.jsdt.core.IWorkingCopy.getWorkingCopy()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#getWorkingCopy(IProgressMonitor)"><CODE>IJavaScriptUnit.getWorkingCopy(IProgressMonitor)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#getWorkingCopy(IProgressMonitor, org.eclipse.wst.jsdt.core.IBufferFactory, org.eclipse.wst.jsdt.core.IProblemRequestor)">org.eclipse.wst.jsdt.core.IWorkingCopy.getWorkingCopy(IProgressMonitor, IBufferFactory, IProblemRequestor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#getWorkingCopy(org.eclipse.wst.jsdt.core.WorkingCopyOwner, org.eclipse.wst.jsdt.core.IProblemRequestor, IProgressMonitor)"><CODE>IJavaScriptUnit.getWorkingCopy(WorkingCopyOwner, IProblemRequestor, IProgressMonitor)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#getWorkingCopy(org.eclipse.wst.jsdt.core.WorkingCopyOwner, org.eclipse.wst.jsdt.core.IProblemRequestor, IProgressMonitor)">org.eclipse.wst.jsdt.core.IJavaScriptUnit.getWorkingCopy(WorkingCopyOwner, IProblemRequestor, IProgressMonitor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/ITypeRoot.html#getWorkingCopy(org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><CODE>ITypeRoot.getWorkingCopy(WorkingCopyOwner, IProgressMonitor)</CODE></A> instead.
- Note that if this deprecated method is used, problems will be reported on the passed problem requester
- as well as on the problem requestor returned by the working copy owner (if not null).</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#isBasedOn(IResource)">org.eclipse.wst.jsdt.core.IWorkingCopy.isBasedOn(IResource)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#hasResourceChanged()"><CODE>IJavaScriptUnit.hasResourceChanged()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#isWorkingCopy()">org.eclipse.wst.jsdt.core.IWorkingCopy.isWorkingCopy()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#isWorkingCopy()"><CODE>IJavaScriptUnit.isWorkingCopy()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newCompilationUnit()">org.eclipse.wst.jsdt.core.dom.AST.newCompilationUnit()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newJavaScriptUnit()"><CODE>AST.newJavaScriptUnit()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newJavadoc()">org.eclipse.wst.jsdt.core.dom.AST.newJavadoc()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newJSdoc()"><CODE>AST.newJSdoc()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newMethodDeclaration()">org.eclipse.wst.jsdt.core.dom.AST.newMethodDeclaration()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionDeclaration()"><CODE>AST.newFunctionDeclaration()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newMethodInvocation()">org.eclipse.wst.jsdt.core.dom.AST.newMethodInvocation()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionInvocation()"><CODE>AST.newFunctionInvocation()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newMethodRef()">org.eclipse.wst.jsdt.core.dom.AST.newMethodRef()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionRef()"><CODE>AST.newFunctionRef()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newMethodRefParameter()">org.eclipse.wst.jsdt.core.dom.AST.newMethodRefParameter()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionRefParameter()"><CODE>AST.newFunctionRefParameter()</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IWorkingCopy[], IProgressMonitor)">org.eclipse.wst.jsdt.core.IType.newTypeHierarchy(IWorkingCopy[], IProgressMonitor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IJavaScriptUnit[], IProgressMonitor)"><CODE>IType.newTypeHierarchy(IJavaScriptUnit[], IProgressMonitor)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/WorkingCopyOwner.html#newWorkingCopy(java.lang.String, org.eclipse.wst.jsdt.core.IIncludePathEntry[], org.eclipse.wst.jsdt.core.IProblemRequestor, IProgressMonitor)">org.eclipse.wst.jsdt.core.WorkingCopyOwner.newWorkingCopy(String, IIncludePathEntry[], IProblemRequestor, IProgressMonitor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/WorkingCopyOwner.html#newWorkingCopy(java.lang.String, org.eclipse.wst.jsdt.core.IIncludePathEntry[], IProgressMonitor)"><CODE>WorkingCopyOwner.newWorkingCopy(String, IIncludePathEntry[], IProgressMonitor)</CODE></A> instead.
- Note that if this deprecated method is used, problems may be reported twice
- if the given requestor is not the same as the current working copy owner one.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#reconcile()">org.eclipse.wst.jsdt.core.IWorkingCopy.reconcile()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#reconcile(int, boolean, org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><CODE>IJavaScriptUnit.reconcile(int, boolean, WorkingCopyOwner, IProgressMonitor)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#reconcile(boolean, IProgressMonitor)">org.eclipse.wst.jsdt.core.IWorkingCopy.reconcile(boolean, IProgressMonitor)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#reconcile(int, boolean, org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><CODE>IJavaScriptUnit.reconcile(int, boolean, WorkingCopyOwner, IProgressMonitor)</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/IWorkingCopy.html#restore()">org.eclipse.wst.jsdt.core.IWorkingCopy.restore()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#restore()"><CODE>IJavaScriptUnit.restore()</CODE></A> instead.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html#setComment(java.lang.String)">org.eclipse.wst.jsdt.core.dom.JSdoc.setComment(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>The comment string was replaced in the 3.0 release
- by a representation of the structure of the doc comment.
- See <A HREF="org/eclipse/wst/jsdt/core/dom/JSdoc.html#tags()"><CODE>tags</CODE></A>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#setIncludepathVariable(java.lang.String, IPath)">org.eclipse.wst.jsdt.core.JavaScriptCore.setIncludepathVariable(String, IPath)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptCore.html#setIncludepathVariable(java.lang.String, IPath, IProgressMonitor)"><CODE>JavaScriptCore.setIncludepathVariable(String, IPath, IProgressMonitor)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/ui/ITypeHierarchyViewPart.html#setInput(org.eclipse.wst.jsdt.core.IType)">org.eclipse.wst.jsdt.ui.ITypeHierarchyViewPart.setInput(IType)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>use setInputElement instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/Statement.html#setLeadingComment(java.lang.String)">org.eclipse.wst.jsdt.core.dom.Statement.setLeadingComment(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>This feature was removed in the 2.1 release because it was
- only a partial, and inadequate, solution to the issue of associating
- comments with statements.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html#setModifiers(int)">org.eclipse.wst.jsdt.core.dom.VariableDeclarationStatement.setModifiers(int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html#modifiers()"><CODE>VariableDeclarationStatement.modifiers()</CODE></A> which contains a list of a <code>Modifier</code> nodes.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html#setModifiers(int)">org.eclipse.wst.jsdt.core.dom.VariableDeclarationExpression.setModifiers(int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html#modifiers()"><CODE>VariableDeclarationExpression.modifiers()</CODE></A> which contains a list of a <code>Modifier</code> nodes.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html#setModifiers(int)">org.eclipse.wst.jsdt.core.dom.SingleVariableDeclaration.setModifiers(int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html#modifiers()"><CODE>SingleVariableDeclaration.modifiers()</CODE></A> which contains a list of a <code>Modifier</code> nodes.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/BodyDeclaration.html#setModifiers(int)">org.eclipse.wst.jsdt.core.dom.BodyDeclaration.setModifiers(int)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Rhis method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/BodyDeclaration.html#modifiers()"><CODE>BodyDeclaration.modifiers()</CODE></A> which contains a list of a <code>Modifier</code> nodes.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#setName(org.eclipse.wst.jsdt.core.dom.Name)">org.eclipse.wst.jsdt.core.dom.ClassInstanceCreation.setName(Name)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#setType(org.eclipse.wst.jsdt.core.dom.Type)"><CODE>ClassInstanceCreation.setType(Type)</CODE></A>, which expects a <code>Type</code> instead of
- a <code>Name</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#setReturnType(org.eclipse.wst.jsdt.core.dom.Type)">org.eclipse.wst.jsdt.core.dom.FunctionDeclaration.setReturnType(Type)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#setReturnType2(org.eclipse.wst.jsdt.core.dom.Type)"><CODE>FunctionDeclaration.setReturnType2(Type)</CODE></A>, which accepts <code>null</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#setSuperclass(org.eclipse.wst.jsdt.core.dom.Name)">org.eclipse.wst.jsdt.core.dom.TypeDeclaration.setSuperclass(Name)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#setSuperclassType(org.eclipse.wst.jsdt.core.dom.Type)"><CODE>TypeDeclaration.setSuperclassType(Type)</CODE></A>, which expects a
- <code>Type</code> instead of a <code>Name</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclarationStatement.html#setTypeDeclaration(org.eclipse.wst.jsdt.core.dom.TypeDeclaration)">org.eclipse.wst.jsdt.core.dom.TypeDeclarationStatement.setTypeDeclaration(TypeDeclaration)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclarationStatement.html#setDeclaration(org.eclipse.wst.jsdt.core.dom.AbstractTypeDeclaration)"><CODE>TypeDeclarationStatement.setDeclaration(AbstractTypeDeclaration)</CODE></A> which takes
- <code>AbstractTypeDeclaration</code> instead of
- <code>TypeDeclaration</code>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#superInterfaces()">org.eclipse.wst.jsdt.core.dom.TypeDeclaration.superInterfaces()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>In the JLS3 API, this method is replaced by
- <A HREF="org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#superInterfaceTypes()"><CODE>TypeDeclaration.superInterfaceTypes()</CODE></A>.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateCompilationUnitName(java.lang.String)">org.eclipse.wst.jsdt.core.JavaScriptConventions.validateCompilationUnitName(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateCompilationUnitName(java.lang.String, java.lang.String, java.lang.String)"><CODE>JavaScriptConventions.validateCompilationUnitName(String id, String sourceLevel, String complianceLevel)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateFieldName(java.lang.String)">org.eclipse.wst.jsdt.core.JavaScriptConventions.validateFieldName(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateFieldName(java.lang.String, java.lang.String, java.lang.String)"><CODE>JavaScriptConventions.validateFieldName(String id, String sourceLevel, String complianceLevel)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateFunctionName(java.lang.String)">org.eclipse.wst.jsdt.core.JavaScriptConventions.validateFunctionName(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateFunctionName(java.lang.String, java.lang.String, java.lang.String)"><CODE>JavaScriptConventions.validateFunctionName(String id, String sourceLevel, String complianceLevel)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateIdentifier(java.lang.String)">org.eclipse.wst.jsdt.core.JavaScriptConventions.validateIdentifier(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateIdentifier(java.lang.String, java.lang.String, java.lang.String)"><CODE>JavaScriptConventions.validateIdentifier(String id, String sourceLevel, String complianceLevel)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateJavaScriptTypeName(java.lang.String)">org.eclipse.wst.jsdt.core.JavaScriptConventions.validateJavaScriptTypeName(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateJavaScriptTypeName(java.lang.String, java.lang.String, java.lang.String)"><CODE>JavaScriptConventions.validateJavaScriptTypeName(String id, String sourceLevel, String complianceLevel)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validatePackageName(java.lang.String)">org.eclipse.wst.jsdt.core.JavaScriptConventions.validatePackageName(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validatePackageName(java.lang.String, java.lang.String, java.lang.String)"><CODE>JavaScriptConventions.validatePackageName(String id, String sourceLevel, String complianceLevel)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateTypeVariableName(java.lang.String)">org.eclipse.wst.jsdt.core.JavaScriptConventions.validateTypeVariableName(String)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Use <A HREF="org/eclipse/wst/jsdt/core/JavaScriptConventions.html#validateTypeVariableName(java.lang.String, java.lang.String, java.lang.String)"><CODE>JavaScriptConventions.validateTypeVariableName(String id, String sourceLevel, String complianceLevel)</CODE></A> instead</I>&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<P>
-<A NAME="constructor"><!-- --></A>
-<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
-<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
-<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
-<B>Deprecated Constructors</B></FONT></TH>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#AST()">org.eclipse.wst.jsdt.core.dom.AST()</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Clients should port their code to use the new JLS3 AST API and call
- <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newAST(int)"><CODE>AST.newAST(AST.JLS3)</CODE></A> instead of using this constructor.</I>&nbsp;</TD>
-</TR>
-<TR BGCOLOR="white" CLASS="TableRowColor">
-<TD><A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#AST(java.util.Map)">org.eclipse.wst.jsdt.core.dom.AST(Map)</A>
-<BR>
-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<I>Clients should port their code to use the new JLS3 AST API and call
- <A HREF="org/eclipse/wst/jsdt/core/dom/AST.html#newAST(int)"><CODE>AST.newAST(AST.JLS3)</CODE></A> instead of using this constructor.</I>&nbsp;</TD>
-</TR>
-</TABLE>
-&nbsp;
-<P>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Deprecated</B></FONT>&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?deprecated-list.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="deprecated-list.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/help-doc.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/help-doc.html
deleted file mode 100644
index 6abd661c..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/help-doc.html
+++ /dev/null
@@ -1,219 +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>
-API Help
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="API Help";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&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?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="help-doc.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>
-How This API Document Is Organized</H1>
-</CENTER>
-This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3>
-Overview</H3>
-<BLOCKQUOTE>
-
-<P>
-The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</BLOCKQUOTE>
-<H3>
-Package</H3>
-<BLOCKQUOTE>
-
-<P>
-Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL>
-<LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL>
-</BLOCKQUOTE>
-<H3>
-Class/Interface</H3>
-<BLOCKQUOTE>
-
-<P>
-Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL>
-<LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description
-<P>
-<LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary
-<P>
-<LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL>
-Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE>
-</BLOCKQUOTE>
-<H3>
-Annotation Type</H3>
-<BLOCKQUOTE>
-
-<P>
-Each annotation type has its own separate page with the following sections:<UL>
-<LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL>
-</BLOCKQUOTE>
-</BLOCKQUOTE>
-<H3>
-Enum</H3>
-<BLOCKQUOTE>
-
-<P>
-Each enum has its own separate page with the following sections:<UL>
-<LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL>
-</BLOCKQUOTE>
-<H3>
-Use</H3>
-<BLOCKQUOTE>
-Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</BLOCKQUOTE>
-<H3>
-Tree (Class Hierarchy)</H3>
-<BLOCKQUOTE>
-There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL>
-<LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL>
-</BLOCKQUOTE>
-<H3>
-Deprecated API</H3>
-<BLOCKQUOTE>
-The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE>
-<H3>
-Index</H3>
-<BLOCKQUOTE>
-The <A HREF="index-files/index-1.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE>
-<H3>
-Prev/Next</H3>
-These links take you to the next or previous class, interface, package, or related page.<H3>
-Frames/No Frames</H3>
-These links show and hide the HTML frames. All pages are available with or without frames.
-<P>
-<H3>
-Serialized Form</H3>
-Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
-<P>
-<H3>
-Constant Field Values</H3>
-The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.
-<P>
-<FONT SIZE="-1">
-<EM>
-This help file applies to API documentation generated using the standard doclet.</EM>
-</FONT>
-<BR>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&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?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="help-doc.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-1.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-1.html
deleted file mode 100644
index 1b3031e7..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-1.html
+++ /dev/null
@@ -1,1715 +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:15 CDT 2008 -->
-<TITLE>
-A-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="A-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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 LETTER&nbsp;
-&nbsp;<A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-1.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-1.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_A_"><!-- --></A><H2>
-<B>A</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#A"><B>A</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchMatch.html#A_ACCURATE"><B>A_ACCURATE</B></A> -
-Static variable in class 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>
-<DD>The search result corresponds an exact match of the search pattern.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchMatch.html#A_INACCURATE"><B>A_INACCURATE</B></A> -
-Static variable in class 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>
-<DD>The search result is potentially a match for the search pattern,
- but the search engine is unable to fully check it (for example, because
- there are errors in the code or the includepath are not correctly set).
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AACUTE_L"><B>AACUTE_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AACUTE_U"><B>AACUTE_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#ABBR"><B>ABBR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#ABORT"><B>ABORT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Possible configurable option value.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html#aboutToBuild(org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>aboutToBuild(IJavaScriptProject)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html" title="class in org.eclipse.wst.jsdt.core.compiler">ValidationParticipant</A>
-<DD>Notifies this participant that a validation is about to start and provides it the opportunity to
- create missing source folders for generated source files.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#ABSTRACT"><B>ABSTRACT</B></A> -
-Static variable in class 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>
-<DD>"abstract" modifier constant (bit mask).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#ABSTRACT"><B>ABSTRACT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementImageDescriptor</A>
-<DD>Flag to render the abstract adornment.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ABSTRACT_FUNCTION_DECLARATION"><B>ABSTRACT_FUNCTION_DECLARATION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html#ABSTRACT_KEYWORD"><B>ABSTRACT_KEYWORD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html" title="class in org.eclipse.wst.jsdt.core.dom">Modifier.ModifierKeyword</A>
-<DD>"abstract" modifier with flag value <A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#ABSTRACT"><CODE>Modifier.ABSTRACT</CODE></A>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ABSTRACT_VARIABLE_DECLARATION"><B>ABSTRACT_VARIABLE_DECLARATION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AbstractMethodCannotBeOverridden"><B>AbstractMethodCannotBeOverridden</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AbstractMethodInAbstractClass"><B>AbstractMethodInAbstractClass</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AbstractMethodMustBeImplemented"><B>AbstractMethodMustBeImplemented</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/AbstractProposalSorter.html" title="class in org.eclipse.wst.jsdt.ui.text.java"><B>AbstractProposalSorter</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/java/package-summary.html">org.eclipse.wst.jsdt.ui.text.java</A><DD>Abstract base class for sorters contributed to the
- <code>org.eclipse.wst.jsdt.ui.javaCompletionProposalSorters</code> extension point.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AbstractTypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>AbstractTypeDeclaration</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Abstract subclass for type declaration AST node types.<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_ABSTRACT"><B>ACC_ABSTRACT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_ANNOTATION"><B>ACC_ANNOTATION</B></A> -
-Static variable in interface 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>
-<DD>Indicates an annotation (added in J2SE 1.5).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_BRIDGE"><B>ACC_BRIDGE</B></A> -
-Static variable in interface 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>
-<DD>Indicates a bridge method (added in J2SE 1.5).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_ENUM"><B>ACC_ENUM</B></A> -
-Static variable in interface 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>
-<DD>Indicates an enum (added in J2SE 1.5).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_FINAL"><B>ACC_FINAL</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_INTERFACE"><B>ACC_INTERFACE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_NATIVE"><B>ACC_NATIVE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_PRIVATE"><B>ACC_PRIVATE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_PROTECTED"><B>ACC_PROTECTED</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_PUBLIC"><B>ACC_PUBLIC</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_STATIC"><B>ACC_STATIC</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_STRICT"><B>ACC_STRICT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_SUPER"><B>ACC_SUPER</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_SYNCHRONIZED"><B>ACC_SYNCHRONIZED</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_SYNTHETIC"><B>ACC_SYNTHETIC</B></A> -
-Static variable in interface 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>
-<DD>Indicates a synthetic member.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_TRANSIENT"><B>ACC_TRANSIENT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_VARARGS"><B>ACC_VARARGS</B></A> -
-Static variable in interface 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>
-<DD>Indicates a variable arity method (added in J2SE 1.5).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/util/IModifierConstants.html#ACC_VOLATILE"><B>ACC_VOLATILE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccAbstract"><B>AccAbstract</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Abstract property flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccAnnotation"><B>AccAnnotation</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccBridge"><B>AccBridge</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccDefault"><B>AccDefault</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Constant representing the absence of any flag
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccDeprecated"><B>AccDeprecated</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Deprecated property flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccEnum"><B>AccEnum</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><B>accept(CompletionProposal)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core">CompletionRequestor</A>
-<DD>Proposes a completion.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#accept(org.eclipse.wst.jsdt.core.dom.ASTVisitor)"><B>accept(ASTVisitor)</B></A> -
-Method in class 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>
-<DD>Accepts the given visitor on a visit of the current node.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><B>accept(CompletionProposal)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalCollector</A>
-<DD>Proposes a completion.
-
- Subclasses may replace, but usually should not need to.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptAnonymousType(char[], char[], char[][], char[][], char[][], char[], int, int, int, int)"><B>acceptAnonymousType(char[], char[], char[][], char[][], char[][], char[], int, int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTRequestor.html#acceptAST(org.eclipse.wst.jsdt.core.IJavaScriptUnit, org.eclipse.wst.jsdt.core.dom.JavaScriptUnit)"><B>acceptAST(IJavaScriptUnit, JavaScriptUnit)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTRequestor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTRequestor</A>
-<DD>Accepts an AST corresponding to the javaScript unit.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTRequestor.html#acceptBinding(java.lang.String, org.eclipse.wst.jsdt.core.dom.IBinding)"><B>acceptBinding(String, IBinding)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTRequestor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTRequestor</A>
-<DD>Accepts a binding corresponding to the binding key.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptClass(char[], char[], char[], int, int, int, int)"><B>acceptClass(char[], char[], char[], int, int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html#acceptClass(char[], char[], char[], int, int, int)"><B>acceptClass(char[], char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICorrectionRequestor</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#acceptClassFiles(byte[][], java.lang.String[][], java.lang.String)"><B>acceptClassFiles(byte[][], String[][], String)</B></A> -
-Method in interface 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>
-<DD>Sends the given class files to the target and loads them.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#acceptContext(org.eclipse.wst.jsdt.core.CompletionContext)"><B>acceptContext(CompletionContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core">CompletionRequestor</A>
-<DD>Propose the context in which the completion occurs.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html#acceptContext(org.eclipse.wst.jsdt.core.CompletionContext)"><B>acceptContext(CompletionContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalCollector</A>
-<DD>Propose the context in which the completion occurs.
-
- Subclasses may extend, but usually should not need to.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptError(org.eclipse.wst.jsdt.core.compiler.IProblem)"><B>acceptError(IProblem)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#completionFailure(org.eclipse.wst.jsdt.core.compiler.IProblem)"><CODE>CompletionRequestor.completionFailure(IProblem)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptField(char[], char[], char[], char[], char[], char[], int, int, int, int)"><B>acceptField(char[], char[], char[], char[], char[], char[], int, int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html#acceptField(char[], char[], char[], char[], char[], char[], int, int, int)"><B>acceptField(char[], char[], char[], char[], char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICorrectionRequestor</A>
-<DD>Notification of a field/var correction.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptInterface(char[], char[], char[], int, int, int, int)"><B>acceptInterface(char[], char[], char[], int, int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html#acceptInterface(char[], char[], char[], int, int, int)"><B>acceptInterface(char[], char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICorrectionRequestor</A>
-<DD>Notification of an interface correction.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptKeyword(char[], int, int, int)"><B>acceptKeyword(char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptLabel(char[], int, int, int)"><B>acceptLabel(char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptLocalVariable(char[], char[], char[], int, int, int, int)"><B>acceptLocalVariable(char[], char[], char[], int, int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html#acceptLocalVariable(char[], char[], char[], int, int, int)"><B>acceptLocalVariable(char[], char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICorrectionRequestor</A>
-<DD>Notification of a local variable correction.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptMethod(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)"><B>acceptMethod(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html#acceptMethod(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int)"><B>acceptMethod(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICorrectionRequestor</A>
-<DD>Notification of a method correction.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptMethodDeclaration(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)"><B>acceptMethodDeclaration(char[], char[], char[], char[][], char[][], char[][], char[], char[], char[], int, int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptModifier(char[], int, int, int)"><B>acceptModifier(char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptPackage(char[], char[], int, int, int)"><B>acceptPackage(char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html#acceptPackage(char[], char[], int, int)"><B>acceptPackage(char[], char[], int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICorrectionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICorrectionRequestor</A>
-<DD>Notification of a package correction.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/ASTVisitor.html#acceptProblem(org.eclipse.wst.jsdt.core.compiler.IProblem)"><B>acceptProblem(IProblem)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.ast">ASTVisitor</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#acceptProblem(IMarker, java.lang.String, int)"><B>acceptProblem(IMarker, String, int)</B></A> -
-Method in interface 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>
-<DD>Notifies of an evaluation problem.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IProblemRequestor.html#acceptProblem(org.eclipse.wst.jsdt.core.compiler.IProblem)"><B>acceptProblem(IProblem)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IProblemRequestor.html" title="interface in org.eclipse.wst.jsdt.core">IProblemRequestor</A>
-<DD>Notification of a JavaScript problem.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchRequestor.html#acceptSearchMatch(org.eclipse.wst.jsdt.core.search.SearchMatch)"><B>acceptSearchMatch(SearchMatch)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchRequestor.html" title="class in org.eclipse.wst.jsdt.core.search">SearchRequestor</A>
-<DD>Accepts the given search match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptType(char[], char[], char[], int, int, int)"><B>acceptType(char[], char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/TypeNameRequestor.html#acceptType(int, char[], char[], char[][], java.lang.String)"><B>acceptType(int, char[], char[], char[][], String)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/TypeNameRequestor.html" title="class in org.eclipse.wst.jsdt.core.search">TypeNameRequestor</A>
-<DD>Accepts a top-level or a member type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/TypeNameMatchRequestor.html#acceptTypeNameMatch(org.eclipse.wst.jsdt.core.search.TypeNameMatch)"><B>acceptTypeNameMatch(TypeNameMatch)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/TypeNameMatchRequestor.html" title="class in org.eclipse.wst.jsdt.core.search">TypeNameMatchRequestor</A>
-<DD>Accepts a type name match (<A HREF="../org/eclipse/wst/jsdt/core/search/TypeNameMatch.html" title="class in org.eclipse.wst.jsdt.core.search"><CODE>TypeNameMatch</CODE></A>) which contains top-level or a member type
- information as package name, enclosing types names, simple type name, modifiers, etc.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html#acceptVariableName(char[], char[], char[], char[], int, int, int)"><B>acceptVariableName(char[], char[], char[], char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICompletionRequestor.html" title="interface in org.eclipse.wst.jsdt.core">ICompletionRequestor</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#accept(org.eclipse.wst.jsdt.core.CompletionProposal)"><CODE>CompletionRequestor.accept(CompletionProposal)</CODE></A> instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccFinal"><B>AccFinal</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccInterface"><B>AccInterface</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Interface property flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccNative"><B>AccNative</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccPrivate"><B>AccPrivate</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Private access flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccProtected"><B>AccProtected</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Protected access flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccPublic"><B>AccPublic</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Public access flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccStatic"><B>AccStatic</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Static access flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccStrictfp"><B>AccStrictfp</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Strictfp property flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccSuper"><B>AccSuper</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>Super property flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccSynchronized"><B>AccSynchronized</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccSynthetic"><B>AccSynthetic</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccTransient"><B>AccTransient</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccVarargs"><B>AccVarargs</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>=
- Varargs method property
- Used to flag variable arity method declarations.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Flags.html#AccVolatile"><B>AccVolatile</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Flags.html" title="class in org.eclipse.wst.jsdt.core">Flags</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ACIRC_L"><B>ACIRC_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ACIRC_U"><B>ACIRC_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#ACRONYM"><B>ACRONYM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ACUTE"><B>ACUTE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IRegion.html#add(org.eclipse.wst.jsdt.core.IJavaScriptElement)"><B>add(IJavaScriptElement)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IRegion.html" title="interface in org.eclipse.wst.jsdt.core">IRegion</A>
-<DD>Adds the given element and all of its descendents to this region.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html#addAdapter(INodeAdapter)"><B>addAdapter(INodeAdapter)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#addAttribute(char[], org.eclipse.wst.jsdt.core.ast.IASTNode)"><B>addAttribute(char[], IASTNode)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>Add a new inferred attribute to the inferred type
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#addAttribute(org.eclipse.wst.jsdt.core.infer.InferredAttribute)"><B>addAttribute(InferredAttribute)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>Add an InferredAttribute to this inferred type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html#addBufferChangedListener(org.eclipse.wst.jsdt.core.IBufferChangedListener)"><B>addBufferChangedListener(IBufferChangedListener)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html" title="interface in org.eclipse.wst.jsdt.core">IBuffer</A>
-<DD>Adds the given listener for changes to this buffer.
-<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/EntryResult.html#addDocumentName(java.lang.String)"><B>addDocumentName(String)</B></A> -
-Method in class org.eclipse.wst.jsdt.internal.core.index.<A HREF="../org/eclipse/wst/jsdt/internal/core/index/EntryResult.html" title="class in org.eclipse.wst.jsdt.internal.core.index">EntryResult</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/EntryResult.html#addDocumentTable(org.eclipse.wst.jsdt.internal.compiler.util.HashtableOfObject)"><B>addDocumentTable(HashtableOfObject)</B></A> -
-Method in class org.eclipse.wst.jsdt.internal.core.index.<A HREF="../org/eclipse/wst/jsdt/internal/core/index/EntryResult.html" title="class in org.eclipse.wst.jsdt.internal.core.index">EntryResult</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#ADDED"><B>ADDED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElementDelta</A>
-<DD>Status constant indicating that the element has been added.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html#addElement(org.eclipse.wst.jsdt.core.IJavaScriptElement)"><B>addElement(IJavaScriptElement)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#addElementChangedListener(org.eclipse.wst.jsdt.core.IElementChangedListener)"><B>addElementChangedListener(IElementChangedListener)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Adds the given listener for changes to JavaScript elements.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#addElementChangedListener(org.eclipse.wst.jsdt.core.IElementChangedListener, int)"><B>addElementChangedListener(IElementChangedListener, int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Adds the given listener for changes to JavaScript elements.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IScriptFileDeclaration.html#addImport(char[], int, int, int)"><B>addImport(char[], int, int, int)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IScriptFileDeclaration.html" title="interface in org.eclipse.wst.jsdt.core.ast">IScriptFileDeclaration</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImport(org.eclipse.wst.jsdt.core.dom.ITypeBinding)"><B>addImport(ITypeBinding)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a type reference that can be used
- in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImport(org.eclipse.wst.jsdt.core.dom.ITypeBinding, org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext)"><B>addImport(ITypeBinding, ImportRewrite.ImportRewriteContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a type reference that can be used
- in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImport(org.eclipse.wst.jsdt.core.dom.ITypeBinding, org.eclipse.wst.jsdt.core.dom.AST)"><B>addImport(ITypeBinding, AST)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a <A HREF="../org/eclipse/wst/jsdt/core/dom/Type.html" title="class in org.eclipse.wst.jsdt.core.dom"><CODE>Type</CODE></A> that can be used
- in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImport(org.eclipse.wst.jsdt.core.dom.ITypeBinding, org.eclipse.wst.jsdt.core.dom.AST, org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext)"><B>addImport(ITypeBinding, AST, ImportRewrite.ImportRewriteContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a <A HREF="../org/eclipse/wst/jsdt/core/dom/Type.html" title="class in org.eclipse.wst.jsdt.core.dom"><CODE>Type</CODE></A> that can be used
- in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImport(java.lang.String, java.lang.String, org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext)"><B>addImport(String, String, ImportRewrite.ImportRewriteContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a type reference that can be used
- in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImport(java.lang.String)"><B>addImport(String)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a type reference that can be used
- in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html#addImport(java.lang.String)"><B>addImport(String)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage.ImportsManager</A>
-<DD>Adds a new import declaration that is sorted in the existing imports.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html#addImport(org.eclipse.wst.jsdt.core.dom.ITypeBinding)"><B>addImport(ITypeBinding)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage.ImportsManager</A>
-<DD>Adds a new import declaration that is sorted in the existing imports.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImportFromSignature(java.lang.String, org.eclipse.wst.jsdt.core.dom.AST)"><B>addImportFromSignature(String, AST)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a <A HREF="../org/eclipse/wst/jsdt/core/dom/Type.html" title="class in org.eclipse.wst.jsdt.core.dom"><CODE>Type</CODE></A> node that can be used
- in the code as a reference to the type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addImportFromSignature(java.lang.String, org.eclipse.wst.jsdt.core.dom.AST, org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext)"><B>addImportFromSignature(String, AST, ImportRewrite.ImportRewriteContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new import to the rewriter's record and returns a <A HREF="../org/eclipse/wst/jsdt/core/dom/Type.html" title="class in org.eclipse.wst.jsdt.core.dom"><CODE>Type</CODE></A> node that can be used
- in the code as a reference to the type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchDocument.html#addIndexEntry(char[], char[])"><B>addIndexEntry(char[], char[])</B></A> -
-Method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchDocument.html" title="class in org.eclipse.wst.jsdt.core.search">SearchDocument</A>
-<DD>Adds the given index entry (category and key) coming from this
- document to the index.
-<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html#addIndexEntry(char[], char[], java.lang.String)"><B>addIndexEntry(char[], char[], String)</B></A> -
-Method in class org.eclipse.wst.jsdt.internal.core.index.<A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html" title="class in org.eclipse.wst.jsdt.internal.core.index">Index</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#addJavaScriptElementMarkerAttributes(java.util.Map, org.eclipse.wst.jsdt.core.IJavaScriptElement)"><B>addJavaScriptElementMarkerAttributes(Map, IJavaScriptElement)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Configures the given marker attribute map for the given JavaScript element.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html#addJsNature(IProject, IProgressMonitor)"><B>addJsNature(IProject, IProgressMonitor)</B></A> -
-Static method in class org.eclipse.wst.jsdt.ui.project.<A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html" title="class in org.eclipse.wst.jsdt.ui.project">JsNature</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchSupport.html#addJspFile(IFile)"><B>addJspFile(IFile)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>schedules a search document representing this JSP file for indexing (by
- the java indexer)
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html#addListener(ILabelProviderListener)"><B>addListener(ILabelProviderListener)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">OverrideIndicatorLabelDecorator</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html#addListener(ILabelProviderListener)"><B>addListener(ILabelProviderListener)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">ProblemsLabelDecorator</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#addMethod(char[], org.eclipse.wst.jsdt.core.ast.IFunctionDeclaration, boolean)"><B>addMethod(char[], IFunctionDeclaration, boolean)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>Add a new method to the inferred type
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html#addPath(java.lang.String)"><B>addPath(String)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#addPreProcessingResourceChangedListener(IResourceChangeListener, int)"><B>addPreProcessingResourceChangedListener(IResourceChangeListener, int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Adds the given listener for resource change events of the given types to the JavaScript core.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#ADDRESS"><B>ADDRESS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addStaticImport(org.eclipse.wst.jsdt.core.dom.IBinding)"><B>addStaticImport(IBinding)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new static import to the rewriter's record and returns a reference that can be used in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addStaticImport(org.eclipse.wst.jsdt.core.dom.IBinding, org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext)"><B>addStaticImport(IBinding, ImportRewrite.ImportRewriteContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new static import to the rewriter's record and returns a reference that can be used in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addStaticImport(java.lang.String, java.lang.String, boolean)"><B>addStaticImport(String, String, boolean)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new static import to the rewriter's record and returns a reference that can be used in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#addStaticImport(java.lang.String, java.lang.String, boolean, org.eclipse.wst.jsdt.core.dom.rewrite.ImportRewrite.ImportRewriteContext)"><B>addStaticImport(String, String, boolean, ImportRewrite.ImportRewriteContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
-<DD>Adds a new static import to the rewriter's record and returns a reference that can be used in the code.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html#addStaticImport(java.lang.String, java.lang.String, boolean)"><B>addStaticImport(String, String, boolean)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage.ImportsManager</A>
-<DD>Adds a new import declaration for a static type that is sorted in the existing imports.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html#addSuperInterface(java.lang.String)"><B>addSuperInterface(String)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A>
-<DD>Adds a super interface to the end of the list and selects it if it is not in the list yet.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ITypeHierarchy.html#addTypeHierarchyChangedListener(org.eclipse.wst.jsdt.core.ITypeHierarchyChangedListener)"><B>addTypeHierarchyChangedListener(ITypeHierarchyChangedListener)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ITypeHierarchy.html" title="interface in org.eclipse.wst.jsdt.core">ITypeHierarchy</A>
-<DD>Adds the given listener for changes to this type hierarchy.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AELIG_L"><B>AELIG_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AELIG_U"><B>AELIG_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html#affectsTextPresentation(PropertyChangeEvent)"><B>affectsTextPresentation(PropertyChangeEvent)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptSourceViewerConfiguration</A>
-<DD>Determines whether the preference change encoded by the given event
- changes the behavior of one of its contained components.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AGRAVE_L"><B>AGRAVE_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AGRAVE_U"><B>AGRAVE_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ALEFSYM"><B>ALEFSYM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ALL_CATEGORY"><B>ALL_CATEGORY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Show category for all elements.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ALL_DEFAULT"><B>ALL_DEFAULT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Default options (M_PARAMETER_TYPES, M_APP_TYPE_PARAMETERS & T_TYPE_PARAMETERS enabled)
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ALL_FULLY_QUALIFIED"><B>ALL_FULLY_QUALIFIED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Qualify all elements
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#ALL_OCCURRENCES"><B>ALL_OCCURRENCES</B></A> -
-Static variable in interface 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>
-<DD>The search result is a declaration, a reference, or an implementer
- of an interface.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#ALL_POST_QUALIFIED"><B>ALL_POST_QUALIFIED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Post qualify all elements
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ALLOCATION_EXPRESSION"><B>ALLOCATION_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html#allowAttachJsDoc()"><B>allowAttachJsDoc()</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html" title="interface in org.eclipse.wst.jsdt.core">IJsGlobalScopeContainerInitializer</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#allowAttachJsDoc()"><B>allowAttachJsDoc()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#allVariables()"><B>allVariables()</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
-<DD>Returns the global variables declared in this evaluation context.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ALPHA_L"><B>ALPHA_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ALPHA_U"><B>ALPHA_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousConstructor"><B>AmbiguousConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousConstructorInDefaultConstructor"><B>AmbiguousConstructorInDefaultConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousConstructorInImplicitConstructorCall"><B>AmbiguousConstructorInImplicitConstructorCall</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousField"><B>AmbiguousField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousMethod"><B>AmbiguousMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><B>AmbiguousType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AMP"><B>AMP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#AND"><B>AND</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>AND "&amp;" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AND"><B>AND</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#AND_AND_EXPRESSION"><B>AND_AND_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ANG"><B>ANG</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ANNOTATION"><B>ANNOTATION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#ANNOTATION_ATTRIBUTE_REF"><B>ANNOTATION_ATTRIBUTE_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/CodeGeneration.html#ANNOTATION_BODY_TEMPLATE_ID"><B>ANNOTATION_BODY_TEMPLATE_ID</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/CodeGeneration.html" title="class in org.eclipse.wst.jsdt.ui">CodeGeneration</A>
-<DD>Constant ID for the type kind to be used in <A HREF="../org/eclipse/wst/jsdt/ui/CodeGeneration.html#getTypeBody(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptUnit, java.lang.String, java.lang.String)"><CODE>CodeGeneration.getTypeBody(String, IJavaScriptUnit, String, String)</CODE></A> to get the code template used
- for a new annotation type body.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ANNOTATION_FUNCTION_DECLARATION"><B>ANNOTATION_FUNCTION_DECLARATION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#ANNOTATION_TYPE"><B>ANNOTATION_TYPE</B></A> -
-Static variable in interface 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>
-<DD>The searched element is an annotation type.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html#ANNOTATION_TYPE"><B>ANNOTATION_TYPE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A>
-<DD>Constant to signal that the created type is an annotation.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationCannotOverrideMethod"><B>AnnotationCannotOverrideMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationCircularity"><B>AnnotationCircularity</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationCircularitySelfReference"><B>AnnotationCircularitySelfReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationFieldNeedConstantInitialization"><B>AnnotationFieldNeedConstantInitialization</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationMembersCannotHaveParameters"><B>AnnotationMembersCannotHaveParameters</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationMembersCannotHaveTypeParameters"><B>AnnotationMembersCannotHaveTypeParameters</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html#annotations()"><B>annotations()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">PackageDeclaration</A>
-<DD>Returns the live ordered list of annotations of this
- package declaration (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeDeclarationCannotHaveConstructor"><B>AnnotationTypeDeclarationCannotHaveConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeDeclarationCannotHaveSuperclass"><B>AnnotationTypeDeclarationCannotHaveSuperclass</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeDeclarationCannotHaveSuperinterfaces"><B>AnnotationTypeDeclarationCannotHaveSuperinterfaces</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationTypeUsedAsSuperInterface"><B>AnnotationTypeUsedAsSuperInterface</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeAnEnumConstant"><B>AnnotationValueMustBeAnEnumConstant</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeAnnotation"><B>AnnotationValueMustBeAnnotation</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeArrayInitializer"><B>AnnotationValueMustBeArrayInitializer</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeClassLiteral"><B>AnnotationValueMustBeClassLiteral</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnnotationValueMustBeConstant"><B>AnnotationValueMustBeConstant</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#ANONYMOUS_CLASS_DECLARATION"><B>ANONYMOUS_CLASS_DECLARATION</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a declaration of an anonymous class.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ANONYMOUS_CLASS_DECLARATION"><B>ANONYMOUS_CLASS_DECLARATION</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>AnonymousClassDeclaration</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#ANONYMOUS_CLASS_DECLARATION_PROPERTY"><B>ANONYMOUS_CLASS_DECLARATION_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ClassInstanceCreation</A>
-<DD>The "anonymousClassDeclaration" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html#ANONYMOUS_CLASS_ID"><B>ANONYMOUS_CLASS_ID</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer">InferEngine</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html#ANONYMOUS_PREFIX"><B>ANONYMOUS_PREFIX</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer">InferEngine</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AnonymousClassCannotExtendFinalClass"><B>AnonymousClassCannotExtendFinalClass</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AnonymousClassDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>AnonymousClassDeclaration</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Anonymous class declaration AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#ANY"><B>ANY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html#ANY_CODE"><B>ANY_CODE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType</A>
-<DD>Type code for the primitive type "any".
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#apiLevel()"><B>apiLevel()</B></A> -
-Method in class 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>
-<DD>Return the API level supported by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_CATEGORY"><B>APPEARANCE_CATEGORY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls category rendering of JavaScript elements in the UI.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_COMPRESS_PACKAGE_NAMES"><B>APPEARANCE_COMPRESS_PACKAGE_NAMES</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls if package name compression is turned on or off.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER"><B>APPEARANCE_ENABLE_VISIBILITY_SORT_ORDER</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preferences that controls if JavaScript elements are also sorted by
- visibility.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER"><B>APPEARANCE_FOLD_PACKAGES_IN_PACKAGE_EXPLORER</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls if empty inner packages are folded in
- the hierarchical mode of the package explorer.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_JAVADOC_FONT"><B>APPEARANCE_JAVADOC_FONT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>The symbolic font name for the font used to display Javadoc
- (value <code>"org.eclipse.wst.jsdt.ui.javadocfont"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_MEMBER_SORT_ORDER"><B>APPEARANCE_MEMBER_SORT_ORDER</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that defines how member elements are ordered by the
- JavaScript views using the <code>JavaElementSorter</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_METHOD_RETURNTYPE"><B>APPEARANCE_METHOD_RETURNTYPE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls return type rendering of methods in the UI.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_METHOD_TYPEPARAMETERS"><B>APPEARANCE_METHOD_TYPEPARAMETERS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls type parameter rendering of methods in the UI.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW"><B>APPEARANCE_PKG_NAME_PATTERN_FOR_PKG_VIEW</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that defines the pattern used for package name compression.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#APPEARANCE_VISIBILITY_SORT_ORDER"><B>APPEARANCE_VISIBILITY_SORT_ORDER</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that defines how member elements are ordered by visibility in the
- JavaScript views using the <code>JavaElementSorter</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#append(char[], char)"><B>append(char[], char)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers a new array with appending the suffix character at the end of the array.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#append(char[], int, char[], int, int)"><B>append(char[], int, char[], int, int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Append the given subarray to the target array starting at the given index in the target array.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html#append(char[])"><B>append(char[])</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html" title="interface in org.eclipse.wst.jsdt.core">IBuffer</A>
-<DD>Appends the given character array to the contents of the buffer.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html#append(java.lang.String)"><B>append(String)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html" title="interface in org.eclipse.wst.jsdt.core">IBuffer</A>
-<DD>Appends the given string to the contents of the buffer.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#APPEND_ROOT_PATH"><B>APPEND_ROOT_PATH</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Add root path to all elements except Package Fragment Roots and JavaScript projects.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#APPLET"><B>APPLET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html#APPLICATION_LIBRARIES"><B>APPLICATION_LIBRARIES</B></A> -
-Static variable in interface 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>
-<DD>Include type constant (bit mask) indicating that application libraries should be considered in the search scope.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html#appliesTo"><B>appliesTo</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer">InferEngine</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/IDocumentationReader.html#appliesTo(org.eclipse.wst.jsdt.core.IMember)"><B>appliesTo(IMember)</B></A> -
-Method in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IDocumentationReader.html" title="interface in org.eclipse.wst.jsdt.ui">IDocumentationReader</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/DefaultInferrenceProvider.html#applysTo(org.eclipse.wst.jsdt.core.infer.IInferenceFile)"><B>applysTo(IInferenceFile)</B></A> -
-Method in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html#applysTo(org.eclipse.wst.jsdt.core.infer.IInferenceFile)"><B>applysTo(IInferenceFile)</B></A> -
-Method in interface 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>
-<DD>Determine if this inference provider applies to a script
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#AREA"><B>AREA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARGUMENT"><B>ARGUMENT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentHidingField"><B>ArgumentHidingField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentHidingLocalVariable"><B>ArgumentHidingLocalVariable</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentIsNeverUsed"><B>ArgumentIsNeverUsed</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#arguments()"><B>arguments()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ClassInstanceCreation</A>
-<DD>Returns the live ordered list of argument expressions in this class
- instance creation expression.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html#arguments()"><B>arguments()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">ConstructorInvocation</A>
-<DD>Returns the live ordered list of argument expressions in this alternate
- constructor invocation statement.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html#arguments()"><B>arguments()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionInvocation</A>
-<DD>Returns the live ordered list of argument expressions in this method
- invocation expression.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html#arguments()"><B>arguments()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperConstructorInvocation</A>
-<DD>Returns the live ordered list of argument expressions in this super
- constructor invocation statement.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html#arguments()"><B>arguments()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperMethodInvocation</A>
-<DD>Returns the live ordered list of argument expressions in this
- "super" method invocation expression.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#ARGUMENTS"><B>ARGUMENTS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelMarker</A>
-<DD>Id marker attribute (value <code>"arguments"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#ARGUMENTS_PROPERTY"><B>ARGUMENTS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ClassInstanceCreation</A>
-<DD>The "arguments" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html#ARGUMENTS_PROPERTY"><B>ARGUMENTS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">ConstructorInvocation</A>
-<DD>The "arguments" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html#ARGUMENTS_PROPERTY"><B>ARGUMENTS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionInvocation</A>
-<DD>The "arguments" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html#ARGUMENTS_PROPERTY"><B>ARGUMENTS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperConstructorInvocation</A>
-<DD>The "arguments" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html#ARGUMENTS_PROPERTY"><B>ARGUMENTS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperMethodInvocation</A>
-<DD>The "arguments" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeAmbiguous"><B>ArgumentTypeAmbiguous</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AmbiguousType"><CODE>IProblem.AmbiguousType</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeCannotBeVoid"><B>ArgumentTypeCannotBeVoid</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeCannotBeVoidArray"><B>ArgumentTypeCannotBeVoidArray</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotAllocateVoidArray"><CODE>IProblem.CannotAllocateVoidArray</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeInheritedNameHidesEnclosingName"><B>ArgumentTypeInheritedNameHidesEnclosingName</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#InheritedTypeHidesEnclosingName"><CODE>IProblem.InheritedTypeHidesEnclosingName</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeInternalNameProvided"><B>ArgumentTypeInternalNameProvided</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#InternalTypeNameProvided"><CODE>IProblem.InternalTypeNameProvided</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeNotFound"><B>ArgumentTypeNotFound</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#UndefinedType"><CODE>IProblem.UndefinedType</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArgumentTypeNotVisible"><B>ArgumentTypeNotVisible</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><CODE>IProblem.NotVisibleType</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ARING_L"><B>ARING_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ARING_U"><B>ARING_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_ACCESS"><B>ARRAY_ACCESS</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>ArrayAccess</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_ALLOCATION_EXPRESSION"><B>ARRAY_ALLOCATION_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_CREATION"><B>ARRAY_CREATION</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>ArrayCreation</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_INITIALIZER"><B>ARRAY_INITIALIZER</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_INITIALIZER"><B>ARRAY_INITIALIZER</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>ArrayInitializer</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#ARRAY_NAME"><B>ARRAY_NAME</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayAccess.html#ARRAY_PROPERTY"><B>ARRAY_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayAccess</A>
-<DD>The "array" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_QUALIFIED_TYPE_REFERENCE"><B>ARRAY_QUALIFIED_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_REFERENCE"><B>ARRAY_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ARRAY_TYPE"><B>ARRAY_TYPE</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>ArrayType</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ARRAY_TYPE_REFERENCE"><B>ARRAY_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#ARRAY_TYPE_SIGNATURE"><B>ARRAY_TYPE_SIGNATURE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
-<DD>Kind constant for an array type signature.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayAccess.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ArrayAccess</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Array access expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#arrayConcat(char[][], char[][])"><B>arrayConcat(char[][], char[][])</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers the concatenation of the two arrays.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#arrayConcat(char[][], char[])"><B>arrayConcat(char[][], char[])</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers a new array adding the second array at the end of first array.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArrayConstantsOnlyInArrayInitializers"><B>ArrayConstantsOnlyInArrayInitializers</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayCreation.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ArrayCreation</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Array creation expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayInitializer.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ArrayInitializer</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Array initializer AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ArrayReferenceRequired"><B>ArrayReferenceRequired</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayType.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ArrayType</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Type node for an array type.<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html#ArrayType"><B>ArrayType</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer">InferEngine</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ASSERT_STATEMENT"><B>ASSERT_STATEMENT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ASSERT_STATEMENT"><B>ASSERT_STATEMENT</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AssertStatement.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>AssertStatement</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Assert statement AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html#ASSIGN"><B>ASSIGN</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment.Operator</A>
-<DD>= operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#ASSIGNMENT"><B>ASSIGNMENT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>Assignment</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Assignment expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ASSIGNMENT"><B>ASSIGNMENT</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>Assignment</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>Assignment.Operator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Assignment operators (typesafe enumeration).<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#AssignmentHasNoEffect"><B>AssignmentHasNoEffect</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>AST</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Umbrella owner and abstract syntax tree node factory.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#AST()"><B>AST()</B></A> -
-Constructor for class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Clients should port their code to use the new JLS3 AST API and call
- <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newAST(int)"><CODE>AST.newAST(AST.JLS3)</CODE></A> instead of using this constructor.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#AST(java.util.Map)"><B>AST(Map)</B></A> -
-Constructor for class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Clients should port their code to use the new JLS3 AST API and call
- <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newAST(int)"><CODE>AST.newAST(AST.JLS3)</CODE></A> instead of using this constructor.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#AST_NODE"><B>AST_NODE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ASTMatcher</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Concrete superclass and default implementation of an AST subtree matcher.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#ASTMatcher()"><B>ASTMatcher()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Creates a new AST matcher instance.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#ASTMatcher(boolean)"><B>ASTMatcher(boolean)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Creates a new AST matcher instance.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ASTNode</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Abstract superclass of all Abstract Syntax Tree (AST) node types.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ASTParser</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>A JavaScript language parser for creating abstract syntax trees (ASTs).<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTRequestor.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ASTRequestor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>An AST requestor handles ASTs for javaScript units passed to
- <code>ASTParser.createASTs</code>.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite"><B>ASTRewrite</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/package-summary.html">org.eclipse.wst.jsdt.core.dom.rewrite</A><DD>Infrastructure for modifying code by describing changes to AST nodes.<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.ast"><B>ASTVisitor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/ast/package-summary.html">org.eclipse.wst.jsdt.core.ast</A><DD>A visitor for iterating through the AST Node tree.<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/ASTVisitor.html#ASTVisitor()"><B>ASTVisitor()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.ast">ASTVisitor</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ASTVisitor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>A visitor for abstract syntax trees.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html#ASTVisitor()"><B>ASTVisitor()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTVisitor</A>
-<DD>Creates a new AST visitor instance.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html#ASTVisitor(boolean)"><B>ASTVisitor(boolean)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTVisitor</A>
-<DD>Creates a new AST visitor instance.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ASYMP"><B>ASYMP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ATILDE_L"><B>ATILDE_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ATILDE_U"><B>ATILDE_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#attachSource(IPath, IPath, IProgressMonitor)"><B>attachSource(IPath, IPath, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ABBR"><B>ATTR_NAME_ABBR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACCEPT"><B>ATTR_NAME_ACCEPT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACCEPT_CHARSET"><B>ATTR_NAME_ACCEPT_CHARSET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACCESSKEY"><B>ATTR_NAME_ACCESSKEY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ACTION"><B>ATTR_NAME_ACTION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ALIGN"><B>ATTR_NAME_ALIGN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ALINK"><B>ATTR_NAME_ALINK</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ALT"><B>ATTR_NAME_ALT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ARCHIVE"><B>ATTR_NAME_ARCHIVE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AUTOPLAY"><B>ATTR_NAME_AUTOPLAY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AUTOSIZE"><B>ATTR_NAME_AUTOSIZE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AUTOSTART"><B>ATTR_NAME_AUTOSTART</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_AXIS"><B>ATTR_NAME_AXIS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BACKGROUND"><B>ATTR_NAME_BACKGROUND</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BEHAVIOR"><B>ATTR_NAME_BEHAVIOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BGCOLOR"><B>ATTR_NAME_BGCOLOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BORDER"><B>ATTR_NAME_BORDER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BORDERCOLOR"><B>ATTR_NAME_BORDERCOLOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_BOTTOMMARGIN"><B>ATTR_NAME_BOTTOMMARGIN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CELLPADDING"><B>ATTR_NAME_CELLPADDING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CELLSPACING"><B>ATTR_NAME_CELLSPACING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CGI"><B>ATTR_NAME_CGI</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHAR"><B>ATTR_NAME_CHAR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHAROFF"><B>ATTR_NAME_CHAROFF</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHARSET"><B>ATTR_NAME_CHARSET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CHECKED"><B>ATTR_NAME_CHECKED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CITE"><B>ATTR_NAME_CITE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CLASS"><B>ATTR_NAME_CLASS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CLASSID"><B>ATTR_NAME_CLASSID</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CLEAR"><B>ATTR_NAME_CLEAR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CMD"><B>ATTR_NAME_CMD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CODE"><B>ATTR_NAME_CODE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CODEBASE"><B>ATTR_NAME_CODEBASE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CODETYPE"><B>ATTR_NAME_CODETYPE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COLOR"><B>ATTR_NAME_COLOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COLS"><B>ATTR_NAME_COLS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COLSPAN"><B>ATTR_NAME_COLSPAN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COMPACT"><B>ATTR_NAME_COMPACT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CONTENT"><B>ATTR_NAME_CONTENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_CONTROLLER"><B>ATTR_NAME_CONTROLLER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_COORDS"><B>ATTR_NAME_COORDS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DATA"><B>ATTR_NAME_DATA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DATAPAGESIZE"><B>ATTR_NAME_DATAPAGESIZE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DATETIME"><B>ATTR_NAME_DATETIME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DECLARE"><B>ATTR_NAME_DECLARE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DEFER"><B>ATTR_NAME_DEFER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DIR"><B>ATTR_NAME_DIR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DIRECTION"><B>ATTR_NAME_DIRECTION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DIRECTKEY"><B>ATTR_NAME_DIRECTKEY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_DISABLED"><B>ATTR_NAME_DISABLED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ENCTYPE"><B>ATTR_NAME_ENCTYPE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ERRMSG"><B>ATTR_NAME_ERRMSG</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_EVENT"><B>ATTR_NAME_EVENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FACE"><B>ATTR_NAME_FACE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FILE"><B>ATTR_NAME_FILE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FOR"><B>ATTR_NAME_FOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FRAME"><B>ATTR_NAME_FRAME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FRAMEBORDER"><B>ATTR_NAME_FRAMEBORDER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_FRAMESPACING"><B>ATTR_NAME_FRAMESPACING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HEADERS"><B>ATTR_NAME_HEADERS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HEIGHT"><B>ATTR_NAME_HEIGHT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HIDDEN"><B>ATTR_NAME_HIDDEN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HREF"><B>ATTR_NAME_HREF</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HREFLANG"><B>ATTR_NAME_HREFLANG</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HSPACE"><B>ATTR_NAME_HSPACE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_HTTP_EQUIV"><B>ATTR_NAME_HTTP_EQUIV</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ID"><B>ATTR_NAME_ID</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ISMAP"><B>ATTR_NAME_ISMAP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ISTYLE"><B>ATTR_NAME_ISTYLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LABEL"><B>ATTR_NAME_LABEL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LANG"><B>ATTR_NAME_LANG</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LANGUAGE"><B>ATTR_NAME_LANGUAGE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LEFTMARGIN"><B>ATTR_NAME_LEFTMARGIN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LINK"><B>ATTR_NAME_LINK</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LONGDESC"><B>ATTR_NAME_LONGDESC</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_LOOP"><B>ATTR_NAME_LOOP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MACRO"><B>ATTR_NAME_MACRO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MAPFILE"><B>ATTR_NAME_MAPFILE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MARGINHEIGHT"><B>ATTR_NAME_MARGINHEIGHT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MARGINWIDTH"><B>ATTR_NAME_MARGINWIDTH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MAXLENGTH"><B>ATTR_NAME_MAXLENGTH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MAYSCRIPT"><B>ATTR_NAME_MAYSCRIPT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MEDIA"><B>ATTR_NAME_MEDIA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_METHOD"><B>ATTR_NAME_METHOD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_MULTIPLE"><B>ATTR_NAME_MULTIPLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NAME"><B>ATTR_NAME_NAME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NOHREF"><B>ATTR_NAME_NOHREF</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NORESIZE"><B>ATTR_NAME_NORESIZE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NOSHADE"><B>ATTR_NAME_NOSHADE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_NOWRAP"><B>ATTR_NAME_NOWRAP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_OBJECT"><B>ATTR_NAME_OBJECT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONBLUR"><B>ATTR_NAME_ONBLUR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONCHANGE"><B>ATTR_NAME_ONCHANGE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONCLICK"><B>ATTR_NAME_ONCLICK</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONDBLCLICK"><B>ATTR_NAME_ONDBLCLICK</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONFOCUS"><B>ATTR_NAME_ONFOCUS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONHELP"><B>ATTR_NAME_ONHELP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONKEYDOWN"><B>ATTR_NAME_ONKEYDOWN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONKEYPRESS"><B>ATTR_NAME_ONKEYPRESS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONKEYUP"><B>ATTR_NAME_ONKEYUP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONLOAD"><B>ATTR_NAME_ONLOAD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEDOWN"><B>ATTR_NAME_ONMOUSEDOWN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEMOVE"><B>ATTR_NAME_ONMOUSEMOVE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEOUT"><B>ATTR_NAME_ONMOUSEOUT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEOVER"><B>ATTR_NAME_ONMOUSEOVER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONMOUSEUP"><B>ATTR_NAME_ONMOUSEUP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONRESET"><B>ATTR_NAME_ONRESET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONSELECT"><B>ATTR_NAME_ONSELECT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONSUBMIT"><B>ATTR_NAME_ONSUBMIT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ONUNLOAD"><B>ATTR_NAME_ONUNLOAD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PALETTE"><B>ATTR_NAME_PALETTE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PANEL"><B>ATTR_NAME_PANEL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PLAYCOUNT"><B>ATTR_NAME_PLAYCOUNT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PROFILE"><B>ATTR_NAME_PROFILE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_PROMPT"><B>ATTR_NAME_PROMPT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_READONLY"><B>ATTR_NAME_READONLY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_REL"><B>ATTR_NAME_REL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_REPEAT"><B>ATTR_NAME_REPEAT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_REV"><B>ATTR_NAME_REV</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_RIGHTMARGIN"><B>ATTR_NAME_RIGHTMARGIN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ROWS"><B>ATTR_NAME_ROWS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_ROWSPAN"><B>ATTR_NAME_ROWSPAN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_RULES"><B>ATTR_NAME_RULES</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCALE"><B>ATTR_NAME_SCALE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCHEME"><B>ATTR_NAME_SCHEME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCOPE"><B>ATTR_NAME_SCOPE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCROLLAMOUNT"><B>ATTR_NAME_SCROLLAMOUNT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCROLLDELAY"><B>ATTR_NAME_SCROLLDELAY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SCROLLING"><B>ATTR_NAME_SCROLLING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SELECTED"><B>ATTR_NAME_SELECTED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SHAPE"><B>ATTR_NAME_SHAPE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SHOWCONTROLS"><B>ATTR_NAME_SHOWCONTROLS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SIZE"><B>ATTR_NAME_SIZE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SIZEFMT"><B>ATTR_NAME_SIZEFMT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SPAN"><B>ATTR_NAME_SPAN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SRC"><B>ATTR_NAME_SRC</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_STANDBY"><B>ATTR_NAME_STANDBY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_START"><B>ATTR_NAME_START</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_STYLE"><B>ATTR_NAME_STYLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_SUMMARY"><B>ATTR_NAME_SUMMARY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TABINDEX"><B>ATTR_NAME_TABINDEX</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TARGET"><B>ATTR_NAME_TARGET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TEXT"><B>ATTR_NAME_TEXT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TEXTFOCUS"><B>ATTR_NAME_TEXTFOCUS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TIMEFMT"><B>ATTR_NAME_TIMEFMT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TITLE"><B>ATTR_NAME_TITLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TOPMARGIN"><B>ATTR_NAME_TOPMARGIN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TRUESPEED"><B>ATTR_NAME_TRUESPEED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_TYPE"><B>ATTR_NAME_TYPE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_USEMAP"><B>ATTR_NAME_USEMAP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VALIGN"><B>ATTR_NAME_VALIGN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VALUE"><B>ATTR_NAME_VALUE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VALUETYPE"><B>ATTR_NAME_VALUETYPE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VAR"><B>ATTR_NAME_VAR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VERSION"><B>ATTR_NAME_VERSION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VIRTUAL"><B>ATTR_NAME_VIRTUAL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VLINK"><B>ATTR_NAME_VLINK</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VOLUME"><B>ATTR_NAME_VOLUME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_VSPACE"><B>ATTR_NAME_VSPACE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_NAME_WIDTH"><B>ATTR_NAME_WIDTH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_0"><B>ATTR_VALUE_0</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_1"><B>ATTR_VALUE_1</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ABOVE"><B>ATTR_VALUE_ABOVE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ALL"><B>ATTR_VALUE_ALL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ALTERNATE"><B>ATTR_VALUE_ALTERNATE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_AUTO"><B>ATTR_VALUE_AUTO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BASELINE"><B>ATTR_VALUE_BASELINE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BELOW"><B>ATTR_VALUE_BELOW</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BORDER"><B>ATTR_VALUE_BORDER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BOTTOM"><B>ATTR_VALUE_BOTTOM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BOX"><B>ATTR_VALUE_BOX</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_BUTTON"><B>ATTR_VALUE_BUTTON</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CENTER"><B>ATTR_VALUE_CENTER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CHAR"><B>ATTR_VALUE_CHAR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CHECKBOX"><B>ATTR_VALUE_CHECKBOX</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_CIRCLE"><B>ATTR_VALUE_CIRCLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_COL"><B>ATTR_VALUE_COL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_COLGROUP"><B>ATTR_VALUE_COLGROUP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_COLS"><B>ATTR_VALUE_COLS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DATA"><B>ATTR_VALUE_DATA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DEFAULT"><B>ATTR_VALUE_DEFAULT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DISC"><B>ATTR_VALUE_DISC</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_DOWN"><B>ATTR_VALUE_DOWN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_FALSE"><B>ATTR_VALUE_FALSE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_FILE"><B>ATTR_VALUE_FILE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_GET"><B>ATTR_VALUE_GET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_GROUPS"><B>ATTR_VALUE_GROUPS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_HIDDEN"><B>ATTR_VALUE_HIDDEN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_HSIDES"><B>ATTR_VALUE_HSIDES</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_IMAGE"><B>ATTR_VALUE_IMAGE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_INFINITE"><B>ATTR_VALUE_INFINITE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_JUSTIFY"><B>ATTR_VALUE_JUSTIFY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LEFT"><B>ATTR_VALUE_LEFT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LHS"><B>ATTR_VALUE_LHS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LOWER_ALPHA"><B>ATTR_VALUE_LOWER_ALPHA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LOWER_ROMAN"><B>ATTR_VALUE_LOWER_ROMAN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_LTR"><B>ATTR_VALUE_LTR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_MIDDLE"><B>ATTR_VALUE_MIDDLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_NO"><B>ATTR_VALUE_NO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_NONE"><B>ATTR_VALUE_NONE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_NUMBER"><B>ATTR_VALUE_NUMBER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_OBJECT"><B>ATTR_VALUE_OBJECT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_PASSWORD"><B>ATTR_VALUE_PASSWORD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_POLY"><B>ATTR_VALUE_POLY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_POST"><B>ATTR_VALUE_POST</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RADIO"><B>ATTR_VALUE_RADIO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RECT"><B>ATTR_VALUE_RECT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_REF"><B>ATTR_VALUE_REF</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RESET"><B>ATTR_VALUE_RESET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RHS"><B>ATTR_VALUE_RHS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RIGHT"><B>ATTR_VALUE_RIGHT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ROW"><B>ATTR_VALUE_ROW</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ROWGROUP"><B>ATTR_VALUE_ROWGROUP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_ROWS"><B>ATTR_VALUE_ROWS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_RTL"><B>ATTR_VALUE_RTL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SCROLL"><B>ATTR_VALUE_SCROLL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SLIDE"><B>ATTR_VALUE_SLIDE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SQUARE"><B>ATTR_VALUE_SQUARE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_SUBMIT"><B>ATTR_VALUE_SUBMIT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_TEXT"><B>ATTR_VALUE_TEXT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_TOP"><B>ATTR_VALUE_TOP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_TRUE"><B>ATTR_VALUE_TRUE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_UP"><B>ATTR_VALUE_UP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_UPPER_ALPHA"><B>ATTR_VALUE_UPPER_ALPHA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_UPPER_ROMAN"><B>ATTR_VALUE_UPPER_ROMAN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VERSION_FRAMESET"><B>ATTR_VALUE_VERSION_FRAMESET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VERSION_TRANSITIONAL"><B>ATTR_VALUE_VERSION_TRANSITIONAL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VOID"><B>ATTR_VALUE_VOID</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_VSIDES"><B>ATTR_VALUE_VSIDES</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_WWW_FORM_URLENCODED"><B>ATTR_VALUE_WWW_FORM_URLENCODED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html#ATTR_VALUE_YES"><B>ATTR_VALUE_YES</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html#attrEquals(java.lang.String, java.lang.String)"><B>attrEquals(String, String)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">NodeHelper</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#ATTRIBUTE_NOT_SUPPORTED"><B>ATTRIBUTE_NOT_SUPPORTED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A>
-<DD>Status code indicating that an attribute is not supported.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#ATTRIBUTE_READ_ONLY"><B>ATTRIBUTE_READ_ONLY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A>
-<DD>Status code indicating that an attribute is not modifiable.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#attributes"><B>attributes</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html#AttrToString()"><B>AttrToString()</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">NodeHelper</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AUML_L"><B>AUML_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#AUML_U"><B>AUML_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#AUTOEDIT_ID"><B>AUTOEDIT_ID</B></A> -
-Static variable in class org.eclipse.wst.jsdt.web.ui.<A HREF="../org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html" title="class in org.eclipse.wst.jsdt.web.ui">StructuredTextViewerConfigurationJSDT.externalTypeExtension</A>
-<DD>&nbsp;
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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 LETTER&nbsp;
-&nbsp;<A HREF="index-2.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-1.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-1.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-10.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-10.html
deleted file mode 100644
index a873f70d..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-10.html
+++ /dev/null
@@ -1,698 +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:19 CDT 2008 -->
-<TITLE>
-J-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="J-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-9.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-10.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_J_"><!-- --></A><H2>
-<B>J</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchScope.html#JAR_FILE_ENTRY_SEPARATOR"><B>JAR_FILE_ENTRY_SEPARATOR</B></A> -
-Static variable in interface 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>
-<DD>This constant defines the separator of the resourcePath string of the <code>encloses(String)</code>
- method.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html#JAR_MIGRATION"><B>JAR_MIGRATION</B></A> -
-Static variable in class 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>
-<DD>Constant describing the jar migration flag (value: <code>65536</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html#JAR_REFACTORING"><B>JAR_REFACTORING</B></A> -
-Static variable in class 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>
-<DD>Constant describing the jar refactoring flag (value: <code>524288</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html#JAR_SOURCE_ATTACHMENT"><B>JAR_SOURCE_ATTACHMENT</B></A> -
-Static variable in class 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>
-<DD>Constant describing the jar source attachment flag (value:
- <code>262144</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_ANNOTATION"><B>JAVA_ANNOTATION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD><B>Deprecated.</B>&nbsp;<I>replaced as of 3.2 by an equivalent semantic highlighting, see <CODE>SemanticHighlightings.ANNOTATION</CODE></I>
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_BRACKET"><B>JAVA_BRACKET</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for brackets in JavaScript code
- (value <code>"java_bracket"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html#JAVA_CHARACTER"><B>JAVA_CHARACTER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptPartitions</A>
-<DD>The identifier of the JavaScript character partition content type.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_DEFAULT"><B>JAVA_DEFAULT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for everything in JavaScript code for which no other color is specified
- (value <code>"java_default"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html#JAVA_DOC"><B>JAVA_DOC</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptPartitions</A>
-<DD>The identifier of the Javadoc (JLS2: DocumentationComment) partition content type.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_KEYWORD"><B>JAVA_KEYWORD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for JavaScript keywords in JavaScript code
- (value <code>"java_keyword"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_KEYWORD_RETURN"><B>JAVA_KEYWORD_RETURN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for keyword 'return' in JavaScript code
- (value <code>"java_keyword_return"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_METHOD_NAME"><B>JAVA_METHOD_NAME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD><B>Deprecated.</B>&nbsp;<I>replaced as of 3.1 by an equivalent semantic highlighting, see <CODE>SemanticHighlightings.METHOD</CODE></I>
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_MULTI_LINE_COMMENT"><B>JAVA_MULTI_LINE_COMMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for multi-line comments in JavaScript code
- (value <code>"java_multi_line_comment"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html#JAVA_MULTI_LINE_COMMENT"><B>JAVA_MULTI_LINE_COMMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptPartitions</A>
-<DD>The identifier multi-line (JLS2: TraditionalComment) comment partition content type.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_OPERATOR"><B>JAVA_OPERATOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for operators in JavaScript code
- (value <code>"java_operator"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html#JAVA_PARTITIONING"><B>JAVA_PARTITIONING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptPartitions</A>
-<DD>The identifier of the JavaScript partitioning.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_SINGLE_LINE_COMMENT"><B>JAVA_SINGLE_LINE_COMMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for single-line comments in JavaScript code
- (value <code>"java_single_line_comment"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html#JAVA_SINGLE_LINE_COMMENT"><B>JAVA_SINGLE_LINE_COMMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptPartitions</A>
-<DD>The identifier of the single-line (JLS2: EndOfLineComment) end comment partition content type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#JAVA_SOURCE_CONTENT_TYPE"><B>JAVA_SOURCE_CONTENT_TYPE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Value of the content-type for JavaScript source files.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVA_STRING"><B>JAVA_STRING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for string and character literals in JavaScript code
- (value <code>"java_string"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html#JAVA_STRING"><B>JAVA_STRING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptPartitions.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptPartitions</A>
-<DD>The identifier of the JavaScript string partition content type.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>JavaCapabilityConfigurationPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Standard wizard page for creating new JavaScript projects.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html#JavaCapabilityConfigurationPage()"><B>JavaCapabilityConfigurationPage()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">JavaCapabilityConfigurationPage</A>
-<DD>Creates a wizard page that can be used in a JavaScript project creation wizard.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java"><B>JavaContentAssistInvocationContext</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/java/package-summary.html">org.eclipse.wst.jsdt.ui.text.java</A><DD>Describes the context of a content assist invocation in a JavaScript editor.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html#JavaContentAssistInvocationContext(ITextViewer, int, IEditorPart)"><B>JavaContentAssistInvocationContext(ITextViewer, int, IEditorPart)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java">JavaContentAssistInvocationContext</A>
-<DD>Creates a new context.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html#JavaContentAssistInvocationContext(org.eclipse.wst.jsdt.core.IJavaScriptUnit)"><B>JavaContentAssistInvocationContext(IJavaScriptUnit)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/JavaContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java">JavaContentAssistInvocationContext</A>
-<DD>Creates a new context.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#Javadoc"><B>Javadoc</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#JAVADOC_COMMAND"><B>JAVADOC_COMMAND</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds the path of the Javadoc command used by the Javadoc creation wizard.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVADOC_DEFAULT"><B>JAVADOC_DEFAULT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for everything in JavaDoc comments for which no other color is specified
- (value <code>"java_doc_default"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVADOC_KEYWORD"><B>JAVADOC_KEYWORD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for JavaDoc keywords (<code>@foo</code>) in JavaDoc comments
- (value <code>"java_doc_keyword"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVADOC_LINK"><B>JAVADOC_LINK</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for JavaDoc links (<code>{foo}</code>) in JavaDoc comments
- (value <code>"java_doc_link"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html#JAVADOC_PROPERTY"><B>JAVADOC_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldDeclaration</A>
-<DD>The "javadoc" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#JAVADOC_PROPERTY"><B>JAVADOC_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<DD>The "javadoc" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html#JAVADOC_PROPERTY"><B>JAVADOC_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html" title="class in org.eclipse.wst.jsdt.core.dom">Initializer</A>
-<DD>The "javadoc" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html#JAVADOC_PROPERTY"><B>JAVADOC_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">PackageDeclaration</A>
-<DD>The "javadoc" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#JAVADOC_PROPERTY"><B>JAVADOC_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeDeclaration</A>
-<DD>The "javadoc" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html#JAVADOC_PROPERTY"><B>JAVADOC_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationStatement</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#JAVADOC_TAG"><B>JAVADOC_TAG</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for HTML tags (<code>&lt;foo&gt;</code>) in JavaDoc comments
- (value <code>"java_doc_tag"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousConstructor"><B>JavadocAmbiguousConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousField"><B>JavadocAmbiguousField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousMethod"><B>JavadocAmbiguousMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousMethodReference"><B>JavadocAmbiguousMethodReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocAmbiguousType"><B>JavadocAmbiguousType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateParamName"><B>JavadocDuplicateParamName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateReturnTag"><B>JavadocDuplicateReturnTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateTag"><B>JavadocDuplicateTag</B></A> -
-Static variable in interface 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>
-<DD>Problem warned on duplicated tag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocDuplicateThrowsClassName"><B>JavadocDuplicateThrowsClassName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocEmptyReturnTag"><B>JavadocEmptyReturnTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocGenericConstructorTypeArgumentMismatch"><B>JavadocGenericConstructorTypeArgumentMismatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocGenericMethodTypeArgumentMismatch"><B>JavadocGenericMethodTypeArgumentMismatch</B></A> -
-Static variable in interface 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>
-<DD>Javadoc Generic
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocHiddenReference"><B>JavadocHiddenReference</B></A> -
-Static variable in interface 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>
-<DD>Problem signaled on an hidden reference due to a too low visibility level.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocIncorrectArityForParameterizedConstructor"><B>JavadocIncorrectArityForParameterizedConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocIncorrectArityForParameterizedMethod"><B>JavadocIncorrectArityForParameterizedMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInheritedFieldHidesEnclosingName"><B>JavadocInheritedFieldHidesEnclosingName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInheritedMethodHidesEnclosingName"><B>JavadocInheritedMethodHidesEnclosingName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInheritedNameHidesEnclosingTypeName"><B>JavadocInheritedNameHidesEnclosingTypeName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInternalTypeNameProvided"><B>JavadocInternalTypeNameProvided</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidMemberTypeQualification"><B>JavadocInvalidMemberTypeQualification</B></A> -
-Static variable in interface 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>
-<DD>Problem signaled on an invalid qualification for member type reference.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidParamName"><B>JavadocInvalidParamName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidParamTagName"><B>JavadocInvalidParamTagName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidParamTagTypeParameter"><B>JavadocInvalidParamTagTypeParameter</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidSeeArgs"><B>JavadocInvalidSeeArgs</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidSeeHref"><B>JavadocInvalidSeeHref</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidSeeReference"><B>JavadocInvalidSeeReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidTag"><B>JavadocInvalidTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidThrowsClass"><B>JavadocInvalidThrowsClass</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidThrowsClassName"><B>JavadocInvalidThrowsClassName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocInvalidValueReference"><B>JavadocInvalidValueReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMalformedSeeReference"><B>JavadocMalformedSeeReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMessagePrefix"><B>JavadocMessagePrefix</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissing"><B>JavadocMissing</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingHashCharacter"><B>JavadocMissingHashCharacter</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingIdentifier"><B>JavadocMissingIdentifier</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingParamName"><B>JavadocMissingParamName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingParamTag"><B>JavadocMissingParamTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingReturnTag"><B>JavadocMissingReturnTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingSeeReference"><B>JavadocMissingSeeReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingThrowsClassName"><B>JavadocMissingThrowsClassName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocMissingThrowsTag"><B>JavadocMissingThrowsTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNoMessageSendOnArrayType"><B>JavadocNoMessageSendOnArrayType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNoMessageSendOnBaseType"><B>JavadocNoMessageSendOnBaseType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNonGenericConstructor"><B>JavadocNonGenericConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNonGenericMethod"><B>JavadocNonGenericMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNonStaticTypeFromStaticInvocation"><B>JavadocNonStaticTypeFromStaticInvocation</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleConstructor"><B>JavadocNotVisibleConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleField"><B>JavadocNotVisibleField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleMethod"><B>JavadocNotVisibleMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocNotVisibleType"><B>JavadocNotVisibleType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocParameterizedConstructorArgumentTypeMismatch"><B>JavadocParameterizedConstructorArgumentTypeMismatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocParameterizedMethodArgumentTypeMismatch"><B>JavadocParameterizedMethodArgumentTypeMismatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocParameterMismatch"><B>JavadocParameterMismatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocTypeArgumentsForRawGenericConstructor"><B>JavadocTypeArgumentsForRawGenericConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocTypeArgumentsForRawGenericMethod"><B>JavadocTypeArgumentsForRawGenericMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedConstructor"><B>JavadocUndefinedConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedField"><B>JavadocUndefinedField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedMethod"><B>JavadocUndefinedMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUndefinedType"><B>JavadocUndefinedType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUnexpectedTag"><B>JavadocUnexpectedTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUnexpectedText"><B>JavadocUnexpectedText</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUnterminatedInlineTag"><B>JavadocUnterminatedInlineTag</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedConstructor"><B>JavadocUsingDeprecatedConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedField"><B>JavadocUsingDeprecatedField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedMethod"><B>JavadocUsingDeprecatedMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#JavadocUsingDeprecatedType"><B>JavadocUsingDeprecatedType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaElementSorter.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaElementSorter</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Sorter for JavaScript elements.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaElementSorter.html#JavaElementSorter()"><B>JavaElementSorter()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaElementSorter.html" title="class in org.eclipse.wst.jsdt.ui">JavaElementSorter</A>
-<DD>Constructor.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#JAVASCRIPT_MODEL"><B>JAVASCRIPT_MODEL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a JavaScript model (workspace level object).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#JAVASCRIPT_MODEL_PROBLEM_MARKER"><B>JAVASCRIPT_MODEL_PROBLEM_MARKER</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelMarker</A>
-<DD>JavaScript model problem marker type (value
- <code>"org.eclipse.wst.jsdt.core.problem"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#JAVASCRIPT_PROJECT"><B>JAVASCRIPT_PROJECT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a JavaScript project.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#JAVASCRIPT_UNIT"><B>JAVASCRIPT_UNIT</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>JavaScriptUnit</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#JAVASCRIPT_UNIT"><B>JAVASCRIPT_UNIT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a JavaScript file.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptConventions.html" title="class in org.eclipse.wst.jsdt.core"><B>JavaScriptConventions</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Provides methods for checking JavaScript-specific conventions such as name syntax.<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core"><B>JavaScriptCore</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>The plug-in runtime class for the JavaScript model plug-in containing the core
- (UI-free) support for JavaScript projects.<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#JavaScriptCore()"><B>JavaScriptCore()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates the JavaScript core plug-in.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptElementComparator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Viewer comparator for JavaScript elements.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html#JavaScriptElementComparator()"><B>JavaScriptElementComparator()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementComparator</A>
-<DD>Constructor.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptElementImageDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>A <A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui"><CODE>JavaScriptElementImageDescriptor</CODE></A> consists of a base image and several adornments.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#JavaScriptElementImageDescriptor(ImageDescriptor, int, Point)"><B>JavaScriptElementImageDescriptor(ImageDescriptor, int, Point)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementImageDescriptor</A>
-<DD>Creates a new JavaScriptElementImageDescriptor.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptElementLabelProvider</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Standard label provider for JavaScript elements.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#JavaScriptElementLabelProvider()"><B>JavaScriptElementLabelProvider()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabelProvider</A>
-<DD>Creates a new label provider with <code>SHOW_DEFAULT</code> flag.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html#JavaScriptElementLabelProvider(int)"><B>JavaScriptElementLabelProvider(int)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabelProvider</A>
-<DD>Creates a new label provider.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptElementLabels</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD><code>JavaScriptElementLabels</code> provides helper methods to render names of JavaScript elements.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptLibrariesAction.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptLibrariesAction</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptLibrariesAction.html#JavaScriptLibrariesAction()"><B>JavaScriptLibrariesAction()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptLibrariesAction.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptLibrariesAction</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.html" title="class in org.eclipse.wst.jsdt.core.manipulation"><B>JavaScriptManipulation</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/manipulation/package-summary.html">org.eclipse.wst.jsdt.core.manipulation</A><DD>Central access point for the Java Manipulation plug-in (id <code>"org.eclipse.wst.jsdt.manipulation"</code>).<DT><A HREF="../org/eclipse/wst/jsdt/core/manipulation/JavaScriptManipulation.html#JavaScriptManipulation()"><B>JavaScriptManipulation()</B></A> -
-Constructor for class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html" title="class in org.eclipse.wst.jsdt.core"><B>JavaScriptModelException</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>A checked exception representing a failure in the JavaScript model.<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html#JavaScriptModelException(java.lang.Throwable, int)"><B>JavaScriptModelException(Throwable, int)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptModelException</A>
-<DD>Creates a JavaScript model exception that wrappers the given <code>Throwable</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html#JavaScriptModelException(CoreException)"><B>JavaScriptModelException(CoreException)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptModelException</A>
-<DD>Creates a JavaScript model exception for the given <code>CoreException</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>JavaScriptRefactoringContribution</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Partial implementation of a Java refactoring contribution.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.html#JavaScriptRefactoringContribution()"><B>JavaScriptRefactoringContribution()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringContribution.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">JavaScriptRefactoringContribution</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>JavaScriptRefactoringDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Partial implementation of a java refactoring descriptor.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptSourceFoldersAction.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptSourceFoldersAction</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptSourceFoldersAction.html#JavaScriptSourceFoldersAction()"><B>JavaScriptSourceFoldersAction()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptSourceFoldersAction.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptSourceFoldersAction</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.text"><B>JavaScriptSourceViewerConfiguration</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/package-summary.html">org.eclipse.wst.jsdt.ui.text</A><DD>Configuration for a source viewer which shows JavaScript code.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html#JavaScriptSourceViewerConfiguration(org.eclipse.wst.jsdt.ui.text.IColorManager, IPreferenceStore, ITextEditor, java.lang.String)"><B>JavaScriptSourceViewerConfiguration(IColorManager, IPreferenceStore, ITextEditor, String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptSourceViewerConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptSourceViewerConfiguration</A>
-<DD>Creates a new JavaScript source viewer configuration for viewers in the given editor
- using the given preference store, the color manager and the specified document partitioning.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptSuperTypeAction.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptSuperTypeAction</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptSuperTypeAction.html#JavaScriptSuperTypeAction()"><B>JavaScriptSuperTypeAction()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptSuperTypeAction.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptSuperTypeAction</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html" title="class in org.eclipse.wst.jsdt.ui.text"><B>JavaScriptTextTools</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/package-summary.html">org.eclipse.wst.jsdt.ui.text</A><DD>Tools required to configure a JavaScript text viewer.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html#JavaScriptTextTools(IPreferenceStore)"><B>JavaScriptTextTools(IPreferenceStore)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptTextTools</A>
-<DD>Creates a new JavaScript text tools collection.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html#JavaScriptTextTools(IPreferenceStore, boolean)"><B>JavaScriptTextTools(IPreferenceStore, boolean)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptTextTools</A>
-<DD>Creates a new JavaScript text tools collection.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html#JavaScriptTextTools(IPreferenceStore, Preferences, boolean)"><B>JavaScriptTextTools(IPreferenceStore, Preferences, boolean)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptTextTools</A>
-<DD>Creates a new JavaScript text tools collection.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui"><B>JavaScriptUI</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Central access point for the JavaScript UI plug-in (id <code>"org.eclipse.wst.jsdt.ui"</code>).<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>JavaScriptUnit</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>JavaScript javaScript unit AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/util/JavaScriptUnitSorter.html" title="class in org.eclipse.wst.jsdt.core.util"><B>JavaScriptUnitSorter</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/util/package-summary.html">org.eclipse.wst.jsdt.core.util</A><DD>Operation for sorting members within a javascript unit .<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline"><B>JFaceNodeAdapterFactoryForJSDT</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-summary.html">org.eclipse.wst.jsdt.web.ui.views.contentoutline</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html#JFaceNodeAdapterFactoryForJSDT()"><B>JFaceNodeAdapterFactoryForJSDT()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html#JFaceNodeAdapterFactoryForJSDT(java.lang.Object, boolean)"><B>JFaceNodeAdapterFactoryForJSDT(Object, boolean)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterForJs.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline"><B>JFaceNodeAdapterForJs</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-summary.html">org.eclipse.wst.jsdt.web.ui.views.contentoutline</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterForJs.html#JFaceNodeAdapterForJs(JFaceNodeAdapterFactory)"><B>JFaceNodeAdapterForJs(JFaceNodeAdapterFactory)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#JLS2"><B>JLS2</B></A> -
-Static variable in class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Clients should use the <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#JLS3"><CODE>AST.JLS3</CODE></A> AST API instead.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#JLS3"><B>JLS3</B></A> -
-Static variable in class 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>
-<DD>Constant for indicating the AST API that handles ECMAScript 4.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript"><B>JsDataTypes</B></A> - Interface in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC"><B>JSDOC</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#JSDOC"><B>JSDOC</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>Javadoc</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/JSdoc.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>JSdoc</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>AST node for a Javadoc-style doc comment.<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ALLOCATION_EXPRESSION"><B>JSDOC_ALLOCATION_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ARGUMENTEXPRESSION"><B>JSDOC_ARGUMENTEXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ARRAY_QUALIFIED_TYPE_REFERENCE"><B>JSDOC_ARRAY_QUALIFIED_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_ARRAY_SINGLE_TYPE_REFERENCE"><B>JSDOC_ARRAY_SINGLE_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_BLOCK_TAG"><B>JSDOC_BLOCK_TAG</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a JSdoc block tag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_FIELD_REF"><B>JSDOC_FIELD_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a link reference to a field in a JSdoc text.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_FIELD_REFERENCE"><B>JSDOC_FIELD_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_IMPLICIT_TYPE_REFERENCE"><B>JSDOC_IMPLICIT_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_INLINE_TAG"><B>JSDOC_INLINE_TAG</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a JSdoc inline tag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathAttribute.html#JSDOC_LOCATION_ATTRIBUTE_NAME"><B>JSDOC_LOCATION_ATTRIBUTE_NAME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathAttribute.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathAttribute</A>
-<DD>Constant for the name of the jsdoc location attribute.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_MESSAGE_SEND"><B>JSDOC_MESSAGE_SEND</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_METHOD_REF"><B>JSDOC_METHOD_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a link reference to a function in a JSdoc text.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_PARAM_REF"><B>JSDOC_PARAM_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a method argument or a class/method type parameter
- in JSdoc param tag.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_QUALIFIED_TYPE_REFERENCE"><B>JSDOC_QUALIFIED_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_RETURN_STATEMENT"><B>JSDOC_RETURN_STATEMENT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_SINGLE_NAME_REFERENCE"><B>JSDOC_SINGLE_NAME_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#JSDOC_SINGLE_TYPE_REFERENCE"><B>JSDOC_SINGLE_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_TYPE_REF"><B>JSDOC_TYPE_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a link reference to a type in a JSdoc text.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#JSDOC_VALUE_REF"><B>JSDOC_VALUE_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a value reference to a static field in a JSdoc text.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JSdocContentAccess.html" title="class in org.eclipse.wst.jsdt.ui"><B>JSdocContentAccess</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Helper needed to get the content of a Javadoc comment.<DT><A HREF="../org/eclipse/wst/jsdt/core/JSDScopeUtil.html" title="class in org.eclipse.wst.jsdt.core"><B>JSDScopeUtil</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>(mostly) static methods to figure out includepath entries and container initializers *
-
- Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/JSDScopeUtil.html#JSDScopeUtil()"><B>JSDScopeUtil()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JSDScopeUtil.html" title="class in org.eclipse.wst.jsdt.core">JSDScopeUtil</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JSDTSearchDocumentDelegate.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>JSDTSearchDocumentDelegate</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JSDTSearchDocumentDelegate.html#JSDTSearchDocumentDelegate(org.eclipse.wst.jsdt.web.core.javascript.search.JsSearchDocument)"><B>JSDTSearchDocumentDelegate(JsSearchDocument)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core"><B>JsGlobalScopeContainerInitializer</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Abstract base implementation of all includepath container initializer.<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#JsGlobalScopeContainerInitializer()"><B>JsGlobalScopeContainerInitializer()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A>
-<DD>Creates a new includepath container initializer.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeVariableInitializer.html" title="class in org.eclipse.wst.jsdt.core"><B>JsGlobalScopeVariableInitializer</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Abstract base implementation of all includepath variable initializers.<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeVariableInitializer.html#JsGlobalScopeVariableInitializer()"><B>JsGlobalScopeVariableInitializer()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeVariableInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeVariableInitializer</A>
-<DD>Creates a new includepath variable initializer.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsIndexManager.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>JsIndexManager</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline"><B>JsJfaceNode</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-summary.html">org.eclipse.wst.jsdt.web.ui.views.contentoutline</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html#JsJfaceNode(org.w3c.dom.Node, org.eclipse.wst.jsdt.core.IJavaScriptElement, Position)"><B>JsJfaceNode(Node, IJavaScriptElement, Position)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html#JsJfaceNode(org.w3c.dom.Node, org.eclipse.wst.jsdt.core.IJavaScriptElement, Position, java.lang.String)"><B>JsJfaceNode(Node, IJavaScriptElement, Position, String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>JsNameManglerUtil</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html#JsNameManglerUtil()"><B>JsNameManglerUtil()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsNameManglerUtil</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html" title="class in org.eclipse.wst.jsdt.ui.project"><B>JsNature</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/project/package-summary.html">org.eclipse.wst.jsdt.ui.project</A><DD>Provisional API: This class/interface
- of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html#JsNature()"><B>JsNature()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.project.<A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html" title="class in org.eclipse.wst.jsdt.ui.project">JsNature</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html#JsNature(IProject, IProgressMonitor)"><B>JsNature(IProject, IProgressMonitor)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.project.<A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html" title="class in org.eclipse.wst.jsdt.ui.project">JsNature</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsPathIndexer.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>JsPathIndexer</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsPathIndexer.html#JsPathIndexer()"><B>JsPathIndexer()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchDocument.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>JsSearchDocument</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchDocument.html#JsSearchDocument(java.lang.String, org.eclipse.wst.jsdt.core.search.SearchParticipant)"><B>JsSearchDocument(String, SearchParticipant)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchParticipant.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>JsSearchParticipant</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchParticipant.html#JsSearchParticipant()"><B>JsSearchParticipant()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>JsSearchScope</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html#JsSearchScope()"><B>JsSearchScope()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html#JsSearchScope(java.lang.String[])"><B>JsSearchScope(String[])</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchScope.html#JsSearchScope(org.eclipse.wst.jsdt.core.IJavaScriptElement[])"><B>JsSearchScope(IJavaScriptElement[])</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchSupport.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>JsSearchSupport</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>JsTranslation</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html#JsTranslation()"><B>JsTranslation()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslation</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>JsTranslationAdapter</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html#JsTranslationAdapter(IDOMModel)"><B>JsTranslationAdapter(IDOMModel)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslationAdapter</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>JsTranslationAdapterFactory</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html#JsTranslationAdapterFactory()"><B>JsTranslationAdapterFactory()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslationAdapterFactory</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>JsTranslator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html#JsTranslator(IStructuredDocument, java.lang.String)"><B>JsTranslator(IStructuredDocument, String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslator</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html#JsTranslator()"><B>JsTranslator()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslator</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html#JsTranslator(IStructuredDocument, java.lang.String, boolean)"><B>JsTranslator(IStructuredDocument, String, boolean)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslator.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslator</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html#JSVALIDDATATYPES"><B>JSVALIDDATATYPES</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">JsDataTypes</A>
-<DD>&nbsp;
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-9.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-11.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-10.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-10.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-11.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-11.html
deleted file mode 100644
index 4d62a5cb..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-11.html
+++ /dev/null
@@ -1,229 +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:19 CDT 2008 -->
-<TITLE>
-K-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="K-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-10.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-12.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-11.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-11.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_K_"><!-- --></A><H2>
-<B>K</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IAccessRule.html#K_ACCESSIBLE"><B>K_ACCESSIBLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IAccessRule.html" title="interface in org.eclipse.wst.jsdt.core">IAccessRule</A>
-<DD>Constant indicating that files matching the rule's pattern are accessible.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#K_APPLICATION"><B>K_APPLICATION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html" title="interface in org.eclipse.wst.jsdt.core">IJsGlobalScopeContainer</A>
-<DD>Kind for a container mapping to an application library
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#K_BINARY"><B>K_BINARY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
-<DD>Kind constant for a binary path root.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_CLASS_BODY_DECLARATIONS"><B>K_CLASS_BODY_DECLARATIONS</B></A> -
-Static variable in class 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>
-<DD>Kind constant used to request that the source be parsed
- as a sequence of class body declarations.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_CLASS_BODY_DECLARATIONS"><B>K_CLASS_BODY_DECLARATIONS</B></A> -
-Static variable in class 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>
-<DD>Kind used to format a set of class body declarations
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_COMPILATION_UNIT"><B>K_COMPILATION_UNIT</B></A> -
-Static variable in class 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>
-<DD>Kind constant used to request that the source be parsed
- as a javaScript unit.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#K_DEFAULT_SYSTEM"><B>K_DEFAULT_SYSTEM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html" title="interface in org.eclipse.wst.jsdt.core">IJsGlobalScopeContainer</A>
-<DD>Kind for a container mapping to a default system library, implicitly contributed by the runtime
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IAccessRule.html#K_DISCOURAGED"><B>K_DISCOURAGED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IAccessRule.html" title="interface in org.eclipse.wst.jsdt.core">IAccessRule</A>
-<DD>Constant indicating that access to the files matching the rule's pattern is discouraged.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_EXPRESSION"><B>K_EXPRESSION</B></A> -
-Static variable in class 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>
-<DD>Kind constant used to request that the source be parsed
- as a single expression.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_EXPRESSION"><B>K_EXPRESSION</B></A> -
-Static variable in class 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>
-<DD>Kind used to format an expression
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_JAVA_DOC"><B>K_JAVA_DOC</B></A> -
-Static variable in class 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>
-<DD>Kind used to format a jsdoc comment
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_JAVASCRIPT_UNIT"><B>K_JAVASCRIPT_UNIT</B></A> -
-Static variable in class 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>
-<DD>Kind used to format a javascript unit
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_MULTI_LINE_COMMENT"><B>K_MULTI_LINE_COMMENT</B></A> -
-Static variable in class 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>
-<DD>Kind used to format a multi-line comment
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IAccessRule.html#K_NON_ACCESSIBLE"><B>K_NON_ACCESSIBLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IAccessRule.html" title="interface in org.eclipse.wst.jsdt.core">IAccessRule</A>
-<DD>Constant indicating that files matching the rule's pattern are non accessible.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_SINGLE_LINE_COMMENT"><B>K_SINGLE_LINE_COMMENT</B></A> -
-Static variable in class 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>
-<DD>Kind used to format a single-line comment
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#K_SOURCE"><B>K_SOURCE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
-<DD>Kind constant for a source path root.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#K_STATEMENTS"><B>K_STATEMENTS</B></A> -
-Static variable in class 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>
-<DD>Kind constant used to request that the source be parsed
- as a sequence of statements.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_STATEMENTS"><B>K_STATEMENTS</B></A> -
-Static variable in class 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>
-<DD>Kind used to format a set of statements
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html#K_SYSTEM"><B>K_SYSTEM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainer.html" title="interface in org.eclipse.wst.jsdt.core">IJsGlobalScopeContainer</A>
-<DD>Kind for a container mapping to a system library
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#K_UNKNOWN"><B>K_UNKNOWN</B></A> -
-Static variable in class 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>
-<DD>Unknown kind
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#KAPPA_L"><B>KAPPA_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#KAPPA_U"><B>KAPPA_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#KBD"><B>KBD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#KEYWORD"><B>KEYWORD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a keyword.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#KEYWORD_PROPERTY"><B>KEYWORD_PROPERTY</B></A> -
-Static variable in class 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>
-<DD>The "keyword" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html#KEYWORDS"><B>KEYWORDS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">JsDataTypes</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#KIND_STATIC_FIELD"><B>KIND_STATIC_FIELD</B></A> -
-Static variable in class 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>
-<DD>Kind constant specifying that the element is a static field import.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#KIND_STATIC_METHOD"><B>KIND_STATIC_METHOD</B></A> -
-Static variable in class 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>
-<DD>Kind constant specifying that the element is a static method import.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.ImportRewriteContext.html#KIND_TYPE"><B>KIND_TYPE</B></A> -
-Static variable in class 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>
-<DD>Kind constant specifying that the element is a type import.
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-10.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-12.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-11.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-11.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-12.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-12.html
deleted file mode 100644
index 5d7027c2..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-12.html
+++ /dev/null
@@ -1,363 +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:19 CDT 2008 -->
-<TITLE>
-L-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="L-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-11.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-12.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_L_"><!-- --></A><H2>
-<B>L</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#LABEL"><B>LABEL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/BreakStatement.html#LABEL_PROPERTY"><B>LABEL_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/BreakStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">BreakStatement</A>
-<DD>The "label" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ContinueStatement.html#LABEL_PROPERTY"><B>LABEL_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ContinueStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ContinueStatement</A>
-<DD>The "label" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/LabeledStatement.html#LABEL_PROPERTY"><B>LABEL_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/LabeledStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">LabeledStatement</A>
-<DD>The "label" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#LABEL_REF"><B>LABEL_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a reference to a label.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#LABELED_STATEMENT"><B>LABELED_STATEMENT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#LABELED_STATEMENT"><B>LABELED_STATEMENT</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>LabeledStatement</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/LabeledStatement.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>LabeledStatement</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Labeled statement AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LAMBDA_L"><B>LAMBDA_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LAMBDA_U"><B>LAMBDA_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LANG"><B>LANG</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LAQUO"><B>LAQUO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LARR_L"><B>LARR_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LARR_U"><B>LARR_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#lastIndexOf(char, char[])"><B>lastIndexOf(char, char[])</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers the last index in the array for which the corresponding character is
- equal to toBeFound starting from the end of the array.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#lastIndexOf(char, char[], int)"><B>lastIndexOf(char, char[], int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers the last index in the array for which the corresponding character is
- equal to toBeFound stopping at the index startIndex.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#lastIndexOf(char, char[], int, int)"><B>lastIndexOf(char, char[], int, int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers the last index in the array for which the corresponding character is
- equal to toBeFound starting from endIndex to startIndex.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#lastSegment(char[], char)"><B>lastSegment(char[], char)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers the last portion of a name given a separator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html#lastTrailingCommentIndex(org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>lastTrailingCommentIndex(ASTNode)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html" title="class in org.eclipse.wst.jsdt.core.dom">JavaScriptUnit</A>
-<DD>Return the index in the whole comments list <A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html#getCommentList()"><CODE>JavaScriptUnit.getCommentList()</CODE></A>
- of the last trailing comments associated with the given node.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LCEIL"><B>LCEIL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LDQUO"><B>LDQUO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LE"><B>LE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.html#LEFT_HAND_SIDE_PROPERTY"><B>LEFT_HAND_SIDE_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment</A>
-<DD>The "leftHandSide" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.html#LEFT_OPERAND_PROPERTY"><B>LEFT_OPERAND_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression</A>
-<DD>The "leftOperand" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InstanceofExpression.html#LEFT_OPERAND_PROPERTY"><B>LEFT_OPERAND_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InstanceofExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">InstanceofExpression</A>
-<DD>The "leftOperand" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#LEFT_SHIFT"><B>LEFT_SHIFT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>Left shift "&lt;&lt;" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html#LEFT_SHIFT_ASSIGN"><B>LEFT_SHIFT_ASSIGN</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment.Operator</A>
-<DD>&lt;&lt;== operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#LEGEND"><B>LEGEND</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#LESS"><B>LESS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>Less than "&lt;" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#LESS_EQUALS"><B>LESS_EQUALS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>Less than or equals "&lt;=" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LFLOOR"><B>LFLOOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#LI"><B>LI</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.html#LIBRARY_PLUGIN_DIRECTORY"><B>LIBRARY_PLUGIN_DIRECTORY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.compiler.libraries.<A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">SystemLibraryLocation</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.html#LIBRARY_RUNTIME_DIRECTORY"><B>LIBRARY_RUNTIME_DIRECTORY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.compiler.libraries.<A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/SystemLibraryLocation.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">SystemLibraryLocation</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/LibraryLocation.html" title="interface in org.eclipse.wst.jsdt.core.compiler.libraries"><B>LibraryLocation</B></A> - Interface in <A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/package-summary.html">org.eclipse.wst.jsdt.core.compiler.libraries</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/LibrarySuperType.html" title="class in org.eclipse.wst.jsdt.core"><B>LibrarySuperType</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/LibrarySuperType.html#LibrarySuperType(IPath, org.eclipse.wst.jsdt.core.IJavaScriptProject, java.lang.String)"><B>LibrarySuperType(IPath, IJavaScriptProject, String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/LibrarySuperType.html" title="class in org.eclipse.wst.jsdt.core">LibrarySuperType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/LibrarySuperType.html#LibrarySuperType(IPath, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>LibrarySuperType(IPath, IJavaScriptProject)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/LibrarySuperType.html" title="class in org.eclipse.wst.jsdt.core">LibrarySuperType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#LINE_COMMENT"><B>LINE_COMMENT</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>LineComment</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/LineComment.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>LineComment</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>End-of-line comment AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#LINK"><B>LINK</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#LINK_BROWSING_MEMBERS_TO_EDITOR"><B>LINK_BROWSING_MEMBERS_TO_EDITOR</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether the members view's selection is
- linked to the active editor.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#LINK_BROWSING_PACKAGES_TO_EDITOR"><B>LINK_BROWSING_PACKAGES_TO_EDITOR</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether the packages view's selection is
- linked to the active editor.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#LINK_BROWSING_PROJECTS_TO_EDITOR"><B>LINK_BROWSING_PROJECTS_TO_EDITOR</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether the projects view's selection is
- linked to the active editor.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#LINK_BROWSING_TYPES_TO_EDITOR"><B>LINK_BROWSING_TYPES_TO_EDITOR</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether the types view's selection is
- linked to the active editor.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#LIST_EXPRESSION"><B>LIST_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#LIST_EXPRESSION"><B>LIST_EXPRESSION</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ListExpression.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ListExpression</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite"><B>ListRewrite</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/package-summary.html">org.eclipse.wst.jsdt.core.dom.rewrite</A><DD>For describing manipulations to a child list property of an AST node.<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#LITERAL"><B>LITERAL</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#loadTypeHierachy(java.io.InputStream, IProgressMonitor)"><B>loadTypeHierachy(InputStream, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Loads a previously saved ITypeHierarchy from an input stream.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#LOCAL_DECLARATION"><B>LOCAL_DECLARATION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#LOCAL_VAR_PREFIX"><B>LOCAL_VAR_PREFIX</B></A> -
-Static variable in interface 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>
-<DD>The prefix of fields that represent the local variables in a snippet
- class.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#LOCAL_VARIABLE"><B>LOCAL_VARIABLE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a local variable declaration.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#LOCAL_VARIABLE_REF"><B>LOCAL_VARIABLE_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a reference to a local variable.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableCannotBeNull"><B>LocalVariableCannotBeNull</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantNullCheckOnNonNullLocalVariable"><CODE>IProblem.RedundantNullCheckOnNonNullLocalVariable</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableCanOnlyBeNull"><B>LocalVariableCanOnlyBeNull</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableReference"><CODE>IProblem.NullLocalVariableReference</CODE></A>, <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantNullCheckOnNullLocalVariable"><CODE>IProblem.RedundantNullCheckOnNullLocalVariable</CODE></A> or <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#RedundantLocalVariableNullAssignment"><CODE>IProblem.RedundantLocalVariableNullAssignment</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/LocalVariableDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search"><B>LocalVariableDeclarationMatch</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/search/package-summary.html">org.eclipse.wst.jsdt.core.search</A><DD>A JavaScript search match that represents a local variable declaration.<DT><A HREF="../org/eclipse/wst/jsdt/core/search/LocalVariableDeclarationMatch.html#LocalVariableDeclarationMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>LocalVariableDeclarationMatch(IJavaScriptElement, int, int, int, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/LocalVariableDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">LocalVariableDeclarationMatch</A>
-<DD>Creates a new local variable declaration match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableHidingField"><B>LocalVariableHidingField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableHidingLocalVariable"><B>LocalVariableHidingLocalVariable</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableIsNeverUsed"><B>LocalVariableIsNeverUsed</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#LocalVariableMayBeNull"><B>LocalVariableMayBeNull</B></A> -
-Static variable in interface 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>
-<DD><B>Deprecated.</B>&nbsp;<I>- problem is no longer generated, use <A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#PotentialNullLocalVariableReference"><CODE>IProblem.PotentialNullLocalVariableReference</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/LocalVariableReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search"><B>LocalVariableReferenceMatch</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/search/package-summary.html">org.eclipse.wst.jsdt.core.search</A><DD>A JavaScript search match that represents a local variable reference.<DT><A HREF="../org/eclipse/wst/jsdt/core/search/LocalVariableReferenceMatch.html#LocalVariableReferenceMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, boolean, boolean, boolean, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>LocalVariableReferenceMatch(IJavaScriptElement, int, int, int, boolean, boolean, boolean, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/LocalVariableReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">LocalVariableReferenceMatch</A>
-<DD>Creates a new local variable reference match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchParticipant.html#locateMatches(org.eclipse.wst.jsdt.core.search.SearchDocument[], org.eclipse.wst.jsdt.core.search.SearchPattern, org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope, org.eclipse.wst.jsdt.core.search.SearchRequestor, IProgressMonitor)"><B>locateMatches(SearchDocument[], SearchPattern, IJavaScriptSearchScope, SearchRequestor, IProgressMonitor)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchParticipant.html" title="class in org.eclipse.wst.jsdt.core.search">SearchParticipant</A>
-<DD>Locates the matches in the given documents using the given search pattern
- and search scope, and reports them to the givenn search requestor.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchParticipant.html#locateMatches(org.eclipse.wst.jsdt.core.search.SearchDocument[], org.eclipse.wst.jsdt.core.search.SearchPattern, org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope, org.eclipse.wst.jsdt.core.search.SearchRequestor, IProgressMonitor)"><B>locateMatches(SearchDocument[], SearchPattern, IJavaScriptSearchScope, SearchRequestor, IProgressMonitor)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html#LONG"><B>LONG</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType</A>
-<DD>Type code for the primitive type "long".
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#LONG_LITERAL"><B>LONG_LITERAL</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#LONG_LITERAL_MIN_VALUE"><B>LONG_LITERAL_MIN_VALUE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#LOOSE_VAR_DECL"><B>LOOSE_VAR_DECL</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#LooseVarDecl"><B>LooseVarDecl</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LOWAST"><B>LOWAST</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LOZ"><B>LOZ</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LRM"><B>LRM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LSAQUO"><B>LSAQUO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LSQUO"><B>LSQUO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#LT"><B>LT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-11.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-13.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-12.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-12.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-13.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-13.html
deleted file mode 100644
index dfcb18c9..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-13.html
+++ /dev/null
@@ -1,755 +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:19 CDT 2008 -->
-<TITLE>
-M-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="M-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-12.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-14.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-13.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-13.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_M_"><!-- --></A><H2>
-<B>M</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_APP_RETURNTYPE"><B>M_APP_RETURNTYPE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names contain return type (appended)
- e.g.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_APP_TYPE_PARAMETERS"><B>M_APP_TYPE_PARAMETERS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names contain type parameters appended.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_CATEGORY"><B>M_CATEGORY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Prepend first category (if any) to method.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_EXCEPTIONS"><B>M_EXCEPTIONS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names contain thrown exceptions.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html#M_FORMAT_EXISTING"><B>M_FORMAT_EXISTING</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
-<DD>This mode is used for formatting existing code when all formatter options should be used.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html#M_FORMAT_NEW"><B>M_FORMAT_NEW</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
-<DD>This mode is used for formatting new code when some formatter options should not be used.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_FULLY_QUALIFIED"><B>M_FULLY_QUALIFIED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names are fully qualified.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PARAMETER_NAMES"><B>M_PARAMETER_NAMES</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names contain parameter names.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PARAMETER_TYPES"><B>M_PARAMETER_TYPES</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names contain parameter types.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_POST_QUALIFIED"><B>M_POST_QUALIFIED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names are post qualified.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PRE_RETURNTYPE"><B>M_PRE_RETURNTYPE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names contain return type (appended)
- e.g.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#M_PRE_TYPE_PARAMETERS"><B>M_PRE_TYPE_PARAMETERS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Method names contain type parameters prepended.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MACR"><B>MACR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#MAGIC_LITERAL"><B>MAGIC_LITERAL</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IOpenable.html#makeConsistent(IProgressMonitor)"><B>makeConsistent(IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IOpenable.html" title="interface in org.eclipse.wst.jsdt.core">IOpenable</A>
-<DD>Makes this element consistent with its underlying resource or buffer
- by updating the element's structure and properties as necessary.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#MALFORMED"><B>MALFORMED</B></A> -
-Static variable in class 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>
-<DD>Flag constant (bit mask, value 1) indicating that there is something
- not quite right with this AST node.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html#mangle(java.lang.String)"><B>mangle(String)</B></A> -
-Static method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsNameManglerUtil.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsNameManglerUtil</A>
-<DD>Mangle string to WAS-like specifications
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#MAP"><B>MAP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#MARKER_ANNOTATION"><B>MARKER_ANNOTATION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#MARQUEE"><B>MARQUEE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MaskedCatch"><B>MaskedCatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#match(char[], char[], boolean)"><B>match(char[], char[], boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers true if the pattern matches the given name, false otherwise.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#match(char[], int, int, char[], int, int, boolean)"><B>match(char[], int, int, char[], int, int, boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers true if a sub-pattern matches the subpart of the given name, false otherwise.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.AnonymousClassDeclaration, java.lang.Object)"><B>match(AnonymousClassDeclaration, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ArrayAccess, java.lang.Object)"><B>match(ArrayAccess, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ArrayCreation, java.lang.Object)"><B>match(ArrayCreation, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ArrayInitializer, java.lang.Object)"><B>match(ArrayInitializer, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ArrayType, java.lang.Object)"><B>match(ArrayType, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.AssertStatement, java.lang.Object)"><B>match(AssertStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.Assignment, java.lang.Object)"><B>match(Assignment, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.Block, java.lang.Object)"><B>match(Block, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.BlockComment, java.lang.Object)"><B>match(BlockComment, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.BooleanLiteral, java.lang.Object)"><B>match(BooleanLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.BreakStatement, java.lang.Object)"><B>match(BreakStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.CastExpression, java.lang.Object)"><B>match(CastExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.FunctionExpression, java.lang.Object)"><B>match(FunctionExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.CatchClause, java.lang.Object)"><B>match(CatchClause, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.CharacterLiteral, java.lang.Object)"><B>match(CharacterLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.RegularExpressionLiteral, java.lang.Object)"><B>match(RegularExpressionLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ClassInstanceCreation, java.lang.Object)"><B>match(ClassInstanceCreation, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.JavaScriptUnit, java.lang.Object)"><B>match(JavaScriptUnit, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ConditionalExpression, java.lang.Object)"><B>match(ConditionalExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ConstructorInvocation, java.lang.Object)"><B>match(ConstructorInvocation, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ContinueStatement, java.lang.Object)"><B>match(ContinueStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.DoStatement, java.lang.Object)"><B>match(DoStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.EmptyStatement, java.lang.Object)"><B>match(EmptyStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.EnhancedForStatement, java.lang.Object)"><B>match(EnhancedForStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ExpressionStatement, java.lang.Object)"><B>match(ExpressionStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.FieldAccess, java.lang.Object)"><B>match(FieldAccess, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.FieldDeclaration, java.lang.Object)"><B>match(FieldDeclaration, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ForStatement, java.lang.Object)"><B>match(ForStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ForInStatement, java.lang.Object)"><B>match(ForInStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.IfStatement, java.lang.Object)"><B>match(IfStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ImportDeclaration, java.lang.Object)"><B>match(ImportDeclaration, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.InferredType, java.lang.Object)"><B>match(InferredType, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.InfixExpression, java.lang.Object)"><B>match(InfixExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.InstanceofExpression, java.lang.Object)"><B>match(InstanceofExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.Initializer, java.lang.Object)"><B>match(Initializer, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.JSdoc, java.lang.Object)"><B>match(JSdoc, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.LabeledStatement, java.lang.Object)"><B>match(LabeledStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.LineComment, java.lang.Object)"><B>match(LineComment, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ListExpression, java.lang.Object)"><B>match(ListExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.MemberRef, java.lang.Object)"><B>match(MemberRef, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.FunctionRef, java.lang.Object)"><B>match(FunctionRef, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.FunctionRefParameter, java.lang.Object)"><B>match(FunctionRefParameter, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.FunctionDeclaration, java.lang.Object)"><B>match(FunctionDeclaration, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.FunctionInvocation, java.lang.Object)"><B>match(FunctionInvocation, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.Modifier, java.lang.Object)"><B>match(Modifier, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.NullLiteral, java.lang.Object)"><B>match(NullLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.UndefinedLiteral, java.lang.Object)"><B>match(UndefinedLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.NumberLiteral, java.lang.Object)"><B>match(NumberLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.PackageDeclaration, java.lang.Object)"><B>match(PackageDeclaration, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ParameterizedType, java.lang.Object)"><B>match(ParameterizedType, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ParenthesizedExpression, java.lang.Object)"><B>match(ParenthesizedExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.PostfixExpression, java.lang.Object)"><B>match(PostfixExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.PrefixExpression, java.lang.Object)"><B>match(PrefixExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.PrimitiveType, java.lang.Object)"><B>match(PrimitiveType, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.QualifiedName, java.lang.Object)"><B>match(QualifiedName, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.QualifiedType, java.lang.Object)"><B>match(QualifiedType, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ReturnStatement, java.lang.Object)"><B>match(ReturnStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SimpleName, java.lang.Object)"><B>match(SimpleName, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SimpleType, java.lang.Object)"><B>match(SimpleType, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SingleVariableDeclaration, java.lang.Object)"><B>match(SingleVariableDeclaration, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.StringLiteral, java.lang.Object)"><B>match(StringLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SuperConstructorInvocation, java.lang.Object)"><B>match(SuperConstructorInvocation, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SuperFieldAccess, java.lang.Object)"><B>match(SuperFieldAccess, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SuperMethodInvocation, java.lang.Object)"><B>match(SuperMethodInvocation, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SwitchCase, java.lang.Object)"><B>match(SwitchCase, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.SwitchStatement, java.lang.Object)"><B>match(SwitchStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.TagElement, java.lang.Object)"><B>match(TagElement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.TextElement, java.lang.Object)"><B>match(TextElement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ThisExpression, java.lang.Object)"><B>match(ThisExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ThrowStatement, java.lang.Object)"><B>match(ThrowStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.TryStatement, java.lang.Object)"><B>match(TryStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.TypeDeclaration, java.lang.Object)"><B>match(TypeDeclaration, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.TypeDeclarationStatement, java.lang.Object)"><B>match(TypeDeclarationStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.TypeLiteral, java.lang.Object)"><B>match(TypeLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.TypeParameter, java.lang.Object)"><B>match(TypeParameter, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.VariableDeclarationExpression, java.lang.Object)"><B>match(VariableDeclarationExpression, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.VariableDeclarationFragment, java.lang.Object)"><B>match(VariableDeclarationFragment, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.VariableDeclarationStatement, java.lang.Object)"><B>match(VariableDeclarationStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.WhileStatement, java.lang.Object)"><B>match(WhileStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.WithStatement, java.lang.Object)"><B>match(WithStatement, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.WildcardType, java.lang.Object)"><B>match(WildcardType, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>Returns whether the given node and the other object match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ObjectLiteral, java.lang.Object)"><B>match(ObjectLiteral, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html#match(org.eclipse.wst.jsdt.core.dom.ObjectLiteralField, java.lang.Object)"><B>match(ObjectLiteralField, Object)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTMatcher.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTMatcher</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#matchesDecodedKey(org.eclipse.wst.jsdt.core.search.SearchPattern)"><B>matchesDecodedKey(SearchPattern)</B></A> -
-Method in class 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>
-<DD>Returns whether this pattern matches the given pattern (representing a decoded index key).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#matchesName(char[], char[])"><B>matchesName(char[], char[])</B></A> -
-Method in class 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>
-<DD>Returns whether the given name matches the given pattern.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html#MAYBE_THIS"><B>MAYBE_THIS</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MDASH"><B>MDASH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html#measureIndentInSpaces(java.lang.CharSequence, int)"><B>measureIndentInSpaces(CharSequence, int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.formatter.<A HREF="../org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html" title="class in org.eclipse.wst.jsdt.core.formatter">IndentManipulation</A>
-<DD>Returns the indentation of the given line in space equivalents.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html#measureIndentUnits(java.lang.CharSequence, int, int)"><B>measureIndentUnits(CharSequence, int, int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.formatter.<A HREF="../org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html" title="class in org.eclipse.wst.jsdt.core.formatter">IndentManipulation</A>
-<DD>Returns the indentation of the given line in indentation units.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#MEMBER_PROPERTY"><B>MEMBER_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ClassInstanceCreation</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#MEMBER_REF"><B>MEMBER_REF</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>MemberRef</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#MEMBER_VALUEPAIR"><B>MEMBER_VALUEPAIR</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/MemberRef.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>MemberRef</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>AST node for a member reference within a doc comment
- (<A HREF="../org/eclipse/wst/jsdt/core/dom/JSdoc.html" title="class in org.eclipse.wst.jsdt.core.dom"><CODE>JSdoc</CODE></A>).<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/MemoryIndex.html" title="class in org.eclipse.wst.jsdt.internal.core.index"><B>MemoryIndex</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/internal/core/index/package-summary.html">org.eclipse.wst.jsdt.internal.core.index</A><DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#MENU"><B>MENU</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Message.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>Message</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Error message used to report potential errors found during the AST parsing
- or name resolution.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Message.html#Message(java.lang.String, int)"><B>Message(String, int)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Message.html" title="class in org.eclipse.wst.jsdt.core.dom">Message</A>
-<DD>Creates a message.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Message.html#Message(java.lang.String, int, int)"><B>Message(String, int, int)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Message.html" title="class in org.eclipse.wst.jsdt.core.dom">Message</A>
-<DD>Creates a message.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AssertStatement.html#MESSAGE_PROPERTY"><B>MESSAGE_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/AssertStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">AssertStatement</A>
-<DD>The "message" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/Messages.html" title="class in org.eclipse.wst.jsdt.core"><B>Messages</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/libraries/Messages.html" title="class in org.eclipse.wst.jsdt.libraries"><B>Messages</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/libraries/package-summary.html">org.eclipse.wst.jsdt.libraries</A><DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/Messages.html" title="class in org.eclipse.wst.jsdt.ui"><B>Messages</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/Messages.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>Messages</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/Messages.html" title="class in org.eclipse.wst.jsdt.web.ui"><B>Messages</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/ui/package-summary.html">org.eclipse.wst.jsdt.web.ui</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/Messages.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline"><B>Messages</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-summary.html">org.eclipse.wst.jsdt.web.ui.views.contentoutline</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#META"><B>META</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/IBinding.html#METHOD"><B>METHOD</B></A> -
-Static variable in interface 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>
-<DD>Kind constant (value 4) indicating a method or constructor binding.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#METHOD"><B>METHOD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a function, method or constructor.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#METHOD"><B>METHOD</B></A> -
-Static variable in interface 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>
-<DD>The searched element is a method.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_DECLARATION"><B>METHOD_DECLARATION</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a declaration of a function.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_IMPORT"><B>METHOD_IMPORT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is an import of reference to a static method.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_NAME_REFERENCE"><B>METHOD_NAME_REFERENCE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a reference to a function name.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionExpression.html#METHOD_PROPERTY"><B>METHOD_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionExpression</A>
-<DD>The "type" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#METHOD_REF"><B>METHOD_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a reference to a method.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMethod.html#methodBinding"><B>methodBinding</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMethod.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredMethod</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodButWithConstructorName"><B>MethodButWithConstructorName</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/MethodDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search"><B>MethodDeclarationMatch</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/search/package-summary.html">org.eclipse.wst.jsdt.core.search</A><DD>A JavaScript search match that represents a method declaration.<DT><A HREF="../org/eclipse/wst/jsdt/core/search/MethodDeclarationMatch.html#MethodDeclarationMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>MethodDeclarationMatch(IJavaScriptElement, int, int, int, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/MethodDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">MethodDeclarationMatch</A>
-<DD>Creates a new method declaration match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodMissingDeprecatedAnnotation"><B>MethodMissingDeprecatedAnnotation</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodMustOverride"><B>MethodMustOverride</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodMustOverrideOrImplement"><B>MethodMustOverrideOrImplement</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodNameClash"><B>MethodNameClash</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodReducesVisibility"><B>MethodReducesVisibility</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search"><B>MethodReferenceMatch</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/search/package-summary.html">org.eclipse.wst.jsdt.core.search</A><DD>A JavaScript search match that represents a method reference.<DT><A HREF="../org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html#MethodReferenceMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, boolean, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>MethodReferenceMatch(IJavaScriptElement, int, int, int, boolean, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">MethodReferenceMatch</A>
-<DD>Creates a new method reference match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html#MethodReferenceMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, boolean, boolean, boolean, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>MethodReferenceMatch(IJavaScriptElement, int, int, int, boolean, boolean, boolean, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">MethodReferenceMatch</A>
-<DD>Creates a new method reference match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html#MethodReferenceMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, boolean, boolean, boolean, boolean, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>MethodReferenceMatch(IJavaScriptElement, int, int, int, boolean, boolean, boolean, boolean, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/MethodReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">MethodReferenceMatch</A>
-<DD>Creates a new method reference match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodRelated"><B>MethodRelated</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodRequiresBody"><B>MethodRequiresBody</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodReturnsVoid"><B>MethodReturnsVoid</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#methods"><B>methods</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MethodVarargsArgumentNeedCast"><B>MethodVarargsArgumentNeedCast</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MICRO"><B>MICRO</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MIDDOT"><B>MIDDOT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#MINUS"><B>MINUS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>Subtraction "-" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html#MINUS"><B>MINUS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression.Operator</A>
-<DD>Unary minus "-" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MINUS"><B>MINUS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html#MINUS_ASSIGN"><B>MINUS_ASSIGN</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment.Operator</A>
-<DD>-= operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingArgumentsForParameterizedMemberType"><B>MissingArgumentsForParameterizedMemberType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingEnclosingInstance"><B>MissingEnclosingInstance</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingEnclosingInstanceForConstructorCall"><B>MissingEnclosingInstanceForConstructorCall</B></A> -
-Static variable in interface 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>
-<DD>Inner types related problems
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingEnumConstantCase"><B>MissingEnumConstantCase</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingOverrideAnnotation"><B>MissingOverrideAnnotation</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingReturnType"><B>MissingReturnType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingSemiColon"><B>MissingSemiColon</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingSerialVersion"><B>MissingSerialVersion</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MissingValueForAnnotationMember"><B>MissingValueForAnnotationMember</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#MIXED"><B>MIXED</B></A> -
-Static variable in class 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>
-<DD>
- FORMATTER / Possible value for the option FORMATTER_TAB_CHAR
-
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#MODEL_ID"><B>MODEL_ID</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>The identifier for the JavaScript model
- (value <code>"org.eclipse.wst.jsdt.core.jsmodel"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#modificationCount()"><B>modificationCount()</B></A> -
-Method in class 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>
-<DD>Returns the modification count for this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#MODIFIER"><B>MODIFIER</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>Modifier</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>Modifier</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Modifier node.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>Modifier.ModifierKeyword</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Modifier keywords (typesafe enumeration).<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/BodyDeclaration.html#modifiers()"><B>modifiers()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/BodyDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">BodyDeclaration</A>
-<DD>Returns the live ordered list of modifiers and annotations
- of this declaration .
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html#modifiers()"><B>modifiers()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">SingleVariableDeclaration</A>
-<DD>Returns the live ordered list of modifiers and annotations
- of this declaration (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html#modifiers()"><B>modifiers()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationExpression</A>
-<DD>Returns the live ordered list of modifiers and annotations
- of this declaration (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html#modifiers()"><B>modifiers()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationStatement</A>
-<DD>Returns the live ordered list of modifiers and annotations
- of this declaration (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html#MODIFIERS2_PROPERTY"><B>MODIFIERS2_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldDeclaration</A>
-<DD>The "modifiers" structural property of this node type (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#MODIFIERS2_PROPERTY"><B>MODIFIERS2_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<DD>The "modifiers" structural property of this node type (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html#MODIFIERS2_PROPERTY"><B>MODIFIERS2_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html" title="class in org.eclipse.wst.jsdt.core.dom">Initializer</A>
-<DD>The "modifiers" structural property of this node type (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html#MODIFIERS2_PROPERTY"><B>MODIFIERS2_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">SingleVariableDeclaration</A>
-<DD>The "modifiers" structural property of this node type (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#MODIFIERS2_PROPERTY"><B>MODIFIERS2_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeDeclaration</A>
-<DD>The "modifiers" structural property of this node type (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html#MODIFIERS2_PROPERTY"><B>MODIFIERS2_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationExpression</A>
-<DD>The "modifiers" structural property of this node type (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html#MODIFIERS2_PROPERTY"><B>MODIFIERS2_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationStatement</A>
-<DD>The "modifiers" structural property of this node type (added in JLS3 API).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html#MODIFIERS_PROPERTY"><B>MODIFIERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldDeclaration</A>
-<DD>The "modifiers" structural property of this node type (JLS2 API only).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#MODIFIERS_PROPERTY"><B>MODIFIERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<DD>The "modifiers" structural property of this node type (JLS2 API only).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html#MODIFIERS_PROPERTY"><B>MODIFIERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html" title="class in org.eclipse.wst.jsdt.core.dom">Initializer</A>
-<DD>The "modifiers" structural property of this node type (JLS2 API only).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html#MODIFIERS_PROPERTY"><B>MODIFIERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">SingleVariableDeclaration</A>
-<DD>The "modifiers" structural property of this node type (JLS2 API only).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#MODIFIERS_PROPERTY"><B>MODIFIERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeDeclaration</A>
-<DD>The "modifiers" structural property of this node type (JLS2 API only).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html#MODIFIERS_PROPERTY"><B>MODIFIERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationExpression</A>
-<DD>The "modifiers" structural property of this node type (JLS2 API only).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html#MODIFIERS_PROPERTY"><B>MODIFIERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationStatement</A>
-<DD>The "modifiers" structural property of this node type (JLS2 API only).
-<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html#monitor"><B>monitor</B></A> -
-Variable in class org.eclipse.wst.jsdt.internal.core.index.<A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html" title="class in org.eclipse.wst.jsdt.internal.core.index">Index</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModel.html#move(org.eclipse.wst.jsdt.core.IJavaScriptElement[], org.eclipse.wst.jsdt.core.IJavaScriptElement[], org.eclipse.wst.jsdt.core.IJavaScriptElement[], java.lang.String[], boolean, IProgressMonitor)"><B>move(IJavaScriptElement[], IJavaScriptElement[], IJavaScriptElement[], String[], boolean, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModel.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModel</A>
-<DD>Moves the given elements to the specified container(s).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#move(IPath, int, int, org.eclipse.wst.jsdt.core.IIncludePathEntry, IProgressMonitor)"><B>move(IPath, int, int, IIncludePathEntry, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
-<DD>Moves the resource of this package fragment root to the destination path
- as specified by <code>IResource.move(IPath,int,IProgressMonitor)</code>
- but excluding nested source folders.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ISourceManipulation.html#move(org.eclipse.wst.jsdt.core.IJavaScriptElement, org.eclipse.wst.jsdt.core.IJavaScriptElement, java.lang.String, boolean, IProgressMonitor)"><B>move(IJavaScriptElement, IJavaScriptElement, String, boolean, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ISourceManipulation.html" title="interface in org.eclipse.wst.jsdt.core">ISourceManipulation</A>
-<DD>Moves this element to the given container.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#MOVE"><B>MOVE</B></A> -
-Static variable in interface 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>
-<DD>Refactoring id of the 'Move' refactoring (value:
- <code>org.eclipse.wst.jsdt.ui.move</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#MOVE_METHOD"><B>MOVE_METHOD</B></A> -
-Static variable in interface 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>
-<DD>Refactoring id of the 'Move Method' refactoring (value:
- <code>org.eclipse.wst.jsdt.ui.move.method</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html#MOVE_PROCESSOR"><B>MOVE_PROCESSOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html" title="interface in org.eclipse.wst.jsdt.ui.refactoring">IRefactoringProcessorIds</A>
-<DD>Processor ID of the move resource processor
- (value <code>"org.eclipse.wst.jsdt.ui.MoveProcessor"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#MOVE_STATIC_MEMBERS"><B>MOVE_STATIC_MEMBERS</B></A> -
-Static variable in interface 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>
-<DD>Refactoring id of the 'Move Static Members' refactoring (value:
- <code>org.eclipse.wst.jsdt.ui.move.static</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html#MOVE_STATIC_MEMBERS_PROCESSOR"><B>MOVE_STATIC_MEMBERS_PROCESSOR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html" title="interface in org.eclipse.wst.jsdt.ui.refactoring">IRefactoringProcessorIds</A>
-<DD>Processor ID of the move static member processor
- (value <code>"org.eclipse.wst.jsdt.ui.MoveStaticMemberProcessor"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>MoveDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the move refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.html#MoveDescriptor()"><B>MoveDescriptor()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">MoveDescriptor</A>
-<DD>Creates a new refactoring descriptor.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>MoveMethodDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the move method refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.html#MoveMethodDescriptor()"><B>MoveMethodDescriptor()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveMethodDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">MoveMethodDescriptor</A>
-<DD>Creates a new refactoring descriptor.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>MoveStaticMembersDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the move static members refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.html#MoveStaticMembersDescriptor()"><B>MoveStaticMembersDescriptor()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/MoveStaticMembersDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">MoveStaticMembersDescriptor</A>
-<DD>Creates a new refactoring descriptor.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MU_L"><B>MU_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#MU_U"><B>MU_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MustDefineEitherDimensionExpressionsOrInitializer"><B>MustDefineEitherDimensionExpressionsOrInitializer</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#MustSpecifyPackage"><B>MustSpecifyPackage</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-12.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-14.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-13.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-13.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-14.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-14.html
deleted file mode 100644
index fd75a569..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-14.html
+++ /dev/null
@@ -1,1048 +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:19 CDT 2008 -->
-<TITLE>
-N-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="N-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-13.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-14.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_N_"><!-- --></A><H2>
-<B>N</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NABLA"><B>NABLA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Name.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>Name</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Abstract base class for all AST nodes that represent names.<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMember.html#name"><B>name</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMember.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredMember</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NAME_COLLISION"><B>NAME_COLLISION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
-<DD>Status constant indicating that a naming collision would occur
- if the operation proceeded.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ClassInstanceCreation</A>
-<DD>The "name" structural property of this node type .
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FieldAccess.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldAccess</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionInvocation</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRef</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRefParameter.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRefParameter.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRefParameter</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">ImportDeclaration</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/MemberRef.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/MemberRef.html" title="class in org.eclipse.wst.jsdt.core.dom">MemberRef</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">PackageDeclaration</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedName.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedName.html" title="class in org.eclipse.wst.jsdt.core.dom">QualifiedName</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedType.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedType.html" title="class in org.eclipse.wst.jsdt.core.dom">QualifiedType</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SimpleType.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SimpleType.html" title="class in org.eclipse.wst.jsdt.core.dom">SimpleType</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">SingleVariableDeclaration</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperFieldAccess.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperFieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperFieldAccess</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperMethodInvocation</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/TypeDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeDeclaration</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/TypeParameter.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/TypeParameter.html" title="class in org.eclipse.wst.jsdt.core.dom">TypeParameter</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationFragment.html#NAME_PROPERTY"><B>NAME_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/VariableDeclarationFragment.html" title="class in org.eclipse.wst.jsdt.core.dom">VariableDeclarationFragment</A>
-<DD>The "name" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#NAME_REFERENCE"><B>NAME_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html#nameEquals(java.lang.String)"><B>nameEquals(String)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">NodeHelper</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMember.html#nameStart"><B>nameStart</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMember.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredMember</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/NamingConventions.html" title="class in org.eclipse.wst.jsdt.core"><B>NamingConventions</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Provides methods for computing JavaScript-specific names.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#NATIVE"><B>NATIVE</B></A> -
-Static variable in class 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>
-<DD>"native" modifier constant (bit mask).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html#NATIVE_KEYWORD"><B>NATIVE_KEYWORD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html" title="class in org.eclipse.wst.jsdt.core.dom">Modifier.ModifierKeyword</A>
-<DD>"native" modifier with flag value <A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#NATIVE"><CODE>Modifier.NATIVE</CODE></A>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NativeMethodsCannotBeStrictfp"><B>NativeMethodsCannotBeStrictfp</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#NATURE_ID"><B>NATURE_ID</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>The identifier for the JavaScript nature
- (value <code>"org.eclipse.wst.jsdt.core.jsnature"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NBSP"><B>NBSP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NDASH"><B>NDASH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NE"><B>NE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html#NEEDS_FULL_BUILD"><B>NEEDS_FULL_BUILD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html" title="class in org.eclipse.wst.jsdt.core.compiler">ValidationParticipant</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateConstructorAccess"><B>NeedToEmulateConstructorAccess</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateFieldReadAccess"><B>NeedToEmulateFieldReadAccess</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateFieldWriteAccess"><B>NeedToEmulateFieldWriteAccess</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NeedToEmulateMethodAccess"><B>NeedToEmulateMethodAccess</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#NEVER"><B>NEVER</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Possible configurable option value.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html#NEW_PARTITION_TYPE"><B>NEW_PARTITION_TYPE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">JsDataTypes</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newAccessRule(IPath, int)"><B>newAccessRule(IPath, int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new access rule with the given file pattern and kind.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newAnonymousClassDeclaration()"><B>newAnonymousClassDeclaration()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented anonymous class declaration
- node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newArrayAccess()"><B>newArrayAccess()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented array access expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newArrayCreation()"><B>newArrayCreation()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented array creation expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newArrayInitializer()"><B>newArrayInitializer()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented array initializer node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newArrayType(org.eclipse.wst.jsdt.core.dom.Type)"><B>newArrayType(Type)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented array type node with the given
- component type, which may be another array type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newArrayType(org.eclipse.wst.jsdt.core.dom.Type, int)"><B>newArrayType(Type, int)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented array type node with the given
- element type and number of dimensions.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newAssertStatement()"><B>newAssertStatement()</B></A> -
-Method in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newAssignment()"><B>newAssignment()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented assignment expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newAST(int)"><B>newAST(int)</B></A> -
-Static method in class 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>
-<DD>Creates a new JavaScript abstract syntax tree
- (AST) following the specified set of API rules.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newBlock()"><B>newBlock()</B></A> -
-Method in class 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>
-<DD>Creates an unparented block node owned by this AST, for an empty list
- of statements.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newBlockComment()"><B>newBlockComment()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new block comment placeholder node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newBooleanLiteral(boolean)"><B>newBooleanLiteral(boolean)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented boolean literal node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newBreakStatement()"><B>newBreakStatement()</B></A> -
-Method in class 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>
-<DD>Creates an unparented break statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newCastExpression()"><B>newCastExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented cast expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newCatchClause()"><B>newCatchClause()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented catch clause node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newCharacterLiteral()"><B>newCharacterLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented character literal node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newClassInstanceCreation()"><B>newClassInstanceCreation()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented class instance creation
- ("new") expression node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewClassWizardPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Wizard page to create a new class.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html#NewClassWizardPage()"><B>NewClassWizardPage()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewClassWizardPage</A>
-<DD>Creates a new <code>NewClassWizardPage</code>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newCompilationUnit()"><B>newCompilationUnit()</B></A> -
-Method in class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newJavaScriptUnit()"><CODE>AST.newJavaScriptUnit()</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newConditionalExpression()"><B>newConditionalExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented conditional expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newConstructorInvocation()"><B>newConstructorInvocation()</B></A> -
-Method in class 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>
-<DD>Creates an unparented alternate constructor ("this(...);") invocation
- statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newContainerEntry(IPath)"><B>newContainerEntry(IPath)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_CONTAINER</code>
- for the given path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newContainerEntry(IPath, boolean)"><B>newContainerEntry(IPath, boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_CONTAINER</code>
- for the given path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newContainerEntry(IPath, org.eclipse.wst.jsdt.core.IAccessRule[], org.eclipse.wst.jsdt.core.IIncludePathAttribute[], boolean)"><B>newContainerEntry(IPath, IAccessRule[], IIncludePathAttribute[], boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_CONTAINER</code>
- for the given path.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewContainerWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewContainerWizardPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Wizard page that acts as a base class for wizard pages that create new JavaScript elements.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewContainerWizardPage.html#NewContainerWizardPage(java.lang.String)"><B>NewContainerWizardPage(String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewContainerWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewContainerWizardPage</A>
-<DD>Create a new <code>NewContainerWizardPage</code>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newContinueStatement()"><B>newContinueStatement()</B></A> -
-Method in class 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>
-<DD>Creates an unparented continue statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newDoStatement()"><B>newDoStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented do statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewElementWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewElementWizardPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Base class for wizard page responsible to create JavaScript elements.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewElementWizardPage.html#NewElementWizardPage(java.lang.String)"><B>NewElementWizardPage(String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewElementWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewElementWizardPage</A>
-<DD>Creates a <code>NewElementWizardPage</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newEmptyStatement()"><B>newEmptyStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented empty statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newEnhancedForStatement()"><B>newEnhancedForStatement()</B></A> -
-Method in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html#newEvaluationContext()"><B>newEvaluationContext()</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptProject</A>
-<DD>Creates a new evaluation context.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newExpressionStatement(org.eclipse.wst.jsdt.core.dom.Expression)"><B>newExpressionStatement(Expression)</B></A> -
-Method in class 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>
-<DD>Creates a new unparented expression statement node owned by this AST,
- for the given expression.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFieldAccess()"><B>newFieldAccess()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented field access expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFieldDeclaration(org.eclipse.wst.jsdt.core.dom.VariableDeclarationFragment)"><B>newFieldDeclaration(VariableDeclarationFragment)</B></A> -
-Method in class 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>
-<DD>Creates a new unparented field declaration node owned by this AST,
- for the given variable declaration fragment.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newForInStatement()"><B>newForInStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented for..in statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newForStatement()"><B>newForStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented for statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionDeclaration()"><B>newFunctionDeclaration()</B></A> -
-Method in class 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>
-<DD>Creates an unparented method declaration node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionExpression()"><B>newFunctionExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented function expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionInvocation()"><B>newFunctionInvocation()</B></A> -
-Method in class 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>
-<DD>Creates an unparented method invocation expression node owned by this
- AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionRef()"><B>newFunctionRef()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new method reference node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionRefParameter()"><B>newFunctionRefParameter()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new method reference node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newIfStatement()"><B>newIfStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented if statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newImportDeclaration()"><B>newImportDeclaration()</B></A> -
-Method in class 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>
-<DD>Creates an unparented import declaration node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newIncludepathAttribute(java.lang.String, java.lang.String)"><B>newIncludepathAttribute(String, String)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath attribute with the given name and the given value.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newInferredType(java.lang.String)"><B>newInferredType(String)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new inferred type node with the given
- type name.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newInfixExpression()"><B>newInfixExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented infix expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newInitializer()"><B>newInitializer()</B></A> -
-Method in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newInstanceofExpression()"><B>newInstanceofExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented instanceof expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewInterfaceWizardPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Wizard page to create a new interface.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html#NewInterfaceWizardPage()"><B>NewInterfaceWizardPage()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewInterfaceWizardPage</A>
-<DD>Create a new <code>NewInterfaceWizardPage</code>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newJavadoc()"><B>newJavadoc()</B></A> -
-Method in class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newJSdoc()"><CODE>AST.newJSdoc()</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewJavaProjectWizardPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Standard wizard page for creating new JavaScript projects.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html#NewJavaProjectWizardPage(IWorkspaceRoot, WizardNewProjectCreationPage)"><B>NewJavaProjectWizardPage(IWorkspaceRoot, WizardNewProjectCreationPage)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewJavaProjectWizardPage</A>
-<DD>Creates a JavaScript project wizard creation page.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newJavaScriptUnit()"><B>newJavaScriptUnit()</B></A> -
-Method in class 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>
-<DD>Creates an unparented javaScript unit node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newJSdoc()"><B>newJSdoc()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new doc comment node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newLabeledStatement()"><B>newLabeledStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented labeled statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newLibraryEntry(IPath, IPath, IPath)"><B>newLibraryEntry(IPath, IPath, IPath)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new non-exported includepath entry of kind <code>CPE_LIBRARY</code> for the
- JAR or folder identified by the given absolute path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newLibraryEntry(IPath, IPath, IPath, boolean)"><B>newLibraryEntry(IPath, IPath, IPath, boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_LIBRARY</code> for the JAR or folder
- identified by the given absolute path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newLibraryEntry(IPath, IPath, IPath, org.eclipse.wst.jsdt.core.IAccessRule[], org.eclipse.wst.jsdt.core.IIncludePathAttribute[], boolean)"><B>newLibraryEntry(IPath, IPath, IPath, IAccessRule[], IIncludePathAttribute[], boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_LIBRARY</code> for the JAR or folder
- identified by the given absolute path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newLineComment()"><B>newLineComment()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new line comment placeholder node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newListExpression()"><B>newListExpression()</B></A> -
-Method in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newMemberRef()"><B>newMemberRef()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new member reference node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newMethodDeclaration()"><B>newMethodDeclaration()</B></A> -
-Method in class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionDeclaration()"><CODE>AST.newFunctionDeclaration()</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newMethodInvocation()"><B>newMethodInvocation()</B></A> -
-Method in class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionInvocation()"><CODE>AST.newFunctionInvocation()</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newMethodRef()"><B>newMethodRef()</B></A> -
-Method in class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionRef()"><CODE>AST.newFunctionRef()</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newMethodRefParameter()"><B>newMethodRefParameter()</B></A> -
-Method in class 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>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newFunctionRefParameter()"><CODE>AST.newFunctionRefParameter()</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newModifier(org.eclipse.wst.jsdt.core.dom.Modifier.ModifierKeyword)"><B>newModifier(Modifier.ModifierKeyword)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented modifier node for the given
- modifier.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newModifiers(int)"><B>newModifiers(int)</B></A> -
-Method in class 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>
-<DD>Creates and returns a list of new unparented modifier nodes
- for the given modifier flags.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newName(java.lang.String[])"><B>newName(String[])</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented name node for the given name
- segments.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newName(java.lang.String)"><B>newName(String)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented name node for the given name.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html#newNameLookup(org.eclipse.wst.jsdt.core.IJavaScriptUnit[])"><B>newNameLookup(IJavaScriptUnit[])</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html" title="interface in org.eclipse.wst.jsdt.core">ILookupScope</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html#newNameLookup(org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>newNameLookup(WorkingCopyOwner)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html" title="interface in org.eclipse.wst.jsdt.core">ILookupScope</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newNullLiteral()"><B>newNullLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented null literal node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newNumberLiteral(java.lang.String)"><B>newNumberLiteral(String)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented number literal node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newNumberLiteral()"><B>newNumberLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented number literal node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newObjectLiteral()"><B>newObjectLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented object literal expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newObjectLiteralField()"><B>newObjectLiteralField()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented object literal field expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newPackageDeclaration()"><B>newPackageDeclaration()</B></A> -
-Method in class 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>
-<DD>Creates an unparented package declaration node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewPackageWizardPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Wizard page to create a new package.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html#NewPackageWizardPage()"><B>NewPackageWizardPage()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewPackageWizardPage</A>
-<DD>Creates a new <code>NewPackageWizardPage</code>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newParameterizedType(org.eclipse.wst.jsdt.core.dom.Type)"><B>newParameterizedType(Type)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented parameterized type node with the
- given type and an empty list of type arguments.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newParenthesizedExpression()"><B>newParenthesizedExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented parenthesized expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#newParser(int)"><B>newParser(int)</B></A> -
-Static method in class 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>
-<DD>Creates a new object for creating a JavaScript abstract syntax tree
- (AST) following the specified set of API rules.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newPostfixExpression()"><B>newPostfixExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented postfix expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newPrefixExpression()"><B>newPrefixExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented prefix expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newPrimitiveType(org.eclipse.wst.jsdt.core.dom.PrimitiveType.Code)"><B>newPrimitiveType(PrimitiveType.Code)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented primitive type node with the given
- type code.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#NEWPROJECT_JRELIBRARY_INDEX"><B>NEWPROJECT_JRELIBRARY_INDEX</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preferences that specifies the current active JRE library.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#NEWPROJECT_JRELIBRARY_LIST"><B>NEWPROJECT_JRELIBRARY_LIST</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds a list of possible JRE libraries used by the New JavaScript Project wizard.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newProjectEntry(IPath)"><B>newProjectEntry(IPath)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new non-exported includepath entry of kind <code>CPE_PROJECT</code>
- for the project identified by the given absolute path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newProjectEntry(IPath, boolean)"><B>newProjectEntry(IPath, boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_PROJECT</code>
- for the project identified by the given absolute path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newProjectEntry(IPath, org.eclipse.wst.jsdt.core.IAccessRule[], boolean, org.eclipse.wst.jsdt.core.IIncludePathAttribute[], boolean)"><B>newProjectEntry(IPath, IAccessRule[], boolean, IIncludePathAttribute[], boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_PROJECT</code>
- for the project identified by the given absolute path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newQualifiedName(org.eclipse.wst.jsdt.core.dom.Name, org.eclipse.wst.jsdt.core.dom.SimpleName)"><B>newQualifiedName(Name, SimpleName)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented qualified name node for the given
- qualifier and simple name child node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newQualifiedType(org.eclipse.wst.jsdt.core.dom.Type, org.eclipse.wst.jsdt.core.dom.SimpleName)"><B>newQualifiedType(Type, SimpleName)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented qualified type node with
- the given qualifier type and name.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newRegion()"><B>newRegion()</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Returns a new empty region.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newRegularExpressionLiteral()"><B>newRegularExpressionLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new Regular Expression literal node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newReturnStatement()"><B>newReturnStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented return statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html#newSearchableNameEnvironment(org.eclipse.wst.jsdt.core.IJavaScriptUnit[])"><B>newSearchableNameEnvironment(IJavaScriptUnit[])</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html" title="interface in org.eclipse.wst.jsdt.core">ILookupScope</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html#newSearchableNameEnvironment(org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>newSearchableNameEnvironment(WorkingCopyOwner)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ILookupScope.html" title="interface in org.eclipse.wst.jsdt.core">ILookupScope</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSimpleName(java.lang.String)"><B>newSimpleName(String)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented simple name node for the given
- identifier.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSimpleType(org.eclipse.wst.jsdt.core.dom.Name)"><B>newSimpleType(Name)</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented simple type node with the given
- type name.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSingleVariableDeclaration()"><B>newSingleVariableDeclaration()</B></A> -
-Method in class 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>
-<DD>Creates an unparented single variable declaration node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newSourceEntry(IPath)"><B>newSourceEntry(IPath)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_SOURCE</code>
- for all files in the project's source folder identified by the given
- absolute workspace-relative path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newSourceEntry(IPath, IPath[])"><B>newSourceEntry(IPath, IPath[])</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_SOURCE</code>
- for the project's source folder identified by the given absolute
- workspace-relative path but excluding all source files with paths
- matching any of the given patterns.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newSourceEntry(IPath, IPath[], IPath)"><B>newSourceEntry(IPath, IPath[], IPath)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_SOURCE</code>
- for the project's source folder identified by the given absolute
- workspace-relative path but excluding all source files with paths
- matching any of the given patterns, and associated with a specific output location
- (that is, ".class" files are not going to the project default output location).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newSourceEntry(IPath, IPath[], IPath[], IPath)"><B>newSourceEntry(IPath, IPath[], IPath[], IPath)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_SOURCE</code>
- for the project's source folder identified by the given absolute
- workspace-relative path but excluding all source files with paths
- matching any of the given patterns, and associated with a specific output location
- (that is, ".class" files are not going to the project default output location).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newSourceEntry(IPath, IPath[], IPath[], IPath, org.eclipse.wst.jsdt.core.IIncludePathAttribute[])"><B>newSourceEntry(IPath, IPath[], IPath[], IPath, IIncludePathAttribute[])</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_SOURCE</code>
- for the project's source folder identified by the given absolute
- workspace-relative path using the given inclusion and exclusion patterns
- to determine which source files are included, and the given output path
- to control the output location of generated files.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newStringLiteral()"><B>newStringLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented string literal node for
- the empty string literal.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSuperConstructorInvocation()"><B>newSuperConstructorInvocation()</B></A> -
-Method in class 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>
-<DD>Creates an unparented alternate super constructor ("super(...);")
- invocation statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSuperFieldAccess()"><B>newSuperFieldAccess()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented super field access expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSuperMethodInvocation()"><B>newSuperMethodInvocation()</B></A> -
-Method in class 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>
-<DD>Creates an unparented "super" method invocation expression node owned by
- this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newSupertypeHierarchy(IProgressMonitor)"><B>newSupertypeHierarchy(IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type and all of its supertypes.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newSupertypeHierarchy(org.eclipse.wst.jsdt.core.IJavaScriptUnit[], IProgressMonitor)"><B>newSupertypeHierarchy(IJavaScriptUnit[], IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type and all of its supertypes, considering types in the given
- working copies.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newSupertypeHierarchy(org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><B>newSupertypeHierarchy(WorkingCopyOwner, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type and all of its supertypes, considering types in the
- working copies with the given owner.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSwitchCase()"><B>newSwitchCase()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented switch case statement node owned by
- this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newSwitchStatement()"><B>newSwitchStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented switch statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTagElement()"><B>newTagElement()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new tag element node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTextElement()"><B>newTextElement()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new text element node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newThisExpression()"><B>newThisExpression()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented "this" expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newThrowStatement()"><B>newThrowStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented throw statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTryStatement()"><B>newTryStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented try statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTypeDeclaration()"><B>newTypeDeclaration()</B></A> -
-Method in class 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>
-<DD>Creates an unparented class declaration node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTypeDeclarationStatement(org.eclipse.wst.jsdt.core.dom.TypeDeclaration)"><B>newTypeDeclarationStatement(TypeDeclaration)</B></A> -
-Method in class 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>
-<DD>Creates a new unparented local type declaration statement node
- owned by this AST, for the given type declaration.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTypeDeclarationStatement(org.eclipse.wst.jsdt.core.dom.AbstractTypeDeclaration)"><B>newTypeDeclarationStatement(AbstractTypeDeclaration)</B></A> -
-Method in class 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>
-<DD>Creates a new unparented local type declaration statement node
- owned by this AST, for the given type declaration.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IRegion, IProgressMonitor)"><B>newTypeHierarchy(IRegion, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptProject</A>
-<DD>Creates and returns a type hierarchy for all types in the given
- region, considering subtypes within that region.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IRegion, org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><B>newTypeHierarchy(IRegion, WorkingCopyOwner, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptProject</A>
-<DD>Creates and returns a type hierarchy for all types in the given
- region, considering subtypes within that region and considering types in the
- working copies with the given owner.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IType, org.eclipse.wst.jsdt.core.IRegion, IProgressMonitor)"><B>newTypeHierarchy(IType, IRegion, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptProject</A>
-<DD>Creates and returns a type hierarchy for the given type considering
- subtypes in the specified region.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IType, org.eclipse.wst.jsdt.core.IRegion, org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><B>newTypeHierarchy(IType, IRegion, WorkingCopyOwner, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptProject</A>
-<DD>Creates and returns a type hierarchy for the given type considering
- subtypes in the specified region and considering types in the
- working copies with the given owner.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IJavaScriptProject, IProgressMonitor)"><B>newTypeHierarchy(IJavaScriptProject, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type, all of its supertypes, and all its subtypes
- in the context of the given project.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IJavaScriptProject, org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><B>newTypeHierarchy(IJavaScriptProject, WorkingCopyOwner, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type, all of its supertypes, and all its subtypes
- in the context of the given project, considering types in the
- working copies with the given owner.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(IProgressMonitor)"><B>newTypeHierarchy(IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type, all of its supertypes, and all its subtypes in the workspace.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IJavaScriptUnit[], IProgressMonitor)"><B>newTypeHierarchy(IJavaScriptUnit[], IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type, all of its supertypes, and all its subtypes in the workspace,
- considering types in the given working copies.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IWorkingCopy[], IProgressMonitor)"><B>newTypeHierarchy(IWorkingCopy[], IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IJavaScriptUnit[], IProgressMonitor)"><CODE>IType.newTypeHierarchy(IJavaScriptUnit[], IProgressMonitor)</CODE></A> instead</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><B>newTypeHierarchy(WorkingCopyOwner, IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
-<DD>Creates and returns a type hierarchy for this type containing
- this type, all of its supertypes, and all its subtypes in the workspace,
- considering types in the working copies with the given owner.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newTypeHierarchy(org.eclipse.wst.jsdt.core.IRegion, org.eclipse.wst.jsdt.core.WorkingCopyOwner, IProgressMonitor)"><B>newTypeHierarchy(IRegion, WorkingCopyOwner, IProgressMonitor)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a type hierarchy for all types in the given
- region, considering subtypes within that region and considering types in the
- working copies with the given owner.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTypeLiteral()"><B>newTypeLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented type literal expression node
- owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newTypeParameter()"><B>newTypeParameter()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented type parameter type node with an
- unspecified type variable name and an empty list of type bounds.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewTypeWizardPage</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>The class <code>NewTypeWizardPage</code> contains controls and validation routines
- for a 'New Type WizardPage'.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html#NewTypeWizardPage(boolean, java.lang.String)"><B>NewTypeWizardPage(boolean, String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A>
-<DD>Creates a new <code>NewTypeWizardPage</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html#NewTypeWizardPage(int, java.lang.String)"><B>NewTypeWizardPage(int, String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A>
-<DD>Creates a new <code>NewTypeWizardPage</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.ImportsManager.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>NewTypeWizardPage.ImportsManager</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>Class used in stub creation routines to add needed imports to a
- compilation unit.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newUndefinedLiteral()"><B>newUndefinedLiteral()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented 'undefined' literal node.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#newVariable(java.lang.String, java.lang.String, java.lang.String)"><B>newVariable(String, String, String)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
-<DD>Creates a new global variable with the given name, type, and initializer.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newVariableDeclarationExpression(org.eclipse.wst.jsdt.core.dom.VariableDeclarationFragment)"><B>newVariableDeclarationExpression(VariableDeclarationFragment)</B></A> -
-Method in class 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>
-<DD>Creates a new unparented local variable declaration expression node
- owned by this AST, for the given variable declaration fragment.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newVariableDeclarationFragment()"><B>newVariableDeclarationFragment()</B></A> -
-Method in class 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>
-<DD>Creates an unparented variable declaration fragment node owned by this
- AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newVariableDeclarationStatement(org.eclipse.wst.jsdt.core.dom.VariableDeclarationFragment)"><B>newVariableDeclarationStatement(VariableDeclarationFragment)</B></A> -
-Method in class 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>
-<DD>Creates a new unparented local variable declaration statement node
- owned by this AST, for the given variable declaration fragment.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newVariableEntry(IPath, IPath, IPath)"><B>newVariableEntry(IPath, IPath, IPath)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new non-exported includepath entry of kind <code>CPE_VARIABLE</code>
- for the given path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newVariableEntry(IPath, IPath, IPath, boolean)"><B>newVariableEntry(IPath, IPath, IPath, boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_VARIABLE</code>
- for the given path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#newVariableEntry(IPath, IPath, IPath, org.eclipse.wst.jsdt.core.IAccessRule[], org.eclipse.wst.jsdt.core.IIncludePathAttribute[], boolean)"><B>newVariableEntry(IPath, IPath, IPath, IAccessRule[], IIncludePathAttribute[], boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Creates and returns a new includepath entry of kind <code>CPE_VARIABLE</code>
- for the given path.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newWhileStatement()"><B>newWhileStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented while statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newWildcardType()"><B>newWildcardType()</B></A> -
-Method in class 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>
-<DD>Creates and returns a new unparented wildcard type node with no
- type bound.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#newWithStatement()"><B>newWithStatement()</B></A> -
-Method in class 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>
-<DD>Creates a new unparented with statement node owned by this AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/WorkingCopyOwner.html#newWorkingCopy(java.lang.String, org.eclipse.wst.jsdt.core.IIncludePathEntry[], org.eclipse.wst.jsdt.core.IProblemRequestor, IProgressMonitor)"><B>newWorkingCopy(String, IIncludePathEntry[], IProblemRequestor, IProgressMonitor)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/WorkingCopyOwner.html" title="class in org.eclipse.wst.jsdt.core">WorkingCopyOwner</A>
-<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/WorkingCopyOwner.html#newWorkingCopy(java.lang.String, org.eclipse.wst.jsdt.core.IIncludePathEntry[], IProgressMonitor)"><CODE>WorkingCopyOwner.newWorkingCopy(String, IIncludePathEntry[], IProgressMonitor)</CODE></A> instead.
- Note that if this deprecated method is used, problems may be reported twice
- if the given requestor is not the same as the current working copy owner one.</I>
-<DT><A HREF="../org/eclipse/wst/jsdt/core/WorkingCopyOwner.html#newWorkingCopy(java.lang.String, org.eclipse.wst.jsdt.core.IIncludePathEntry[], IProgressMonitor)"><B>newWorkingCopy(String, IIncludePathEntry[], IProgressMonitor)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/WorkingCopyOwner.html" title="class in org.eclipse.wst.jsdt.core">WorkingCopyOwner</A>
-<DD>Returns a new working copy with the given name using this working copy owner to
- create its buffer.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#NEXT_LINE"><B>NEXT_LINE</B></A> -
-Static variable in class 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>
-<DD>
- FORMATTER / Value to set a brace location at the start of the next line with
- the right indentation.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#NEXT_LINE_ON_WRAP"><B>NEXT_LINE_ON_WRAP</B></A> -
-Static variable in class 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>
-<DD>
- FORMATTER / Value to set a brace location at the start of the next line if a wrapping
- occured.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#NEXT_LINE_SHIFTED"><B>NEXT_LINE_SHIFTED</B></A> -
-Static variable in class 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>
-<DD>
- FORMATTER / Value to set a brace location at the start of the next line with
- an extra indentation.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NI"><B>NI</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#NO_AST"><B>NO_AST</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
-<DD>Constant indicating that a reconcile operation should not return an AST.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#NO_CHAR"><B>NO_CHAR</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Constant for an empty char array
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#NO_CHAR_CHAR"><B>NO_CHAR_CHAR</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Constant for an empty char array with two dimensions.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NO_ELEMENTS_TO_PROCESS"><B>NO_ELEMENTS_TO_PROCESS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
-<DD>Status constant indicating that no elements were
- provided to the operation for processing.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NO_LOCAL_CONTENTS"><B>NO_LOCAL_CONTENTS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
-<DD>Status indicating that the corresponding resource has no local contents yet.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#NO_RESOURCE_MODIFICATION"><B>NO_RESOURCE_MODIFICATION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
-<DD>Update model flag constant (bit mask value 1) indicating that the operation
- is to not copy/move/delete the package fragment root resource.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#NO_STRINGS"><B>NO_STRINGS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Constant for an empty String array.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoAdditionalBoundAfterTypeVariable"><B>NoAdditionalBoundAfterTypeVariable</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOBR"><B>NOBR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredAttribute.html#node"><B>node</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredAttribute.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredAttribute</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#nodeClassForType(int)"><B>nodeClassForType(int)</B></A> -
-Static method in class 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>
-<DD>Returns the node class for the corresponding node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>NodeHelper</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html#NodeHelper(IStructuredDocumentRegion)"><B>NodeHelper(IStructuredDocumentRegion)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">NodeHelper</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOEMBED"><B>NOEMBED</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoFieldOnBaseType"><B>NoFieldOnBaseType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOFRAMES"><B>NOFRAMES</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoImplicitStringConversionForCharArrayExpression"><B>NoImplicitStringConversionForCharArrayExpression</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoMessageSendOnArrayType"><B>NoMessageSendOnArrayType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NoMessageSendOnBaseType"><B>NoMessageSendOnBaseType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonBlankFinalLocalAssignment"><B>NonBlankFinalLocalAssignment</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonConstantExpression"><B>NonConstantExpression</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#NONE"><B>NONE</B></A> -
-Static variable in class 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>
-<DD>Modifier constant (bit mask, value 0) indicating no modifiers.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#NONE"><B>NONE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
-<DD>Flag indication that no additional update is to be performed.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonExternalizedStringLiteral"><B>NonExternalizedStringLiteral</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonGenericConstructor"><B>NonGenericConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonGenericMethod"><B>NonGenericMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonGenericType"><B>NonGenericType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonNullLocalVariableComparisonYieldsFalse"><B>NonNullLocalVariableComparisonYieldsFalse</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticAccessToStaticField"><B>NonStaticAccessToStaticField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticAccessToStaticMethod"><B>NonStaticAccessToStaticMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticContextForEnumMemberType"><B>NonStaticContextForEnumMemberType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticFieldFromStaticInvocation"><B>NonStaticFieldFromStaticInvocation</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NonStaticTypeFromStaticInvocation"><B>NonStaticTypeFromStaticInvocation</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#NORMAL"><B>NORMAL</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Possible configurable option value.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#NORMAL_ANNOTATION"><B>NORMAL_ANNOTATION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#NOSCRIPT"><B>NOSCRIPT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html#NOT"><B>NOT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression.Operator</A>
-<DD>Logical complement "!"
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NOT"><B>NOT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#NOT_EQUAL_EQUAL"><B>NOT_EQUAL_EQUAL</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#NOT_EQUALS"><B>NOT_EQUALS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>Not equals "!
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html#NOT_THIS"><B>NOT_THIS</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotAFunction"><B>NotAFunction</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html#notify(int, java.lang.Object, java.lang.Object, java.lang.Object, int)"><B>notify(int, Object, Object, Object, int)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html#notifyChanged(INodeNotifier, int, java.lang.Object, java.lang.Object, java.lang.Object, int)"><B>notifyChanged(INodeNotifier, int, Object, Object, Object, int)</B></A> -
-Method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapter.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslationAdapter</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NOTIN"><B>NOTIN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleConstructor"><B>NotVisibleConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleConstructorInDefaultConstructor"><B>NotVisibleConstructorInDefaultConstructor</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleConstructorInImplicitConstructorCall"><B>NotVisibleConstructorInImplicitConstructorCall</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleField"><B>NotVisibleField</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleMethod"><B>NotVisibleMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NotVisibleType"><B>NotVisibleType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NSUB"><B>NSUB</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NTILDE_L"><B>NTILDE_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NTILDE_U"><B>NTILDE_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NU_L"><B>NU_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#NU_U"><B>NU_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#NULL_LITERAL"><B>NULL_LITERAL</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#NULL_LITERAL"><B>NULL_LITERAL</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>NullLiteral</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NULL_NAME"><B>NULL_NAME</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
-<DD>Status constant indicating that <code>null</code> was specified
- as a name argument.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NULL_PATH"><B>NULL_PATH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
-<DD>Status constant indicating that a <code>null</code> path was
- supplied to the operation.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#NULL_STRING"><B>NULL_STRING</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
-<DD>Status constant indicating that a string
- was supplied to the operation that was <code>null</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/NullLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>NullLiteral</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Null literal node.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableComparisonYieldsFalse"><B>NullLocalVariableComparisonYieldsFalse</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableInstanceofYieldsFalse"><B>NullLocalVariableInstanceofYieldsFalse</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullLocalVariableReference"><B>NullLocalVariableReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/NullSearchDocument.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search"><B>NullSearchDocument</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript.search</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/NullSearchDocument.html#NullSearchDocument(java.lang.String)"><B>NullSearchDocument(String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.web.core.javascript.search.<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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NullSourceString"><B>NullSourceString</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/MemoryIndex.html#NUM_CHANGES"><B>NUM_CHANGES</B></A> -
-Variable in class org.eclipse.wst.jsdt.internal.core.index.<A HREF="../org/eclipse/wst/jsdt/internal/core/index/MemoryIndex.html" title="class in org.eclipse.wst.jsdt.internal.core.index">MemoryIndex</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#NUMBER_LITERAL"><B>NUMBER_LITERAL</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#NUMBER_LITERAL"><B>NUMBER_LITERAL</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>NumberLiteral</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#numberAttributes"><B>numberAttributes</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/NumberLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>NumberLiteral</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Number literal nodes.<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html#NumberType"><B>NumberType</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer">InferEngine</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#NumericValueOutOfRange"><B>NumericValueOutOfRange</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-13.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-14.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-15.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-15.html
deleted file mode 100644
index 10223661..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-15.html
+++ /dev/null
@@ -1,396 +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:19 CDT 2008 -->
-<TITLE>
-O-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="O-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-14.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-16.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-15.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-15.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_O_"><!-- --></A><H2>
-<B>O</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OACUTE_L"><B>OACUTE_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OACUTE_U"><B>OACUTE_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OBJECT"><B>OBJECT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#OBJECT_LITERAL"><B>OBJECT_LITERAL</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#OBJECT_LITERAL"><B>OBJECT_LITERAL</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#OBJECT_LITERAL_FIELD"><B>OBJECT_LITERAL_FIELD</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#OBJECT_LITERAL_FIELD"><B>OBJECT_LITERAL_FIELD</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#OBJECT_LITERAL_NAME"><B>OBJECT_LITERAL_NAME</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#OBJECT_NAME"><B>OBJECT_NAME</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectCannotBeGeneric"><B>ObjectCannotBeGeneric</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectCannotHaveSuperTypes"><B>ObjectCannotHaveSuperTypes</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectHasNoSuperclass"><B>ObjectHasNoSuperclass</B></A> -
-Static variable in interface 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>
-<DD>General type related problems
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ObjectLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ObjectLiteral</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ObjectLiteralField.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ObjectLiteralField</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ObjectMustBeClass"><B>ObjectMustBeClass</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html#ObjectType"><B>ObjectType</B></A> -
-Variable in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferEngine.html" title="class in org.eclipse.wst.jsdt.core.infer">InferEngine</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#occurencesOf(char, char[])"><B>occurencesOf(char, char[])</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers the number of occurrences of the given character in the given array, 0 if any.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#occurencesOf(char, char[], int)"><B>occurencesOf(char, char[], int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers the number of occurrences of the given character in the given array starting
- at the given index, 0 if any.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OCIRC_L"><B>OCIRC_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OCIRC_U"><B>OCIRC_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OELIG_L"><B>OELIG_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OELIG_U"><B>OELIG_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OGRAVE_L"><B>OGRAVE_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OGRAVE_U"><B>OGRAVE_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OL"><B>OL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OLINE"><B>OLINE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMEGA_L"><B>OMEGA_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMEGA_U"><B>OMEGA_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMICRON_L"><B>OMICRON_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OMICRON_U"><B>OMICRON_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html#ON_DEMAND_PROPERTY"><B>ON_DEMAND_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">ImportDeclaration</A>
-<DD>The "onDemand" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferrenceProvider.html#ONLY_THIS"><B>ONLY_THIS</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IOpenable.html#open(IProgressMonitor)"><B>open(IProgressMonitor)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IOpenable.html" title="interface in org.eclipse.wst.jsdt.core">IOpenable</A>
-<DD>Opens this element and all parent elements that are not already open.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#OPEN_TYPE_HIERARCHY"><B>OPEN_TYPE_HIERARCHY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls if a new type hierarchy gets opened in a
- new type hierarchy perspective or inside the type hierarchy view part.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE"><B>OPEN_TYPE_HIERARCHY_IN_PERSPECTIVE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#OPEN_TYPE_HIERARCHY_IN_VIEW_PART"><B>OPEN_TYPE_HIERARCHY_IN_VIEW_PART</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A string value used by the named preference <code>OPEN_TYPE_HIERARCHY</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#openDialog(Shell)"><B>openDialog(Shell)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
-<DD>Opens the refactoring dialog for this rename support.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#openDialog(Shell, boolean)"><B>openDialog(Shell, boolean)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
-<DD>Opens the refactoring dialog for this rename support.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#openInEditor(org.eclipse.wst.jsdt.core.IJavaScriptElement)"><B>openInEditor(IJavaScriptElement)</B></A> -
-Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
-<DD>Opens an editor on the given JavaScript element in the active page.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#openInEditor(org.eclipse.wst.jsdt.core.IJavaScriptElement, boolean, boolean)"><B>openInEditor(IJavaScriptElement, boolean, boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
-<DD>Opens an editor on the given JavaScript element in the active page.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.html#OPERAND_PROPERTY"><B>OPERAND_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PostfixExpression</A>
-<DD>The "operand" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.html#OPERAND_PROPERTY"><B>OPERAND_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression</A>
-<DD>The "operand" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#OPERATOR_EXPRESSION"><B>OPERATOR_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.html#OPERATOR_PROPERTY"><B>OPERATOR_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment</A>
-<DD>The "operator" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.html#OPERATOR_PROPERTY"><B>OPERATOR_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression</A>
-<DD>The "operator" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.html#OPERATOR_PROPERTY"><B>OPERATOR_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PostfixExpression</A>
-<DD>The "operator" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.html#OPERATOR_PROPERTY"><B>OPERATOR_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression</A>
-<DD>The "operator" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OPLUS"><B>OPLUS</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OPTGROUP"><B>OPTGROUP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#OPTIMIZE_OUT"><B>OPTIMIZE_OUT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Possible configurable option value.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#OPTION"><B>OPTION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_DocLocation"><B>OPTION_DocLocation</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_SaveArgumentComments"><B>OPTION_SaveArgumentComments</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_UseAssignments"><B>OPTION_UseAssignments</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferOptions.html#OPTION_UseInitMethod"><B>OPTION_UseInitMethod</B></A> -
-Static variable in class 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathAttribute.html#OPTIONAL"><B>OPTIONAL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathAttribute.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathAttribute</A>
-<DD>Constant for the name of the optional attribute.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#OPTIONAL_SEMICOLON"><B>OPTIONAL_SEMICOLON</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#OptionalSemiColon"><B>OptionalSemiColon</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#OR"><B>OR</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>Inclusive OR "|" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OR"><B>OR</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#OR_OR_EXPRESSION"><B>OR_OR_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ORDF"><B>ORDF</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#ORDM"><B>ORDM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/package-summary.html"><B>org.eclipse.wst.jsdt.core</B></A> - package org.eclipse.wst.jsdt.core<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/package-summary.html"><B>org.eclipse.wst.jsdt.core.ast</B></A> - package org.eclipse.wst.jsdt.core.ast<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/package-summary.html"><B>org.eclipse.wst.jsdt.core.compiler</B></A> - package org.eclipse.wst.jsdt.core.compiler<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/package-summary.html"><B>org.eclipse.wst.jsdt.core.compiler.libraries</B></A> - package org.eclipse.wst.jsdt.core.compiler.libraries<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html"><B>org.eclipse.wst.jsdt.core.dom</B></A> - package org.eclipse.wst.jsdt.core.dom<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/package-summary.html"><B>org.eclipse.wst.jsdt.core.dom.rewrite</B></A> - package org.eclipse.wst.jsdt.core.dom.rewrite<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/package-summary.html"><B>org.eclipse.wst.jsdt.core.eval</B></A> - package org.eclipse.wst.jsdt.core.eval<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/package-summary.html"><B>org.eclipse.wst.jsdt.core.formatter</B></A> - package org.eclipse.wst.jsdt.core.formatter<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/package-summary.html"><B>org.eclipse.wst.jsdt.core.infer</B></A> - package org.eclipse.wst.jsdt.core.infer<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/manipulation/package-summary.html"><B>org.eclipse.wst.jsdt.core.manipulation</B></A> - package org.eclipse.wst.jsdt.core.manipulation<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/package-summary.html"><B>org.eclipse.wst.jsdt.core.refactoring</B></A> - package org.eclipse.wst.jsdt.core.refactoring<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html"><B>org.eclipse.wst.jsdt.core.refactoring.descriptors</B></A> - package org.eclipse.wst.jsdt.core.refactoring.descriptors<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/search/package-summary.html"><B>org.eclipse.wst.jsdt.core.search</B></A> - package org.eclipse.wst.jsdt.core.search<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/core/util/package-summary.html"><B>org.eclipse.wst.jsdt.core.util</B></A> - package org.eclipse.wst.jsdt.core.util<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/package-summary.html"><B>org.eclipse.wst.jsdt.internal.core.index</B></A> - package org.eclipse.wst.jsdt.internal.core.index<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/libraries/package-summary.html"><B>org.eclipse.wst.jsdt.libraries</B></A> - package org.eclipse.wst.jsdt.libraries<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html"><B>org.eclipse.wst.jsdt.ui</B></A> - package org.eclipse.wst.jsdt.ui<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/project/package-summary.html"><B>org.eclipse.wst.jsdt.ui.project</B></A> - package org.eclipse.wst.jsdt.ui.project<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/package-summary.html"><B>org.eclipse.wst.jsdt.ui.refactoring</B></A> - package org.eclipse.wst.jsdt.ui.refactoring<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/search/package-summary.html"><B>org.eclipse.wst.jsdt.ui.search</B></A> - package org.eclipse.wst.jsdt.ui.search<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/package-summary.html"><B>org.eclipse.wst.jsdt.ui.text</B></A> - package org.eclipse.wst.jsdt.ui.text<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/package-summary.html"><B>org.eclipse.wst.jsdt.ui.text.folding</B></A> - package org.eclipse.wst.jsdt.ui.text.folding<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/package-summary.html"><B>org.eclipse.wst.jsdt.ui.text.java</B></A> - package org.eclipse.wst.jsdt.ui.text.java<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/hover/package-summary.html"><B>org.eclipse.wst.jsdt.ui.text.java.hover</B></A> - package org.eclipse.wst.jsdt.ui.text.java.hover<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html"><B>org.eclipse.wst.jsdt.ui.wizards</B></A> - package org.eclipse.wst.jsdt.ui.wizards<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html"><B>org.eclipse.wst.jsdt.web.core.javascript</B></A> - package org.eclipse.wst.jsdt.web.core.javascript<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/package-summary.html"><B>org.eclipse.wst.jsdt.web.core.javascript.search</B></A> - package org.eclipse.wst.jsdt.web.core.javascript.search<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/web/core/text/package-summary.html"><B>org.eclipse.wst.jsdt.web.core.text</B></A> - package org.eclipse.wst.jsdt.web.core.text<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/package-summary.html"><B>org.eclipse.wst.jsdt.web.ui</B></A> - package org.eclipse.wst.jsdt.web.ui<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/package-summary.html"><B>org.eclipse.wst.jsdt.web.ui.views.contentoutline</B></A> - package org.eclipse.wst.jsdt.web.ui.views.contentoutline<DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#ORGIMPORTS_IGNORELOWERCASE"><B>ORGIMPORTS_IGNORELOWERCASE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preferences that controls if types that start with a lower case letters get added by the
- "Organize Import" operation.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#ORGIMPORTS_IMPORTORDER"><B>ORGIMPORTS_IMPORTORDER</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds a list of semicolon separated package names.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#ORGIMPORTS_ONDEMANDTHRESHOLD"><B>ORGIMPORTS_ONDEMANDTHRESHOLD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that specifies the number of imports added before a star-import declaration is used.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#ORGIMPORTS_STATIC_ONDEMANDTHRESHOLD"><B>ORGIMPORTS_STATIC_ONDEMANDTHRESHOLD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that specifies the number of static imports added before a star-import declaration is used.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#ORIGINAL"><B>ORIGINAL</B></A> -
-Static variable in class 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>
-<DD>Flag constant (bit mask, value 2) indicating that this is a node
- that was created by the parser (as opposed to one created by another
- party).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#ORIGINATING_PROJECT_INCLUDEPATH"><B>ORIGINATING_PROJECT_INCLUDEPATH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
-<DD>Update model flag constant (bit mask value 2) indicating that the operation
- is to update the includepath of the originating project.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OSLASH_L"><B>OSLASH_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OSLASH_U"><B>OSLASH_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#OTHER_REFERRING_PROJECTS_INCLUDEPATH"><B>OTHER_REFERRING_PROJECTS_INCLUDEPATH</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
-<DD>Update model flag constant (bit mask value 4) indicating that the operation
- is to update the includepath of all referring projects except the originating project.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OTILDE_L"><B>OTILDE_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OTILDE_U"><B>OTILDE_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OTIMES"><B>OTIMES</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OUML_L"><B>OUML_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#OUML_U"><B>OUML_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#OuterLocalMustBeFinal"><B>OuterLocalMustBeFinal</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui"><B>OverrideIndicatorLabelDecorator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>LabelDecorator that decorates an method's image with override or implements overlays.<DT><A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html#OverrideIndicatorLabelDecorator()"><B>OverrideIndicatorLabelDecorator()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">OverrideIndicatorLabelDecorator</A>
-<DD>Creates a decorator.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html#OverrideIndicatorLabelDecorator(org.eclipse.wst.jsdt.internal.ui.viewsupport.ImageDescriptorRegistry)"><B>OverrideIndicatorLabelDecorator(ImageDescriptorRegistry)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">OverrideIndicatorLabelDecorator</A>
-<DD>Note: This constructor is for internal use only.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/IFunctionBinding.html#overrides(org.eclipse.wst.jsdt.core.dom.IFunctionBinding)"><B>overrides(IFunctionBinding)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/IFunctionBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom">IFunctionBinding</A>
-<DD>Returns whether this method overrides the given method.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#OVERRIDES"><B>OVERRIDES</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementImageDescriptor</A>
-<DD>Flag to render the 'override' adornment.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#OverridingDeprecatedMethod"><B>OverridingDeprecatedMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#OverridingMethodWithoutSuperInvocation"><B>OverridingMethodWithoutSuperInvocation</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#OverridingNonVisibleMethod"><B>OverridingNonVisibleMethod</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-</DL>
-<HR>
-
-
-<!-- ======= START OF BOTTOM NAVBAR ====== -->
-<A NAME="navbar_bottom"><!-- --></A>
-<A HREF="#skip-navbar_bottom" 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_bottom_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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-14.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-16.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-15.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-15.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_bottom"></A>
-<!-- ======== END OF BOTTOM NAVBAR ======= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-
-</BODY>
-</HTML>
diff --git a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-16.html b/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-16.html
deleted file mode 100644
index c5be801a..00000000
--- a/docs/org.eclipse.wst.jsdt.doc/html/api_reference/index-files/index-16.html
+++ /dev/null
@@ -1,907 +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:19 CDT 2008 -->
-<TITLE>
-P-Index
-</TITLE>
-
-
-<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
-
-<SCRIPT type="text/javascript">
-function windowTitle()
-{
- parent.document.title="P-Index";
-}
-</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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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;<A HREF="index-15.html"><B>PREV LETTER</B></A>&nbsp;
-&nbsp;<A HREF="index-17.html"><B>NEXT LETTER</B></A></FONT></TD>
-<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
- <A HREF="../index.html?index-filesindex-16.html" target="_top"><B>FRAMES</B></A> &nbsp;
-&nbsp;<A HREF="index-16.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 ========= -->
-
-<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
-<A NAME="_P_"><!-- --></A><H2>
-<B>P</B></H2>
-<DL>
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#P"><B>P</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#P_COMPRESSED"><B>P_COMPRESSED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Package names are compressed.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#P_POST_QUALIFIED"><B>P_POST_QUALIFIED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Package names are post qualified.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#P_QUALIFIED"><B>P_QUALIFIED</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Package names are qualified.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/IBinding.html#PACKAGE"><B>PACKAGE</B></A> -
-Static variable in interface 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>
-<DD>Kind constant (value 1) indicating a package binding.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#PACKAGE"><B>PACKAGE</B></A> -
-Static variable in interface 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>
-<DD>Indicates a compilation problem related to a package declaration.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#PACKAGE"><B>PACKAGE</B></A> -
-Static variable in interface 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>
-<DD>The searched element is a package.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#PACKAGE_DECLARATION"><B>PACKAGE_DECLARATION</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>PackageDeclaration</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#PACKAGE_DECLARATION"><B>PACKAGE_DECLARATION</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a package declaration within a compilation unit.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#PACKAGE_FRAGMENT"><B>PACKAGE_FRAGMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a source folder (package fragment).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#PACKAGE_FRAGMENT_ROOT"><B>PACKAGE_FRAGMENT_ROOT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
-<DD>Constant representing a root source folder (package fragment root).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html#PACKAGE_PROPERTY"><B>PACKAGE_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html" title="class in org.eclipse.wst.jsdt.core.dom">JavaScriptUnit</A>
-<DD>The "package" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#PACKAGE_REF"><B>PACKAGE_REF</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a reference to a package.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#PackageCollidesWithType"><B>PackageCollidesWithType</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>PackageDeclaration</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Package declaration AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/search/PackageDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search"><B>PackageDeclarationMatch</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/search/package-summary.html">org.eclipse.wst.jsdt.core.search</A><DD>A JavaScript search match that represents a package declaration.<DT><A HREF="../org/eclipse/wst/jsdt/core/search/PackageDeclarationMatch.html#PackageDeclarationMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>PackageDeclarationMatch(IJavaScriptElement, int, int, int, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/PackageDeclarationMatch.html" title="class in org.eclipse.wst.jsdt.core.search">PackageDeclarationMatch</A>
-<DD>Creates a new package declaration match.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#PackageIsNotExpectedPackage"><B>PackageIsNotExpectedPackage</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/search/PackageReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search"><B>PackageReferenceMatch</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/search/package-summary.html">org.eclipse.wst.jsdt.core.search</A><DD>A JavaScript search match that represents a package reference.<DT><A HREF="../org/eclipse/wst/jsdt/core/search/PackageReferenceMatch.html#PackageReferenceMatch(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int, int, boolean, org.eclipse.wst.jsdt.core.search.SearchParticipant, IResource)"><B>PackageReferenceMatch(IJavaScriptElement, int, int, int, boolean, SearchParticipant, IResource)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/PackageReferenceMatch.html" title="class in org.eclipse.wst.jsdt.core.search">PackageReferenceMatch</A>
-<DD>Creates a new package reference match.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PARA"><B>PARA</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#PARAM"><B>PARAM</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/EnhancedForStatement.html#PARAMETER_PROPERTY"><B>PARAMETER_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/EnhancedForStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">EnhancedForStatement</A>
-<DD>The "parameter" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterAssignment"><B>ParameterAssignment</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#PARAMETERIZED_QUALIFIED_TYPE_REFERENCE"><B>PARAMETERIZED_QUALIFIED_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#PARAMETERIZED_SINGLE_TYPE_REFERENCE"><B>PARAMETERIZED_SINGLE_TYPE_REFERENCE</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#PARAMETERIZED_TYPE"><B>PARAMETERIZED_TYPE</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>ParameterizedType</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterizedConstructorArgumentTypeMismatch"><B>ParameterizedConstructorArgumentTypeMismatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterizedMethodArgumentTypeMismatch"><B>ParameterizedMethodArgumentTypeMismatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ParameterizedType.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ParameterizedType</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Type node for a parameterized type (added in JLS3 API).<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParameterMismatch"><B>ParameterMismatch</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#parameters()"><B>parameters()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<DD>Returns the live ordered list of method parameter declarations for this
- method declaration.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html#parameters()"><B>parameters()</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRef</A>
-<DD>Returns the live ordered list of method parameter references for this
- method reference.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#PARAMETERS_PROPERTY"><B>PARAMETERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<DD>The "parameters" structural property of this node type).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html#PARAMETERS_PROPERTY"><B>PARAMETERS_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRef</A>
-<DD>The "parameters" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#PARENTHESIZED_EXPRESSION"><B>PARENTHESIZED_EXPRESSION</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>ParenthesizedExpression</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ParenthesizedExpression.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ParenthesizedExpression</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Parenthesized expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingError"><B>ParsingError</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorDeleteToken"><B>ParsingErrorDeleteToken</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorDeleteTokens"><B>ParsingErrorDeleteTokens</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertToComplete"><B>ParsingErrorInsertToComplete</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertToCompletePhrase"><B>ParsingErrorInsertToCompletePhrase</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertToCompleteScope"><B>ParsingErrorInsertToCompleteScope</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertTokenAfter"><B>ParsingErrorInsertTokenAfter</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInsertTokenBefore"><B>ParsingErrorInsertTokenBefore</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorInvalidToken"><B>ParsingErrorInvalidToken</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorMergeTokens"><B>ParsingErrorMergeTokens</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorMisplacedConstruct"><B>ParsingErrorMisplacedConstruct</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorNoSuggestion"><B>ParsingErrorNoSuggestion</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorNoSuggestionForTokens"><B>ParsingErrorNoSuggestionForTokens</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorOnKeyword"><B>ParsingErrorOnKeyword</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorOnKeywordNoSuggestion"><B>ParsingErrorOnKeywordNoSuggestion</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorReplaceTokens"><B>ParsingErrorReplaceTokens</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ParsingErrorUnexpectedEOF"><B>ParsingErrorUnexpectedEOF</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PART"><B>PART</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#PATH_OUTSIDE_PROJECT"><B>PATH_OUTSIDE_PROJECT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
-<DD>Status constant indicating that a path outside of the
- project was supplied to the operation.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#pathMatch(char[], char[], boolean, char)"><B>pathMatch(char[], char[], boolean, char)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers true if the pattern matches the filepath using the pathSepatator, false otherwise.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/search/PatternQuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search"><B>PatternQuerySpecification</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/search/package-summary.html">org.eclipse.wst.jsdt.ui.search</A><DD>
- Describes a search query by giving a textual pattern to search for.<DT><A HREF="../org/eclipse/wst/jsdt/ui/search/PatternQuerySpecification.html#PatternQuerySpecification(java.lang.String, int, boolean, int, org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope, java.lang.String)"><B>PatternQuerySpecification(String, int, boolean, int, IJavaScriptSearchScope, String)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.search.<A HREF="../org/eclipse/wst/jsdt/ui/search/PatternQuerySpecification.html" title="class in org.eclipse.wst.jsdt.ui.search">PatternQuerySpecification</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#perform(Shell, IRunnableContext)"><B>perform(Shell, IRunnableContext)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
-<DD>Executes the rename refactoring without showing a dialog to gather
- additional user input (for example the new name of the <tt>IJavaScriptElement</tt>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html#performDefaults()"><B>performDefaults()</B></A> -
-Method in interface org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding">IJavaFoldingPreferenceBlock</A>
-<DD>Called when the <code>Defaults</code> button is pressed on the
- preference page.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html#performEdit(Shell, org.eclipse.wst.jsdt.ui.wizards.ClasspathAttributeConfiguration.ClasspathAttributeAccess)"><B>performEdit(Shell, ClasspathAttributeConfiguration.ClasspathAttributeAccess)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration</A>
-<DD>This method is invoked when the <em>Edit</em> is pressed.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html#performOk()"><B>performOk()</B></A> -
-Method in interface org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding">IJavaFoldingPreferenceBlock</A>
-<DD>Called when the <code>OK</code> button is pressed on the preference
- page.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html#performRemove(org.eclipse.wst.jsdt.ui.wizards.ClasspathAttributeConfiguration.ClasspathAttributeAccess)"><B>performRemove(ClasspathAttributeConfiguration.ClasspathAttributeAccess)</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration</A>
-<DD>This method is invoked when the <em>Remove</em> is pressed.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PERMIL"><B>PERMIL</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PERP"><B>PERP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PHI_L"><B>PHI_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PHI_U"><B>PHI_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PI_L"><B>PI_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PI_U"><B>PI_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PIV"><B>PIV</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#PLUGIN_ID"><B>PLUGIN_ID</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>The plug-in identifier of the JavaScript core support
- (value <code>"org.eclipse.wst.jsdt.core"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#PLUS"><B>PLUS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
-<DD>Addition (or string concatenation) "+" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html#PLUS"><B>PLUS</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression.Operator</A>
-<DD>Unary plus "+" operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html#PLUS_ASSIGN"><B>PLUS_ASSIGN</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment.Operator</A>
-<DD>+= operator.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PLUSMN"><B>PLUSMN</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#PossibleAccidentalBooleanAssignment"><B>PossibleAccidentalBooleanAssignment</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ElementChangedEvent.html#POST_CHANGE"><B>POST_CHANGE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ElementChangedEvent.html" title="class in org.eclipse.wst.jsdt.core">ElementChangedEvent</A>
-<DD>Event type constant (bit mask) indicating an after-the-fact
- report of creations, deletions, and modifications
- to one or more JavaScript element(s) expressed as a hierarchical
- java element delta as returned by <code>getDelta()</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ElementChangedEvent.html#POST_RECONCILE"><B>POST_RECONCILE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ElementChangedEvent.html" title="class in org.eclipse.wst.jsdt.core">ElementChangedEvent</A>
-<DD>Event type constant (bit mask) indicating an after-the-fact
- report of creations, deletions, and modifications
- to one or more JavaScript element(s) expressed as a hierarchical
- java element delta as returned by <code>getDelta</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#POSTFIX_EXPRESSION"><B>POSTFIX_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#POSTFIX_EXPRESSION"><B>POSTFIX_EXPRESSION</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>PostfixExpression</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>PostfixExpression</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Postfix expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>PostfixExpression.Operator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Postfix operators (typesafe enumeration).<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html#postVisit(org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>postVisit(ASTNode)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTVisitor</A>
-<DD>Visits the given AST node following the type-specific visit
- (after <code>endVisit</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#POTENTIAL_METHOD_DECLARATION"><B>POTENTIAL_METHOD_DECLARATION</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
-<DD>Completion is a declaration of a new potential function.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#PotentialNullLocalVariableReference"><B>PotentialNullLocalVariableReference</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#POUND"><B>POUND</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#PRE"><B>PRE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#preCheck()"><B>preCheck()</B></A> -
-Method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
-<DD>Executes some light weight precondition checking.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui"><B>PreferenceConstants</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Preference constants used in the JDT-UI preference store.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#PREFIX"><B>PREFIX</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>Note: This constant is for internal use only.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#PREFIX_EXPRESSION"><B>PREFIX_EXPRESSION</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#PREFIX_EXPRESSION"><B>PREFIX_EXPRESSION</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>PrefixExpression</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#prefixEquals(char[], char[])"><B>prefixEquals(char[], char[])</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers true if the given name starts with the given prefix, false otherwise.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#prefixEquals(char[], char[], boolean)"><B>prefixEquals(char[], char[], boolean)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
-<DD>Answers true if the given name starts with the given prefix, false otherwise.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>PrefixExpression</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Prefix expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>PrefixExpression.Operator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Prefix operators (typesafe enumeration).<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#PREPEND_ROOT_PATH"><B>PREPEND_ROOT_PATH</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
-<DD>Add root path to all elements except Package Fragment Roots and JavaScript projects.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#PRESERVE"><B>PRESERVE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Possible configurable option value.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#PRESERVE_ONE"><B>PRESERVE_ONE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Possible configurable option value.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html#preVisit(org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>preVisit(ASTNode)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTVisitor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTVisitor</A>
-<DD>Visits the given AST node prior to the type-specific visit.
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PRIME_L"><B>PRIME_L</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PRIME_U"><B>PRIME_U</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#PRIMITIVE_TYPE"><B>PRIMITIVE_TYPE</B></A> -
-Static variable in class 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>
-<DD>Node type constant indicating a node of type
- <code>PrimitiveType</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html#PRIMITIVE_TYPE_CODE_PROPERTY"><B>PRIMITIVE_TYPE_CODE_PROPERTY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType</A>
-<DD>The "primitiveTypeCode" structural property of this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>PrimitiveType</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Primitive type nodes.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.Code.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>PrimitiveType.Code</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Primitive type codes (typesafe enumeration).<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IArgument.html#print(int, java.lang.StringBuffer)"><B>print(int, StringBuffer)</B></A> -
-Method in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IArgument.html" title="interface in org.eclipse.wst.jsdt.core.ast">IArgument</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredAttribute.html#print(int, java.lang.StringBuffer)"><B>print(int, StringBuffer)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredAttribute.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredAttribute</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMethod.html#print(int, java.lang.StringBuffer)"><B>print(int, StringBuffer)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredMethod.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredMethod</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#print(int, java.lang.StringBuffer)"><B>print(int, StringBuffer)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html#printStackTrace(java.io.PrintStream)"><B>printStackTrace(PrintStream)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptModelException</A>
-<DD>Prints this exception's stack trace to the given print stream.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html#printStackTrace(java.io.PrintWriter)"><B>printStackTrace(PrintWriter)</B></A> -
-Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptModelException.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptModelException</A>
-<DD>Prints this exception's stack trace to the given print writer.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#PRIVATE"><B>PRIVATE</B></A> -
-Static variable in class 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>
-<DD>"private" modifier constant (bit mask).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#PRIVATE"><B>PRIVATE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
-<DD>Possible configurable option value.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html#PRIVATE_KEYWORD"><B>PRIVATE_KEYWORD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.ModifierKeyword.html" title="class in org.eclipse.wst.jsdt.core.dom">Modifier.ModifierKeyword</A>
-<DD>"private" modifier with flag value <A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#PRIVATE"><CODE>Modifier.PRIVATE</CODE></A>.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui"><B>ProblemsLabelDecorator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>LabelDecorator that decorates an element's image with error and warning overlays that
- represent the severity of markers attached to the element's underlying resource.<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html#ProblemsLabelDecorator()"><B>ProblemsLabelDecorator()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">ProblemsLabelDecorator</A>
-<DD>Creates a new <code>ProblemsLabelDecorator</code>.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html#ProblemsLabelDecorator(org.eclipse.wst.jsdt.internal.ui.viewsupport.ImageDescriptorRegistry)"><B>ProblemsLabelDecorator(ImageDescriptorRegistry)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">ProblemsLabelDecorator</A>
-<DD>Note: This constructor is for internal use only.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.ProblemsLabelChangedEvent.html" title="class in org.eclipse.wst.jsdt.ui"><B>ProblemsLabelDecorator.ProblemsLabelChangedEvent</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>This is a special <code>LabelProviderChangedEvent</code> carrying additional
- information whether the event origins from a maker change.<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.ProblemsLabelChangedEvent.html#ProblemsLabelDecorator.ProblemsLabelChangedEvent(IBaseLabelProvider, IResource[], boolean)"><B>ProblemsLabelDecorator.ProblemsLabelChangedEvent(IBaseLabelProvider, IResource[], boolean)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/ProblemsLabelDecorator.ProblemsLabelChangedEvent.html" title="class in org.eclipse.wst.jsdt.ui">ProblemsLabelDecorator.ProblemsLabelChangedEvent</A>
-<DD>Note: This constructor is for internal use only.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html#processAnnotations(org.eclipse.wst.jsdt.core.compiler.BuildContext[])"><B>processAnnotations(BuildContext[])</B></A> -
-Method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html" title="class in org.eclipse.wst.jsdt.core.compiler">ValidationParticipant</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PROD"><B>PROD</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#PROGRAM_ELEMENT"><B>PROGRAM_ELEMENT</B></A> -
-Static variable in interface 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>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ProgramElement.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ProgramElement</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
- change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.html" title="class in org.eclipse.wst.jsdt.ui"><B>ProjectLibraryRoot</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.html#ProjectLibraryRoot(org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>ProjectLibraryRoot(IJavaScriptProject)</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.html" title="class in org.eclipse.wst.jsdt.ui">ProjectLibraryRoot</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.WorkBenchAdapter.html" title="class in org.eclipse.wst.jsdt.ui"><B>ProjectLibraryRoot.WorkBenchAdapter</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>&nbsp;<DT><A HREF="../org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.WorkBenchAdapter.html#ProjectLibraryRoot.WorkBenchAdapter()"><B>ProjectLibraryRoot.WorkBenchAdapter()</B></A> -
-Constructor for class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/ProjectLibraryRoot.WorkBenchAdapter.html" title="class in org.eclipse.wst.jsdt.ui">ProjectLibraryRoot.WorkBenchAdapter</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#PROP"><B>PROP</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#properties()"><B>properties()</B></A> -
-Method in class 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>
-<DD>Returns an unmodifiable table of the properties of this node with
- non-<code>null</code> values.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ARGUMENT"><B>PROPERTIES_FILE_COLORING_ARGUMENT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds the color used to render arguments in a properties file.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_ARGUMENT"><B>PROPERTIES_FILE_COLORING_ARGUMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for arguments in values in a properties file.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ARGUMENT_BOLD"><B>PROPERTIES_FILE_COLORING_ARGUMENT_BOLD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether arguments in a properties file are rendered in bold.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ARGUMENT_ITALIC"><B>PROPERTIES_FILE_COLORING_ARGUMENT_ITALIC</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether arguments in a properties file are rendered in italic.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ARGUMENT_STRIKETHROUGH"><B>PROPERTIES_FILE_COLORING_ARGUMENT_STRIKETHROUGH</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether arguments in a properties file are rendered in strikethrough.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ARGUMENT_UNDERLINE"><B>PROPERTIES_FILE_COLORING_ARGUMENT_UNDERLINE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether arguments in a properties file are rendered in underline.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT"><B>PROPERTIES_FILE_COLORING_ASSIGNMENT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds the color used to render assignments in a properties file.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT"><B>PROPERTIES_FILE_COLORING_ASSIGNMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for assignment in a properties file.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT_BOLD"><B>PROPERTIES_FILE_COLORING_ASSIGNMENT_BOLD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether assignments in a properties file are rendered in bold.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT_ITALIC"><B>PROPERTIES_FILE_COLORING_ASSIGNMENT_ITALIC</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether assignments in a properties file are rendered in italic.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT_STRIKETHROUGH"><B>PROPERTIES_FILE_COLORING_ASSIGNMENT_STRIKETHROUGH</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether assignments in a properties file are rendered in strikethrough.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_ASSIGNMENT_UNDERLINE"><B>PROPERTIES_FILE_COLORING_ASSIGNMENT_UNDERLINE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether assignments in a properties file are rendered in underline.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_COMMENT"><B>PROPERTIES_FILE_COLORING_COMMENT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds the color used to render comments in a properties file.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_COMMENT"><B>PROPERTIES_FILE_COLORING_COMMENT</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for comments in a properties file
- (value <code>"pf_coloring_comment"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_COMMENT_BOLD"><B>PROPERTIES_FILE_COLORING_COMMENT_BOLD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether comments in a properties file are rendered in bold.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_COMMENT_ITALIC"><B>PROPERTIES_FILE_COLORING_COMMENT_ITALIC</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether comments in a properties file are rendered in italic.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_COMMENT_STRIKETHROUGH"><B>PROPERTIES_FILE_COLORING_COMMENT_STRIKETHROUGH</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether comments in a properties file are rendered in strikethrough.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_COMMENT_UNDERLINE"><B>PROPERTIES_FILE_COLORING_COMMENT_UNDERLINE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether comments in a properties file are rendered in underline.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_KEY"><B>PROPERTIES_FILE_COLORING_KEY</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds the color used to render keys in a properties file.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_KEY"><B>PROPERTIES_FILE_COLORING_KEY</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for keys in a properties file
- (value <code>"pf_coloring_key"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_KEY_BOLD"><B>PROPERTIES_FILE_COLORING_KEY_BOLD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether keys in a properties file are rendered in bold.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_KEY_ITALIC"><B>PROPERTIES_FILE_COLORING_KEY_ITALIC</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether keys in a properties file are rendered in italic.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_KEY_STRIKETHROUGH"><B>PROPERTIES_FILE_COLORING_KEY_STRIKETHROUGH</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether keys in a properties file are rendered in strikethrough.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_KEY_UNDERLINE"><B>PROPERTIES_FILE_COLORING_KEY_UNDERLINE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether keys in a properties file are rendered in underline.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_VALUE"><B>PROPERTIES_FILE_COLORING_VALUE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that holds the color used to render values in a properties file.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html#PROPERTIES_FILE_COLORING_VALUE"><B>PROPERTIES_FILE_COLORING_VALUE</B></A> -
-Static variable in interface org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/IJavaScriptColorConstants.html" title="interface in org.eclipse.wst.jsdt.ui.text">IJavaScriptColorConstants</A>
-<DD>The color key for values in a properties file
- (value <code>"pf_coloring_value"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_VALUE_BOLD"><B>PROPERTIES_FILE_COLORING_VALUE_BOLD</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether values in a properties file are rendered in bold.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_VALUE_ITALIC"><B>PROPERTIES_FILE_COLORING_VALUE_ITALIC</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether values in a properties file are rendered in italic.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_VALUE_STRIKETHROUGH"><B>PROPERTIES_FILE_COLORING_VALUE_STRIKETHROUGH</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether values in a properties file are rendered in strikethrough.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_COLORING_VALUE_UNDERLINE"><B>PROPERTIES_FILE_COLORING_VALUE_UNDERLINE</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>A named preference that controls whether values in a properties file are rendered in underline.
-<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#PROPERTIES_FILE_EDITOR_TEXT_FONT"><B>PROPERTIES_FILE_EDITOR_TEXT_FONT</B></A> -
-Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
-<DD>The symbolic font name for the JavaScript properties file editor text font
- (value <code>"org.eclipse.wst.jsdt.ui.PropertiesFileEditor.textfont"</code>).
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AnonymousClassDeclaration.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/AnonymousClassDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">AnonymousClassDeclaration</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayAccess.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayAccess</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayCreation.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayCreation</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayInitializer.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayInitializer.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayInitializer</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayType.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayType.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayType</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AssertStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/AssertStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">AssertStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Assignment.html" title="class in org.eclipse.wst.jsdt.core.dom">Assignment</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Block.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Block.html" title="class in org.eclipse.wst.jsdt.core.dom">Block</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/BlockComment.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/BlockComment.html" title="class in org.eclipse.wst.jsdt.core.dom">BlockComment</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/BooleanLiteral.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/BooleanLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">BooleanLiteral</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/BreakStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/BreakStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">BreakStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/CastExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/CastExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">CastExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/CatchClause.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/CatchClause.html" title="class in org.eclipse.wst.jsdt.core.dom">CatchClause</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">CharacterLiteral</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom">ClassInstanceCreation</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ConditionalExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ConditionalExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">ConditionalExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">ConstructorInvocation</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ContinueStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ContinueStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ContinueStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/DoStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/DoStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">DoStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/EmptyExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/EmptyExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">EmptyExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/EmptyStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/EmptyStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">EmptyStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/EnhancedForStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/EnhancedForStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">EnhancedForStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ExpressionStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ExpressionStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ExpressionStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FieldAccess.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldAccess</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FieldDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FieldDeclaration</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ForInStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ForInStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ForInStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ForStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ForStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ForStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionInvocation</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRef.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRef</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRefParameter.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionRefParameter.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionRefParameter</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/IfStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/IfStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">IfStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ImportDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">ImportDeclaration</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InferredType.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InferredType.html" title="class in org.eclipse.wst.jsdt.core.dom">InferredType</A>
-<DD>&nbsp;
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/Initializer.html" title="class in org.eclipse.wst.jsdt.core.dom">Initializer</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InstanceofExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InstanceofExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">InstanceofExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html" title="class in org.eclipse.wst.jsdt.core.dom">JavaScriptUnit</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/JSdoc.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/JSdoc.html" title="class in org.eclipse.wst.jsdt.core.dom">JSdoc</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/LabeledStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/LabeledStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">LabeledStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/LineComment.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/LineComment.html" title="class in org.eclipse.wst.jsdt.core.dom">LineComment</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ListExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ListExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">ListExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/MemberRef.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/MemberRef.html" title="class in org.eclipse.wst.jsdt.core.dom">MemberRef</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Modifier.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class 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>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/NullLiteral.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/NullLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">NullLiteral</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/NumberLiteral.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/NumberLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">NumberLiteral</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ObjectLiteral.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ObjectLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">ObjectLiteral</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ObjectLiteralField.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ObjectLiteralField.html" title="class in org.eclipse.wst.jsdt.core.dom">ObjectLiteralField</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PackageDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">PackageDeclaration</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ParameterizedType.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ParameterizedType.html" title="class in org.eclipse.wst.jsdt.core.dom">ParameterizedType</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ParenthesizedExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ParenthesizedExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">ParenthesizedExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PostfixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PostfixExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedName.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedName.html" title="class in org.eclipse.wst.jsdt.core.dom">QualifiedName</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedType.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/QualifiedType.html" title="class in org.eclipse.wst.jsdt.core.dom">QualifiedType</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/RegularExpressionLiteral.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/RegularExpressionLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">RegularExpressionLiteral</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ReturnStatement.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ReturnStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ReturnStatement</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SimpleName.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SimpleName.html" title="class in org.eclipse.wst.jsdt.core.dom">SimpleName</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SimpleType.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SimpleType.html" title="class in org.eclipse.wst.jsdt.core.dom">SimpleType</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SingleVariableDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">SingleVariableDeclaration</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/StringLiteral.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/StringLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">StringLiteral</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperConstructorInvocation</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperFieldAccess.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperFieldAccess.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperFieldAccess</A>
-<DD>Returns a list of structural property descriptors for this node type.
-<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html#propertyDescriptors(int)"><B>propertyDescriptors(int)</B></A> -
-Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/SuperMethodInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom">SuperMethodInvocation</A>
-