diff options
author | nork <nork@FreeBSD.org> | 2004-10-28 00:57:48 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2004-10-28 00:57:48 +0800 |
commit | e390cbae837672a3702a72b6881b82ef2eeddd3d (patch) | |
tree | f2fd0d4c6868d6de6a9822cd9b04f97fda646166 /java/eclipse | |
parent | 76f9a52b16d3dd9792b03b59bd0f289d95d7d2c3 (diff) | |
download | freebsd-ports-gnome-e390cbae837672a3702a72b6881b82ef2eeddd3d.tar.gz freebsd-ports-gnome-e390cbae837672a3702a72b6881b82ef2eeddd3d.tar.zst freebsd-ports-gnome-e390cbae837672a3702a72b6881b82ef2eeddd3d.zip |
o Update to 3.0.1. [1]
o Use native JDK rather than linux-sun-jdk. [2]
o Utilize WITH_MOZILLA. It provies to use mozilla or firefox. [2]
o Fix some port's bugs. [2]
o Add zip to BUILD_DEPENDS and fix build error without zip. [3]
PR: ports/72990 [1], ports/72475 [2]
Submitted by: Jeremy Faulkner <gldisater@gldis.ca> [1], [2]
Pointed out by: pointy via kris [3]
Diffstat (limited to 'java/eclipse')
-rw-r--r-- | java/eclipse/Makefile | 38 | ||||
-rw-r--r-- | java/eclipse/distinfo | 4 | ||||
-rw-r--r-- | java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml | 117 | ||||
-rw-r--r-- | java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml | 117 | ||||
-rw-r--r-- | java/eclipse/files/make_gtk.mak | 36 | ||||
-rw-r--r-- | java/eclipse/files/patch-assemble-all | 14 | ||||
-rw-r--r-- | java/eclipse/files/patch-build | 23 | ||||
-rw-r--r-- | java/eclipse/files/patch-features-jdt-build | 4 | ||||
-rw-r--r-- | java/eclipse/files/patch-features-jdt-source-build | 12 | ||||
-rw-r--r-- | java/eclipse/files/patch-features-pde-build | 8 | ||||
-rw-r--r-- | java/eclipse/files/patch-features-pde-source-build | 8 | ||||
-rw-r--r-- | java/eclipse/files/patch-features-platform-build | 108 | ||||
-rw-r--r-- | java/eclipse/files/patch-features-platform-source-build | 66 | ||||
-rw-r--r-- | java/eclipse/files/patch-features-platform-source-feature | 20 | ||||
-rw-r--r-- | java/eclipse/pkg-plist | 6111 |
15 files changed, 3297 insertions, 3389 deletions
diff --git a/java/eclipse/Makefile b/java/eclipse/Makefile index 76d0607618c7..97cb5ff55352 100644 --- a/java/eclipse/Makefile +++ b/java/eclipse/Makefile @@ -1,37 +1,39 @@ # New ports collection makefile for: eclipse # Date created: March 7, 2003 +# Whom: various members of freebsd-java # # $FreeBSD$ # PORTNAME= eclipse -PORTVERSION= 3.0 -PORTREVISION= 1 +PORTVERSION= 3.0.1 +PORTREVISION= 0 CATEGORIES= java devel MASTER_SITES= ${MASTER_SITE_ECLIPSE} -MASTER_SITE_SUBDIR= R-${PORTVERSION}-200406251208 +MASTER_SITE_SUBDIR= R-${PORTVERSION}-200409161125 +DISTNAME= ${PORTNAME}-sourceBuild-srcIncluded-${PORTVERSION} +DIST_SUBDIR= eclipse MAINTAINER= java@FreeBSD.ORG COMMENT= An open extensible IDE for anything and nothing in particular -DISTNAME= ${PORTNAME}-sourceBuild-srcIncluded-${PORTVERSION} -DIST_SUBDIR= eclipse - -BUILD_DEPENDS= ant:${PORTSDIR}/devel/apache-ant +BUILD_DEPENDS= ant:${PORTSDIR}/devel/apache-ant \ + zip:${PORTSDIR}/archivers/zip ONLY_FOR_ARCHS= i386 USE_GMAKE= yes USE_ZIP= yes -USE_GCC= 3.3 +USE_GCC= 3.4 USE_JAVA= yes JAVA_VERSION= 1.4+ +JAVA_OS= native USE_REINPLACE= yes NO_WRKSUBDIR= yes -PLIST_SUB= BUILD=${ECLIPSE_BUILD} WS=${ECLIPSE_WS} +PLIST_SUB= BUILD=${ECLIPSE_BUILD} WS=${ECLIPSE_WS} RELEASEVERSION=${PORTVERSION} -ECLIPSE_BUILD= 3062 +ECLIPSE_BUILD= 3063 ECLIPSE_OS= freebsd ECLIPSE_ARCH= x86 @@ -43,9 +45,17 @@ PLIST_SUB+= GTK:="@comment " PLIST_SUB+= MOTIF:="" .else ECLIPSE_WS= gtk -BUILD_DEPENDS+= mozilla:${PORTSDIR}/www/mozilla PLIST_SUB+= GTK:="" PLIST_SUB+= MOTIF:="@comment " +.if defined(WITH_MOZILLA) && ${WITH_MOZILLA} == "firefox" +BUILD_DEPENDS+= firefox:${PORTSDIR}/www/firefox +BROWSER= firefox +BROWSER_VER= `ls /usr/X11R6/lib/firefox/include | sed -e "s/firefox-//"` +.else +BUILD_DEPENDS+= mozilla:${PORTSDIR}/www/mozilla +BROWSER= mozilla +BROWSER_VER= +.endif .endif .if defined(WITHOUT_GNOMEVFS) @@ -58,7 +68,9 @@ USE_GNOME= gtk20 gnomevfs2 libgnome libgnomeui pkgconfig PLIST_SUB+= GNOME:="" .endif -MAKE_ARGS= ECLIPSE_BUILD=${ECLIPSE_BUILD} \ +MAKE_ARGS= BROWSER=${BROWSER} \ + BROWSER_VER=${BROWSER_VER} \ + ECLIPSE_BUILD=${ECLIPSE_BUILD} \ ECLIPSE_ARCH=${ECLIPSE_ARCH} \ ECLIPSE_OS=${ECLIPSE_OS} \ ECLIPSE_WS=${ECLIPSE_WS} \ @@ -72,7 +84,7 @@ SCRIPTS_ENV= ECLIPSE_WS="${ECLIPSE_WS}" # The Motif version builds a KDE/Qt library if kdebase is around .if defined(WITH_MOTIF) BUILD_KDE=`${PKG_INFO} -xc kdebase | ${GREP} "no packages match"` -.if empty(${BUILD_KDE}) +.if empty(BUILD_KDE) PLIST_SUB+= KDE:="" .else PLIST_SUB+= KDE:="@comment *${BUILD_KDE}*" diff --git a/java/eclipse/distinfo b/java/eclipse/distinfo index ef9852a21512..f6cfc6c1af90 100644 --- a/java/eclipse/distinfo +++ b/java/eclipse/distinfo @@ -1,2 +1,2 @@ -MD5 (eclipse/eclipse-sourceBuild-srcIncluded-3.0.zip) = 962a41fe062f0ddc809ca956687c7e01 -SIZE (eclipse/eclipse-sourceBuild-srcIncluded-3.0.zip) = 55140382 +MD5 (eclipse/eclipse-sourceBuild-srcIncluded-3.0.1.zip) = c95561df899a47fc05261531ed0b9221 +SIZE (eclipse/eclipse-sourceBuild-srcIncluded-3.0.1.zip) = 55618511 diff --git a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml b/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml index 7ff6901d82f4..fae9108eaf4f 100644 --- a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml +++ b/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.gtk.x86.xml @@ -305,121 +305,12 @@ <ant antfile="build.xml" dir="features/org.eclipse.platform/" target="gather.bin.parts"> <property name="feature.base" value="${eclipse.base}"/> </ant> + + <!-- This shouldn't be changed ever --> <exec executable="zip" dir="${assemblyTempDir}"> <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.doc.isv_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.scheduler_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ltk.ui.refactoring_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.doc.user_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.osgi_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.debug.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.intro_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.source_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.junit_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.base_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.osgi.services_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.boot_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.sdk_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.swt.gtk_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.filebuffers_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.apache.lucene_1.3.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.workbench_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.runtime.compatibility_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ant.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ant.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.views_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.source_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.doc.user_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.junit.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.expressions_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.source_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.ide_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.externaltools_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ltk.core.refactoring_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.ide_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.ssh_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jface.text_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.compare_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.doc.user_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jface_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.junit_3.8.1"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.resources.freebsd_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.debug.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.resources_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.doc.isv_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.webapp_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.appserver_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.ssh2_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.junit.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.variables_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.search_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.debug_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.console_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.core.freebsd_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.presentations.r21_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.text_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.tomcat_4.1.30"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.launching_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.swt_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.build_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.editors_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.debug.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.osgi.util_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.apache.ant_1.6.1"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.source.freebsd.gtk.x86_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.workbench.texteditor_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.cheatsheets_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.workbench.compatibility_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.configurator_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.forms_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${featureArchivePrefix}/org.eclipse.jdt.source_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${featureArchivePrefix}/org.eclipse.platform.source_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.sdk_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.jdt_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.pde_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.platform_3.0.0"/> + <arg line="${featureArchivePrefix}"/> + <arg line="${pluginArchivePrefix}"/> </exec> <exec executable="zip" dir="${eclipse.base}/freebsd.gtk.x86"> <arg line="-r -q ${zipargs} ${archiveFullPath} . "/> diff --git a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml b/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml index 5951975fcb28..643f346be719 100644 --- a/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml +++ b/java/eclipse/files/assemble.org.eclipse.sdk.freebsd.motif.x86.xml @@ -305,121 +305,12 @@ <ant antfile="build.xml" dir="features/org.eclipse.platform/" target="gather.bin.parts"> <property name="feature.base" value="${eclipse.base}"/> </ant> + + <!-- This shouldn't be changed ever --> <exec executable="zip" dir="${assemblyTempDir}"> <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.doc.isv_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.scheduler_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ltk.ui.refactoring_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.doc.user_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.osgi_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.debug.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.intro_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.source_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.junit_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.base_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.osgi.services_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.boot_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.sdk_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.filebuffers_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.apache.lucene_1.3.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.workbench_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.runtime.compatibility_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ant.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ant.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.views_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.source_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.doc.user_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.junit.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.expressions_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.source_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.ide_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.externaltools_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ltk.core.refactoring_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform.source.freebsd.motif.x86_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.ide_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.ssh_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jface.text_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.compare_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.doc.user_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jface_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.junit_3.8.1"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.resources.freebsd_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.debug.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.resources_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.doc.isv_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.webapp_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.appserver_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.ssh2_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.junit.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.help.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.core.variables_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.search_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.debug_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.console_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.core.freebsd_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.presentations.r21_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.text_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.platform_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.tomcat_4.1.30"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.launching_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.cvs.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.swt_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.build_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.editors_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.jdt.debug.ui_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.osgi.util_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.apache.ant_1.6.1"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.runtime_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.team.core_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.workbench.texteditor_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.cheatsheets_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.pde.core_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.swt.motif_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.workbench.compatibility_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.update.configurator_3.0.0"/> - <arg line="${pluginArchivePrefix}/org.eclipse.ui.forms_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${featureArchivePrefix}/org.eclipse.jdt.source_3.0.0"/> - </exec> - <exec executable="zip" dir="${assemblyTempDir}"> - <arg line="-r -q ${zipargs} ${archiveFullPath}"/> - <arg line="${featureArchivePrefix}/org.eclipse.platform.source_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.sdk_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.jdt_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.pde_3.0.0"/> - <arg line="${featureArchivePrefix}/org.eclipse.platform_3.0.0"/> + <arg line="${featureArchivePrefix}"/> + <arg line="${pluginArchivePrefix}"/> </exec> <exec executable="zip" dir="${eclipse.base}/freebsd.motif.x86"> <arg line="-r -q ${zipargs} ${archiveFullPath} . "/> diff --git a/java/eclipse/files/make_gtk.mak b/java/eclipse/files/make_gtk.mak index 0e8d27898c0c..222f4435497e 100644 --- a/java/eclipse/files/make_gtk.mak +++ b/java/eclipse/files/make_gtk.mak @@ -54,6 +54,7 @@ ATKLIBS = `pkg-config --libs atk gtk+-2.0` GNOMECFLAGS = `pkg-config --cflags gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` GNOMELIBS = `pkg-config --libs gnome-vfs-module-2.0 libgnome-2.0 libgnomeui-2.0` +ifeq ($(BROWSER),mozilla) MOZILLACFLAGS = -O \ -fno-rtti \ -Wall \ @@ -61,14 +62,33 @@ MOZILLACFLAGS = -O \ -I$(JAVA_HOME)/include \ -I$(JAVA_HOME)/include/bsd \ -I$(JAVA_HOME)/include/freebsd \ - -include $(MOZILLA_HOME)/include/mozilla/mozilla-config.h \ - -I$(MOZILLA_HOME)/include/mozilla \ - -I$(MOZILLA_HOME)/include/mozilla/xpcom \ - -I$(MOZILLA_HOME)/include/mozilla/string \ - -I$(MOZILLA_HOME)/include/mozilla/nspr \ - -I$(MOZILLA_HOME)/include/mozilla/embed_base \ - -I$(MOZILLA_HOME)/include/mozilla/gfx -MOZILLALIBS = -L$(MOZILLA_HOME)/lib/mozilla -lgtkembedmoz -lxpcom + -include $(MOZILLA_HOME)/include/$(BROWSER)/mozilla-config.h \ + -I$(MOZILLA_HOME)/include/$(BROWSER) \ + -I$(MOZILLA_HOME)/include/$(BROWSER)/xpcom \ + -I$(MOZILLA_HOME)/include/$(BROWSER)/string \ + -I$(MOZILLA_HOME)/include/$(BROWSER)/nspr \ + -I$(MOZILLA_HOME)/include/$(BROWSER)/embed_base \ + -I$(MOZILLA_HOME)/include/$(BROWSER)/gfx +else +MOZILLACFLAGS = -O \ + -fno-rtti \ + -Wall \ + -I./ \ + -I$(JAVA_HOME)/include \ + -I$(JAVA_HOME)/include/bsd \ + -I$(JAVA_HOME)/include/freebsd \ + -include $(MOZILLA_HOME)/lib/$(BROWSER)/include/$(BROWSER)-$(BROWSER_VER)/mozilla-config.h \ + -I$(MOZILLA_HOME)/lib/$(BROWSER)/include/$(BROWSER)-$(BROWSER_VER) \ + -I$(MOZILLA_HOME)/lib/$(BROWSER)/include/$(BROWSER)-$(BROWSER_VER)/xpcom \ + -I$(MOZILLA_HOME)/lib/$(BROWSER)/include/$(BROWSER)-$(BROWSER_VER)/string \ + -I$(MOZILLA_HOME)/lib/$(BROWSER)/include/$(BROWSER)-$(BROWSER_VER)/nspr \ + -I$(MOZILLA_HOME)/lib/$(BROWSER)/include/$(BROWSER)-$(BROWSER_VER)/embed_base \ + -I$(MOZILLA_HOME)/lib/$(BROWSER)/include/$(BROWSER)-$(BROWSER_VER)/gfx +endif + +MOZILLALIBS = -L$(MOZILLA_HOME)/lib/$(BROWSER) \ + -L$(MOZILLA_HOME)/lib/$(BROWSER)/lib/$(BROWSER)-$(BROWSER_VER) \ + -lgtkembedmoz -lxpcom MOZILLALDFLAGS = -s SWT_OBJECTS = swt.o callback.o diff --git a/java/eclipse/files/patch-assemble-all b/java/eclipse/files/patch-assemble-all index 4e31a4f3f878..4ffff7bbf067 100644 --- a/java/eclipse/files/patch-assemble-all +++ b/java/eclipse/files/patch-assemble-all @@ -1,8 +1,8 @@ ---- assemble.org.eclipse.sdk.all.xml.orig Tue Jun 15 21:51:32 2004 -+++ assemble.org.eclipse.sdk.all.xml Tue Jun 15 21:52:22 2004 -@@ -10,6 +10,12 @@ - <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.linux.gtk.x86"> - <property name="assembleScriptName" value="assemble.org.eclipse.sdk.linux.gtk.x86.xml"/> +--- assemble.org.eclipse.sdk.all.xml.orig Sun Oct 17 22:04:02 2004 ++++ assemble.org.eclipse.sdk.all.xml Sun Oct 17 22:03:18 2004 +@@ -19,6 +19,12 @@ + <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.linux.motif.x86"> + <property name="assembleScriptName" value="assemble.org.eclipse.sdk.linux.motif.x86.xml"/> </ant> + <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.freebsd.gtk.x86"> + <property name="assembleScriptName" value="assemble.org.eclipse.sdk.freebsd.gtk.x86.xml"/> @@ -10,6 +10,6 @@ + <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.freebsd.motif.x86"> + <property name="assembleScriptName" value="assemble.org.eclipse.sdk.freebsd.motif.x86.xml"/> + </ant> - <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.linux.gtk.ppc"> - <property name="assembleScriptName" value="assemble.org.eclipse.sdk.linux.gtk.ppc.xml"/> + <ant antfile="${customTargets}" target="assemble.org.eclipse.sdk.solaris.motif.sparc"> + <property name="assembleScriptName" value="assemble.org.eclipse.sdk.solaris.motif.sparc.xml"/> </ant> diff --git a/java/eclipse/files/patch-build b/java/eclipse/files/patch-build index f4d7dc479d42..21a526f1b77f 100644 --- a/java/eclipse/files/patch-build +++ b/java/eclipse/files/patch-build @@ -1,11 +1,22 @@ ---- build.orig Sat Jun 12 01:27:29 2004 -+++ build Mon Jun 14 10:27:59 2004 -@@ -51,7 +51,7 @@ +--- build.orig Thu Sep 16 15:50:23 2004 ++++ build Sat Oct 23 06:19:32 2004 +@@ -1,6 +1,6 @@ + #! /bin/sh + +-export ANT_OPTS=-Xmx1000M ++export ANT_OPTS=-Xmx128M + + bootclasspath=$JAVA_HOME/jre/lib/rt.jar + os="" +@@ -51,9 +51,9 @@ exit 1 fi --if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-amd64" ] || [ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] -+if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-amd64" ] || [ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] || [ "$os-$ws-$arch" = "freebsd-gtk-x86" ] || [ "$os-$ws-$arch" = "freebsd-motif-x86" ] +-if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-amd64" ] || [ "$os-$ws-$arch" = "linux-gtk-ia64" ] ||[ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] ++if [ "$os-$ws-$arch" = "linux-motif-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-amd64" ] || [ "$os-$ws-$arch" = "linux-gtk-ia64" ] ||[ "$os-$ws-$arch" = "solaris-motif-sparc" ] || [ "$os-$ws-$arch" = "aix-motif-ppc" ] || [ "$os-$ws-$arch" = "hpux-motif-PA_RISC" ] || [ "$os-$ws-$arch" = "qnx-photon-x86" ] || [ "$os-$ws-$arch" = "win32-win32-x86" ] || [ "$os-$ws-$arch" = "linux-gtk-ppc" ] || [ "$os-$ws-$arch" = "macosx-carbon-ppc" ] || [ "$os-$ws-$arch" = "freebsd-gtk-x86" ] || [ "$os-$ws-$arch" = "freebsd-motif-x86" ] then - ant -buildfile build.xml $target -DinstallOs=$os -DinstallWs=$ws -DinstallArch=$arch -Dbootclasspath=$bootclasspath -DjavacTarget=1.2 +- ant -buildfile build.xml $target -DinstallOs=$os -DinstallWs=$ws -DinstallArch=$arch -Dbootclasspath=$bootclasspath -DjavacTarget=1.2 ++ ant -buildfile build.xml $target -DinstallOs=$os -DinstallWs=$ws -DinstallArch=$arch -Dbootclasspath=$bootclasspath -DjavacTarget=1.4 else + echo "The os-ws-arch combination of $os-$ws-$arch is not valid." + exit 1 diff --git a/java/eclipse/files/patch-features-jdt-build b/java/eclipse/files/patch-features-jdt-build index 631e5aec9945..7c1cc432fdb7 100644 --- a/java/eclipse/files/patch-features-jdt-build +++ b/java/eclipse/files/patch-features-jdt-build @@ -7,13 +7,13 @@ + <target name="rootFilesfreebsd_gtk_x86"> + <mkdir dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}"/> + <copy todir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" failonerror="true"> -+ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> + </copy> + </target> + <target name="rootFilesfreebsd_motif_x86"> + <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/> + <copy todir="${feature.base}/freebsd.motif.x86/${collectingFolder}" failonerror="true"> -+ <fileset dir="${basedir}/rootfiles" includes="**" /> ++ <fileset dir="${basedir}/rootfiles" includes="**" /> + </copy> + </target> <target name="rootFilessolaris_motif_sparc"> diff --git a/java/eclipse/files/patch-features-jdt-source-build b/java/eclipse/files/patch-features-jdt-source-build index 8850c300df93..620751087709 100644 --- a/java/eclipse/files/patch-features-jdt-source-build +++ b/java/eclipse/files/patch-features-jdt-source-build @@ -1,13 +1,13 @@ ---- features/org.eclipse.jdt.source/build.xml.orig Sat Jun 12 01:24:16 2004 -+++ features/org.eclipse.jdt.source/build.xml Sun Jun 20 02:22:30 2004 -@@ -92,6 +92,10 @@ +--- features/org.eclipse.jdt.source/build.xml.orig Sun Oct 17 22:12:02 2004 ++++ features/org.eclipse.jdt.source/build.xml Sun Oct 17 22:13:55 2004 +@@ -94,6 +94,10 @@ </target> - <target name="rootFileslinux_gtk_amd64"> + <target name="rootFileslinux_motif_x86"> </target> -+ <target name="rootFilesfreebsd_gtk_x86"> -+ </target> + <target name="rootFilesfreebsd_motif_x86"> + </target> ++ <target name="rootFilesfreebsd_gtk_x86"> ++ </target> <target name="rootFilessolaris_motif_sparc"> </target> <target name="rootFilesaix_motif_ppc"> diff --git a/java/eclipse/files/patch-features-pde-build b/java/eclipse/files/patch-features-pde-build index 6977f728ab1b..7bdd9a68275b 100644 --- a/java/eclipse/files/patch-features-pde-build +++ b/java/eclipse/files/patch-features-pde-build @@ -1,8 +1,8 @@ ---- features/org.eclipse.pde/build.xml.orig Fri May 21 19:15:34 2004 -+++ features/org.eclipse.pde/build.xml Thu Jun 3 00:36:05 2004 -@@ -116,6 +116,10 @@ +--- features/org.eclipse.pde/build.xml.orig Sun Oct 17 22:15:27 2004 ++++ features/org.eclipse.pde/build.xml Sun Oct 17 22:17:56 2004 +@@ -114,6 +114,10 @@ </target> - <target name="rootFileslinux_gtk_amd64"> + <target name="rootFileslinux_motif_x86"> </target> + <target name="rootFilesfreebsd_gtk_x86"> + </target> diff --git a/java/eclipse/files/patch-features-pde-source-build b/java/eclipse/files/patch-features-pde-source-build index 6a5184027eba..92b936b7a515 100644 --- a/java/eclipse/files/patch-features-pde-source-build +++ b/java/eclipse/files/patch-features-pde-source-build @@ -1,8 +1,8 @@ ---- features/org.eclipse.pde.source/build.xml.orig Thu Jun 3 00:40:26 2004 -+++ features/org.eclipse.pde.source/build.xml Thu Jun 3 00:41:41 2004 -@@ -81,6 +81,10 @@ +--- features/org.eclipse.pde.source/build.xml.orig Sun Oct 17 22:21:30 2004 ++++ features/org.eclipse.pde.source/build.xml Sun Oct 17 22:22:08 2004 +@@ -84,6 +84,10 @@ </target> - <target name="rootFileslinux_gtk_amd64"> + <target name="rootFileslinux_motif_x86"> </target> + <target name="rootFilesfreebsd_gtk_x86"> + </target> diff --git a/java/eclipse/files/patch-features-platform-build b/java/eclipse/files/patch-features-platform-build index 6bb8c8bebc66..ca72b5390887 100644 --- a/java/eclipse/files/patch-features-platform-build +++ b/java/eclipse/files/patch-features-platform-build @@ -1,6 +1,6 @@ ---- features/org.eclipse.platform/build.xml.orig Sun Jun 20 11:50:43 2004 -+++ features/org.eclipse.platform/build.xml Sun Jun 20 12:10:54 2004 -@@ -59,6 +59,11 @@ +--- features/org.eclipse.platform/build.xml.orig Thu Sep 16 15:45:46 2004 ++++ features/org.eclipse.platform/build.xml Sun Oct 17 22:44:56 2004 +@@ -64,6 +64,11 @@ </ant> <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.gtk" target="${target}"> <property name="arch" value="x86"/> @@ -12,7 +12,7 @@ <property name="os" value="linux"/> <property name="ws" value="gtk"/> </ant> -@@ -99,6 +104,11 @@ +@@ -104,6 +109,11 @@ </ant> <ant antfile="build.xml" dir="../../plugins/org.eclipse.swt.motif" target="${target}"> <property name="arch" value="x86"/> @@ -24,7 +24,7 @@ <property name="os" value="linux"/> <property name="ws" value="motif"/> </ant> -@@ -187,6 +197,11 @@ +@@ -192,6 +202,11 @@ <property name="os" value="win32"/> <property name="ws" value="win32"/> </ant> @@ -36,7 +36,7 @@ <ant antfile="build.xml" dir="../../plugins/org.eclipse.update.core.linux" target="${target}"> <property name="arch" value="x86"/> <property name="os" value="linux"/> -@@ -237,6 +252,11 @@ +@@ -247,6 +262,11 @@ <property name="os" value="qnx"/> <property name="ws" value="photon"/> </ant> @@ -48,18 +48,96 @@ <ant antfile="build.xml" dir="../../plugins/org.eclipse.core.resources.linux" target="${target}"> <property name="arch" value="x86"/> <property name="os" value="linux"/> -@@ -434,7 +454,7 @@ - <copy todir="${feature.base}/features/org.eclipse.platform_3.0.0" failonerror="true"> +@@ -444,7 +464,85 @@ + <copy todir="${feature.base}/features/org.eclipse.platform_3.0.1" failonerror="true"> <fileset dir="${basedir}" includes="cpl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" /> </copy> -- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.0.0/feature.xml" selfVersion="3.0.0" featureIds="" pluginIds="org.apache.ant,1.6.1,org.apache.lucene,1.3.0,org.eclipse.ant.core,3.0.0,org.eclipse.compare,3.0.0,org.eclipse.core.boot,3.0.0,org.eclipse.core.filebuffers,3.0.0,org.eclipse.core.expressions,3.0.0,org.eclipse.core.resources,3.0.0,org.eclipse.core.runtime,3.0.0,org.eclipse.core.runtime.compatibility,3.0.0,org.eclipse.osgi,3.0.0,org.eclipse.osgi.services,3.0.0,org.eclipse.osgi.util,3.0.0,org.eclipse.core.variables,3.0.0,org.eclipse.debug.core,3.0.0,org.eclipse.debug.ui,3.0.0,org.eclipse.help,3.0.0,org.eclipse.help.webapp,3.0.0,org.eclipse.help.base,3.0.0,org.eclipse.help.ui,3.0.0,org.eclipse.help.appserver,3.0.0,org.eclipse.help.ide,3.0.0,org.eclipse.platform,3.0.0,org.eclipse.platform.doc.user,3.0.0,org.eclipse.search,3.0.0,org.eclipse.swt,3.0.0,org.eclipse.team.core,3.0.0,org.eclipse.team.cvs.core,3.0.0,org.eclipse.team.cvs.ssh,3.0.0,org.eclipse.team.cvs.ssh2,3.0.0,org.eclipse.team.cvs.ui,3.0.0,org.eclipse.team.ui,3.0.0,org.eclipse.tomcat,4.1.30,org.eclipse.text,3.0.0,org.eclipse.jface,3.0.0,org.eclipse.jface.text,3.0.0,org.eclipse.ui.console,3.0.0,org.eclipse.ui.presentations.r21,3.0.0,org.eclipse.ui.intro,3.0.0,org.eclipse.ui.cheatsheets,3.0.0,org.eclipse.ui.workbench,3.0.0,org.eclipse.ui.workbench.texteditor,3.0.0,org.eclipse.ui.views,3.0.0,org.eclipse.ui.editors,3.0.0,org.eclipse.ui.forms,3.0.0,org.eclipse.ui,3.0.0,org.eclipse.ui.externaltools,3.0.0,org.eclipse.ui.ide,3.0.0,org.eclipse.update.configurator,3.0.0,org.eclipse.update.core,3.0.0,org.eclipse.update.scheduler,3.0.0,org.eclipse.update.ui,3.0.0,org.eclipse.ui.workbench.compatibility,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.core.resources.hpux,3.0.0,org.eclipse.swt.gtk,3.0.0,org.eclipse.swt.gtk,3.0.0,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.0,org.eclipse.swt.gtk64,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.0,org.eclipse.swt.carbon,3.0.0,org.eclipse.core.resources.macosx,3.0.0,org.eclipse.ui.carbon,3.0.0,org.eclipse.swt.photon,3.0.0,org.eclipse.core.resources.qnx,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.swt.win32,3.0.0,org.eclipse.core.resources.win32,3.0.0,org.eclipse.ui.win32,3.0.0,org.eclipse.update.core.win32,3.0.0,"/> -+ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.0.0/feature.xml" selfVersion="3.0.0" featureIds="" pluginIds="org.apache.ant,1.6.1,org.apache.lucene,1.3.0,org.eclipse.ant.core,3.0.0,org.eclipse.compare,3.0.0,org.eclipse.core.boot,3.0.0,org.eclipse.core.filebuffers,3.0.0,org.eclipse.core.expressions,3.0.0,org.eclipse.core.resources,3.0.0,org.eclipse.core.runtime,3.0.0,org.eclipse.core.runtime.compatibility,3.0.0,org.eclipse.osgi,3.0.0,org.eclipse.osgi.services,3.0.0,org.eclipse.osgi.util,3.0.0,org.eclipse.core.variables,3.0.0,org.eclipse.debug.core,3.0.0,org.eclipse.debug.ui,3.0.0,org.eclipse.help,3.0.0,org.eclipse.help.webapp,3.0.0,org.eclipse.help.base,3.0.0,org.eclipse.help.ui,3.0.0,org.eclipse.help.appserver,3.0.0,org.eclipse.help.ide,3.0.0,org.eclipse.platform,3.0.0,org.eclipse.platform.doc.user,3.0.0,org.eclipse.search,3.0.0,org.eclipse.swt,3.0.0,org.eclipse.team.core,3.0.0,org.eclipse.team.cvs.core,3.0.0,org.eclipse.team.cvs.ssh,3.0.0,org.eclipse.team.cvs.ssh2,3.0.0,org.eclipse.team.cvs.ui,3.0.0,org.eclipse.team.ui,3.0.0,org.eclipse.tomcat,4.1.30,org.eclipse.text,3.0.0,org.eclipse.jface,3.0.0,org.eclipse.jface.text,3.0.0,org.eclipse.ui.console,3.0.0,org.eclipse.ui.presentations.r21,3.0.0,org.eclipse.ui.intro,3.0.0,org.eclipse.ui.cheatsheets,3.0.0,org.eclipse.ui.workbench,3.0.0,org.eclipse.ui.workbench.texteditor,3.0.0,org.eclipse.ui.views,3.0.0,org.eclipse.ui.editors,3.0.0,org.eclipse.ui.forms,3.0.0,org.eclipse.ui,3.0.0,org.eclipse.ui.externaltools,3.0.0,org.eclipse.ui.ide,3.0.0,org.eclipse.update.configurator,3.0.0,org.eclipse.update.core,3.0.0,org.eclipse.update.scheduler,3.0.0,org.eclipse.update.ui,3.0.0,org.eclipse.ui.workbench.compatibility,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.core.resources.hpux,3.0.0,org.eclipse.swt.gtk,3.0.0,org.eclipse.swt.gtk,3.0.0,org.eclipse.core.resources.freebsd,3.0.0,org.eclipse.update.core.freebsd,3.0.0,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.0,org.eclipse.swt.gtk64,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.0,org.eclipse.swt.carbon,3.0.0,org.eclipse.core.resources.macosx,3.0.0,org.eclipse.ui.carbon,3.0.0,org.eclipse.swt.photon,3.0.0,org.eclipse.core.resources.qnx,3.0.0,org.eclipse.swt.motif,3.0.0,org.eclipse.swt.win32,3.0.0,org.eclipse.core.resources.win32,3.0.0,org.eclipse.ui.win32,3.0.0,org.eclipse.update.core.win32,3.0.0,"/> +- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.apache.ant,1.6.2,org.apache.lucene,1.3.1,org.eclipse.ant.core,3.0.0,org.eclipse.compare,3.0.0,org.eclipse.core.boot,3.0.0,org.eclipse.core.filebuffers,3.0.1,org.eclipse.core.expressions,3.0.0,org.eclipse.core.resources,3.0.1,org.eclipse.core.runtime,3.0.1,org.eclipse.core.runtime.compatibility,3.0.0,org.eclipse.osgi,3.0.1,org.eclipse.osgi.services,3.0.0,org.eclipse.osgi.util,3.0.0,org.eclipse.core.variables,3.0.0,org.eclipse.debug.core,3.0.1,org.eclipse.debug.ui,3.0.1,org.eclipse.help,3.0.0,org.eclipse.help.webapp,3.0.1,org.eclipse.help.base,3.0.1,org.eclipse.help.ui,3.0.0,org.eclipse.help.appserver,3.0.0,org.eclipse.help.ide,3.0.0,org.eclipse.platform,3.0.1,org.eclipse.platform.doc.user,3.0.1,org.eclipse.search,3.0.1,org.eclipse.swt,3.0.1,org.eclipse.team.core,3.0.0,org.eclipse.team.cvs.core,3.0.1,org.eclipse.team.cvs.ssh,3.0.0,org.eclipse.team.cvs.ssh2,3.0.0,org.eclipse.team.cvs.ui,3.0.1,org.eclipse.team.ui,3.0.1,org.eclipse.tomcat,4.1.30,org.eclipse.text,3.0.1,org.eclipse.jface,3.0.0,org.eclipse.jface.text,3.0.1,org.eclipse.ui.console,3.0.0,org.eclipse.ui.presentations.r21,3.0.1,org.eclipse.ui.intro,3.0.1,org.eclipse.ui.cheatsheets,3.0.1,org.eclipse.ui.workbench,3.0.1,org.eclipse.ui.workbench.texteditor,3.0.1,org.eclipse.ui.views,3.0.0,org.eclipse.ui.editors,3.0.1,org.eclipse.ui.forms,3.0.0,org.eclipse.ui,3.0.1,org.eclipse.ui.externaltools,3.0.1,org.eclipse.ui.ide,3.0.1,org.eclipse.update.configurator,3.0.0,org.eclipse.update.core,3.0.1,org.eclipse.update.scheduler,3.0.0,org.eclipse.update.ui,3.0.1,org.eclipse.ui.workbench.compatibility,3.0.0,org.eclipse.swt.motif,3.0.1,org.eclipse.swt.motif,3.0.1,org.eclipse.core.resources.hpux,3.0.0,org.eclipse.swt.gtk,3.0.1,org.eclipse.swt.gtk,3.0.1,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.1,org.eclipse.swt.gtk64,3.0.1,org.eclipse.swt.gtk64,3.0.1,org.eclipse.update.core.linux,3.0.1,org.eclipse.swt.motif,3.0.1,org.eclipse.core.resources.linux,3.0.0,org.eclipse.update.core.linux,3.0.1,org.eclipse.swt.carbon,3.0.1,org.eclipse.core.resources.macosx,3.0.0,org.eclipse.ui.carbon,3.0.0,org.eclipse.swt.photon,3.0.1,org.eclipse.core.resources.qnx,3.0.0,org.eclipse.swt.motif,3.0.1,org.eclipse.swt.win32,3.0.1,org.eclipse.core.resources.win32,3.0.0,org.eclipse.ui.win32,3.0.1,org.eclipse.update.core.win32,3.0.0,"/> ++ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds=" ++org.apache.ant,1.6.2, ++org.apache.lucene,1.3.1, ++org.eclipse.ant.core,3.0.0, ++org.eclipse.compare,3.0.0, ++org.eclipse.core.boot,3.0.0, ++org.eclipse.core.filebuffers,3.0.1, ++org.eclipse.core.expressions,3.0.0, ++org.eclipse.core.resources,3.0.1, ++org.eclipse.core.runtime,3.0.1, ++org.eclipse.core.runtime.compatibility,3.0.0, ++org.eclipse.osgi,3.0.1, ++org.eclipse.osgi.services,3.0.0, ++org.eclipse.osgi.util,3.0.0, ++org.eclipse.core.variables,3.0.0, ++org.eclipse.debug.core,3.0.1, ++org.eclipse.debug.ui,3.0.1, ++org.eclipse.help,3.0.0, ++org.eclipse.help.webapp,3.0.1, ++org.eclipse.help.base,3.0.1, ++org.eclipse.help.ui,3.0.0, ++org.eclipse.help.appserver,3.0.0, ++org.eclipse.help.ide,3.0.0, ++org.eclipse.platform,3.0.1, ++org.eclipse.platform.doc.user,3.0.1, ++org.eclipse.search,3.0.1, ++org.eclipse.swt,3.0.1, ++org.eclipse.team.core,3.0.0, ++org.eclipse.team.cvs.core,3.0.1, ++org.eclipse.team.cvs.ssh,3.0.0, ++org.eclipse.team.cvs.ssh2,3.0.0, ++org.eclipse.team.cvs.ui,3.0.1, ++org.eclipse.team.ui,3.0.1, ++org.eclipse.tomcat,4.1.30, ++org.eclipse.text,3.0.1, ++org.eclipse.jface,3.0.0, ++org.eclipse.jface.text,3.0.1, ++org.eclipse.ui.console,3.0.0, ++org.eclipse.ui.presentations.r21,3.0.1, ++org.eclipse.ui.intro,3.0.1, ++org.eclipse.ui.cheatsheets,3.0.1, ++org.eclipse.ui.workbench,3.0.1, ++org.eclipse.ui.workbench.texteditor,3.0.1, ++org.eclipse.ui.views,3.0.0, ++org.eclipse.ui.editors,3.0.1, ++org.eclipse.ui.forms,3.0.0, ++org.eclipse.ui,3.0.1, ++org.eclipse.ui.externaltools,3.0.1, ++org.eclipse.ui.ide,3.0.1, ++org.eclipse.update.configurator,3.0.0, ++org.eclipse.update.core,3.0.1, ++org.eclipse.update.scheduler,3.0.0, ++org.eclipse.update.ui,3.0.1, ++org.eclipse.ui.workbench.compatibility,3.0.0, ++org.eclipse.swt.motif,3.0.1, ++org.eclipse.swt.motif,3.0.1, ++org.eclipse.core.resources.hpux,3.0.0, ++org.eclipse.swt.gtk,3.0.1, ++org.eclipse.swt.gtk,3.0.1, ++org.eclipse.core.resources.freebsd,3.0.0, ++org.eclipse.update.core.freebsd,3.0.1, ++org.eclipse.core.resources.linux,3.0.0, ++org.eclipse.update.core.linux,3.0.1, ++org.eclipse.swt.gtk64,3.0.1, ++org.eclipse.swt.gtk64,3.0.1, ++org.eclipse.update.core.linux,3.0.1, ++org.eclipse.swt.motif,3.0.1, ++org.eclipse.core.resources.linux,3.0.0, ++org.eclipse.update.core.linux,3.0.1, ++org.eclipse.swt.carbon,3.0.1, ++org.eclipse.core.resources.macosx,3.0.0, ++org.eclipse.ui.carbon,3.0.0, ++org.eclipse.swt.photon,3.0.1, ++org.eclipse.core.resources.qnx,3.0.0, ++org.eclipse.swt.motif,3.0.1, ++org.eclipse.swt.win32,3.0.1, ++org.eclipse.core.resources.win32,3.0.0, ++org.eclipse.ui.win32,3.0.1, ++org.eclipse.update.core.win32,3.0.0,"/> <antcall target="rootFiles${os}_${ws}_${arch}"/> </target> <target name="rootFileswin32_win32_x86"> -@@ -447,6 +467,28 @@ +@@ -496,6 +594,28 @@ </copy> - <chmod perm="755" dir="${feature.base}/win32.win32.x86/${collectingFolder}" includes="eclipse" /> + <chmod perm="755" dir="${feature.base}/linux.gtk.ia64/${collectingFolder}" includes="eclipse" /> </target> + <target name="rootFilesfreebsd_motif_x86"> + <mkdir dir="${feature.base}/freebsd.motif.x86/${collectingFolder}"/> @@ -86,7 +164,7 @@ <target name="rootFileslinux_motif_x86"> <mkdir dir="${feature.base}/linux.motif.x86/${collectingFolder}"/> <copy todir="${feature.base}/linux.motif.x86/${collectingFolder}" failonerror="true"> -@@ -468,6 +510,16 @@ +@@ -517,6 +637,16 @@ <arg line="libXm.so.2.1"/> <arg line="libXm.so"/> </exec> @@ -101,5 +179,5 @@ + </copy> + <chmod perm="755" dir="${feature.base}/freebsd.gtk.x86/${collectingFolder}" includes="eclipse" /> </target> - <target name="rootFileslinux_gtk_x86"> - <mkdir dir="${feature.base}/linux.gtk.x86/${collectingFolder}"/> + <target name="rootFilessolaris_motif_sparc"> + <mkdir dir="${feature.base}/solaris.motif.sparc/${collectingFolder}"/> diff --git a/java/eclipse/files/patch-features-platform-source-build b/java/eclipse/files/patch-features-platform-source-build index f77583209d9c..68c1f8c96348 100644 --- a/java/eclipse/files/patch-features-platform-source-build +++ b/java/eclipse/files/patch-features-platform-source-build @@ -1,46 +1,54 @@ ---- features/org.eclipse.platform.source/build.xml.orig Sat Jun 12 01:24:16 2004 -+++ features/org.eclipse.platform.source/build.xml Sun Jun 20 12:32:23 2004 -@@ -17,6 +17,11 @@ - <property name="os" value="hpux"/> +--- features/org.eclipse.platform.source/build.xml.orig Sun Oct 17 22:47:16 2004 ++++ features/org.eclipse.platform.source/build.xml Sun Oct 17 22:52:58 2004 +@@ -37,6 +37,16 @@ + <property name="os" value="linux"/> <property name="ws" value="motif"/> </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.motif.x86" target="${target}"> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.x86" target="${target}"> + <property name="arch" value="x86"/> + <property name="os" value="freebsd"/> -+ <property name="ws" value="motif"/> ++ <property name="ws" value="gtk"/> + </ant> - <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.linux.motif.x86" target="${target}"> - <property name="arch" value="x86"/> - <property name="os" value="linux"/> -@@ -62,6 +67,11 @@ - <property name="os" value="linux"/> - <property name="ws" value="gtk"/> - </ant> -+ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.gtk.x86" target="${target}"> ++ <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.freebsd.motif.x86" target="${target}"> + <property name="arch" value="x86"/> + <property name="os" value="freebsd"/> -+ <property name="ws" value="gtk"/> ++ <property name="ws" value="motif"/> + </ant> - <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.doc.isv" target="${target}"> - <property name="arch" value="x86"/> - <property name="os" value="win32"/> -@@ -124,7 +134,7 @@ - <copy todir="${feature.base}/features/org.eclipse.platform.source_3.0.0" failonerror="true"> + <ant antfile="build.xml" dir="../../plugins/org.eclipse.platform.source.macosx.carbon.ppc" target="${target}"> + <property name="arch" value="ppc"/> + <property name="os" value="macosx"/> +@@ -129,7 +139,21 @@ + <copy todir="${feature.base}/features/org.eclipse.platform.source_3.0.1" failonerror="true"> <fileset dir="${basedir}" includes="cpl-v10.html,eclipse_update_120.jpg,feature.xml,feature.properties,license.html" /> </copy> -- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.0/feature.xml" selfVersion="3.0.0" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.0,org.eclipse.platform.source,3.0.0,org.eclipse.platform.source.macosx.carbon.ppc,3.0.0,org.eclipse.platform.source.qnx.photon.x86,3.0.0,org.eclipse.platform.source.linux.gtk.ppc,3.0.0,org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.0,org.eclipse.platform.source.linux.gtk.x86,3.0.0,org.eclipse.platform.source.aix.motif.ppc,3.0.0,org.eclipse.platform.source.win32.win32.x86,3.0.0,org.eclipse.platform.source.solaris.motif.sparc,3.0.0,org.eclipse.platform.source.linux.gtk.amd64,3.0.0,org.eclipse.platform.source.linux.motif.x86,3.0.0,"/> -+ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.0/feature.xml" selfVersion="3.0.0" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.0,org.eclipse.platform.source,3.0.0,org.eclipse.platform.source.macosx.carbon.ppc,3.0.0,org.eclipse.platform.source.qnx.photon.x86,3.0.0,org.eclipse.platform.source.linux.gtk.ppc,3.0.0,org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.0,org.eclipse.platform.source.linux.gtk.x86,3.0.0,org.eclipse.platform.source.freebsd.gtk.x86,3.0.0,org.eclipse.platform.source.freebsd.motif.x86,3.0.0,org.eclipse.platform.source.aix.motif.ppc,3.0.0,org.eclipse.platform.source.win32.win32.x86,3.0.0,org.eclipse.platform.source.solaris.motif.sparc,3.0.0,org.eclipse.platform.source.linux.gtk.amd64,3.0.0,org.eclipse.platform.source.linux.motif.x86,3.0.0,"/> +- <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.1,org.eclipse.platform.source,3.0.1,org.eclipse.platform.source.linux.gtk.ia64,3.0.1,org.eclipse.platform.source.macosx.carbon.ppc,3.0.1,org.eclipse.platform.source.qnx.photon.x86,3.0.1,org.eclipse.platform.source.linux.gtk.ppc,3.0.1,org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.1,org.eclipse.platform.source.aix.motif.ppc,3.0.1,org.eclipse.platform.source.linux.gtk.x86,3.0.1,org.eclipse.platform.source.win32.win32.x86,3.0.1,org.eclipse.platform.source.solaris.motif.sparc,3.0.1,org.eclipse.platform.source.linux.gtk.amd64,3.0.1,org.eclipse.platform.source.linux.motif.x86,3.0.1,"/> ++ <eclipse.idReplacer featureFilePath="${feature.base}/features/org.eclipse.platform.source_3.0.1/feature.xml" selfVersion="3.0.1" featureIds="" pluginIds="org.eclipse.platform.doc.isv,3.0.1, ++org.eclipse.platform.source,3.0.1, ++org.eclipse.platform.source.linux.gtk.ia64,3.0.1, ++org.eclipse.platform.source.macosx.carbon.ppc,3.0.1, ++org.eclipse.platform.source.qnx.photon.x86,3.0.1, ++org.eclipse.platform.source.linux.gtk.ppc,3.0.1, ++org.eclipse.platform.source.hpux.motif.PA_RISC,3.0.1, ++org.eclipse.platform.source.aix.motif.ppc,3.0.1, ++org.eclipse.platform.source.linux.gtk.x86,3.0.1, ++org.eclipse.platform.source.freebsd.gtk.x86,3.0.1, ++org.eclipse.platform.source.win32.win32.x86,3.0.1, ++org.eclipse.platform.source.solaris.motif.sparc,3.0.1, ++org.eclipse.platform.source.linux.gtk.amd64,3.0.1, ++org.eclipse.platform.source.linux.motif.x86,3.0.1, ++org.eclipse.platform.source.freebsd.motif.x86,3.0.1,"/> <antcall target="rootFiles${os}_${ws}_${arch}"/> </target> <target name="rootFileswin32_win32_x86"> -@@ -132,6 +142,10 @@ - <target name="rootFileslinux_motif_x86"> +@@ -154,6 +178,11 @@ + </target> + <target name="rootFilesqnx_photon_x86"> </target> - <target name="rootFileslinux_gtk_x86"> -+ </target> + <target name="rootFilesfreebsd_gtk_x86"> + </target> + <target name="rootFilesfreebsd_motif_x86"> - </target> - <target name="rootFileslinux_gtk_ppc"> - </target> ++ </target> ++ + + <target name="zip.distribution" depends="init" description="Create a zip containing all the plug-ins and features for the feature: org.eclipse.platform.source."> + <delete dir="${feature.temp.folder}"/> diff --git a/java/eclipse/files/patch-features-platform-source-feature b/java/eclipse/files/patch-features-platform-source-feature index a7a26d72967a..b4a1b73ebee0 100644 --- a/java/eclipse/files/patch-features-platform-source-feature +++ b/java/eclipse/files/patch-features-platform-source-feature @@ -1,11 +1,9 @@ ---- features/org.eclipse.platform.source/feature.xml.orig Sat May 29 08:14:21 2004 -+++ features/org.eclipse.platform.source/feature.xml Fri Jun 4 11:27:41 2004 -@@ -15,6 +15,8 @@ - <plugin ws="photon" os="qnx" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.qnx.photon.x86" version="3.0.0"/> - <plugin ws="motif" os="hpux" fragment="true" arch="PA_RISC" download-size="0" install-size="0" id="org.eclipse.platform.source.hpux.motif.PA_RISC" version="3.0.0"/> - <plugin ws="gtk" os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.x86" version="3.0.0"/> -+ <plugin ws="gtk" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.gtk.x86" version="3.0.0"/> -+ <plugin ws="motif" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.motif.x86" version="3.0.0"/> - <plugin ws="motif" os="aix" fragment="true" arch="ppc" download-size="0" install-size="0" id="org.eclipse.platform.source.aix.motif.ppc" version="3.0.0"/> - <plugin ws="win32" os="win32" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.win32.win32.x86" version="3.0.0"/> - <plugin ws="motif" os="solaris" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.platform.source.solaris.motif.sparc" version="3.0.0"/> +--- features/org.eclipse.platform.source/feature.xml.orig Sun Oct 17 22:47:27 2004 ++++ features/org.eclipse.platform.source/feature.xml Sun Oct 17 22:57:32 2004 +@@ -23,4 +23,6 @@ + <plugin ws="motif" os="solaris" fragment="true" arch="sparc" download-size="0" install-size="0" id="org.eclipse.platform.source.solaris.motif.sparc" version="3.0.1"/> + <plugin ws="gtk" os="linux" fragment="true" arch="amd64" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.gtk.amd64" version="3.0.1"/> + <plugin ws="motif" os="linux" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.linux.motif.x86" version="3.0.1"/> ++ <plugin ws="motif" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.motif.x86" version="3.0.1"/> ++ <plugin ws="gtk" os="freebsd" fragment="true" arch="x86" download-size="0" install-size="0" id="org.eclipse.platform.source.freebsd.gtk.x86" version="3.0.1"/> + </feature> diff --git a/java/eclipse/pkg-plist b/java/eclipse/pkg-plist index dc1bdecea8c4..0a941f3c4488 100644 --- a/java/eclipse/pkg-plist +++ b/java/eclipse/pkg-plist @@ -3,147 +3,149 @@ eclipse/.eclipseproduct eclipse/configuration/config.ini eclipse/cpl-v10.html eclipse/eclipse -eclipse/features/org.eclipse.jdt.source_3.0.0/cpl-v10.html -eclipse/features/org.eclipse.jdt.source_3.0.0/eclipse_update_120.jpg -eclipse/features/org.eclipse.jdt.source_3.0.0/feature.properties -eclipse/features/org.eclipse.jdt.source_3.0.0/feature.xml -eclipse/features/org.eclipse.jdt.source_3.0.0/license.html -eclipse/features/org.eclipse.jdt_3.0.0/cpl-v10.html -eclipse/features/org.eclipse.jdt_3.0.0/eclipse_update_120.jpg -eclipse/features/org.eclipse.jdt_3.0.0/feature.properties -eclipse/features/org.eclipse.jdt_3.0.0/feature.xml -eclipse/features/org.eclipse.jdt_3.0.0/license.html -eclipse/features/org.eclipse.pde_3.0.0/cpl-v10.html -eclipse/features/org.eclipse.pde_3.0.0/eclipse_update_120.jpg -eclipse/features/org.eclipse.pde_3.0.0/feature.properties -eclipse/features/org.eclipse.pde_3.0.0/feature.xml -eclipse/features/org.eclipse.pde_3.0.0/license.html -eclipse/features/org.eclipse.platform.source_3.0.0/cpl-v10.html -eclipse/features/org.eclipse.platform.source_3.0.0/eclipse_update_120.jpg -eclipse/features/org.eclipse.platform.source_3.0.0/feature.properties -eclipse/features/org.eclipse.platform.source_3.0.0/feature.xml -eclipse/features/org.eclipse.platform.source_3.0.0/license.html -eclipse/features/org.eclipse.platform_3.0.0/cpl-v10.html -eclipse/features/org.eclipse.platform_3.0.0/eclipse_update_120.jpg -eclipse/features/org.eclipse.platform_3.0.0/feature.properties -eclipse/features/org.eclipse.platform_3.0.0/feature.xml -eclipse/features/org.eclipse.platform_3.0.0/license.html -eclipse/features/org.eclipse.sdk_3.0.0/cpl-v10.html -eclipse/features/org.eclipse.sdk_3.0.0/eclipse_update_120.jpg -eclipse/features/org.eclipse.sdk_3.0.0/feature.properties -eclipse/features/org.eclipse.sdk_3.0.0/feature.xml -eclipse/features/org.eclipse.sdk_3.0.0/license.html +eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/cpl-v10.html +eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/eclipse_update_120.jpg +eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/feature.properties +eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/feature.xml +eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%%/license.html +eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/cpl-v10.html +eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/eclipse_update_120.jpg +eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/feature.properties +eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/feature.xml +eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%%/license.html +eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/cpl-v10.html +eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/eclipse_update_120.jpg +eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/feature.properties +eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/feature.xml +eclipse/features/org.eclipse.pde_%%RELEASEVERSION%%/license.html +eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/cpl-v10.html +eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/eclipse_update_120.jpg +eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/feature.properties +eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/feature.xml +eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%%/license.html +eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/cpl-v10.html +eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/eclipse_update_120.jpg +eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/feature.properties +eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/feature.xml +eclipse/features/org.eclipse.platform_%%RELEASEVERSION%%/license.html +eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/cpl-v10.html +eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/eclipse_update_120.jpg +eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/feature.properties +eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/feature.xml +eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%%/license.html eclipse/icon.xpm eclipse/notice.html -eclipse/plugins/org.apache.ant_1.6.1/about.html -eclipse/plugins/org.apache.ant_1.6.1/bin/antRun -eclipse/plugins/org.apache.ant_1.6.1/bin/antRun.bat -eclipse/plugins/org.apache.ant_1.6.1/bin/antRun.pl -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-antlr.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-apache-bsf.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-apache-resolver.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-commons-logging.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-commons-net.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-icontract.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jai.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jakarta-bcel.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jakarta-log4j.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jakarta-oro.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jakarta-regexp.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-javamail.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jdepend.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jmf.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-jsch.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-junit.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-launcher.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-netrexx.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-nodeps.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-starteam.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-stylebook.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-swing.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-trax.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-vaj.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-weblogic.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-xalan1.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-xalan2.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant-xslp.jar -eclipse/plugins/org.apache.ant_1.6.1/lib/ant.jar -eclipse/plugins/org.apache.ant_1.6.1/plugin.properties -eclipse/plugins/org.apache.ant_1.6.1/plugin.xml -eclipse/plugins/org.apache.lucene_1.3.0/about.html -eclipse/plugins/org.apache.lucene_1.3.0/lucene-1.3-final.jar -eclipse/plugins/org.apache.lucene_1.3.0/parser.jar -eclipse/plugins/org.apache.lucene_1.3.0/plugin.properties -eclipse/plugins/org.apache.lucene_1.3.0/plugin.xml +eclipse/plugins/org.apache.ant_1.6.2/LICENSE.dom.html +eclipse/plugins/org.apache.ant_1.6.2/LICENSE.sax.txt +eclipse/plugins/org.apache.ant_1.6.2/about.html +eclipse/plugins/org.apache.ant_1.6.2/asl-v20.txt +eclipse/plugins/org.apache.ant_1.6.2/bin/antRun +eclipse/plugins/org.apache.ant_1.6.2/bin/antRun.bat +eclipse/plugins/org.apache.ant_1.6.2/bin/antRun.pl +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-antlr.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-bcel.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-bsf.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-log4j.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-oro.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-regexp.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-apache-resolver.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-commons-logging.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-commons-net.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-icontract.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jai.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-javamail.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jdepend.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jmf.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-jsch.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-junit.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-launcher.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-netrexx.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-nodeps.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-starteam.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-stylebook.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-swing.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-trax.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-vaj.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-weblogic.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-xalan1.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant-xslp.jar +eclipse/plugins/org.apache.ant_1.6.2/lib/ant.jar +eclipse/plugins/org.apache.ant_1.6.2/plugin.properties +eclipse/plugins/org.apache.ant_1.6.2/plugin.xml +eclipse/plugins/org.apache.lucene_1.3.1/about.html +eclipse/plugins/org.apache.lucene_1.3.1/lucene-1.3-final.jar +eclipse/plugins/org.apache.lucene_1.3.1/parser.jar +eclipse/plugins/org.apache.lucene_1.3.1/plugin.properties +eclipse/plugins/org.apache.lucene_1.3.1/plugin.xml eclipse/plugins/org.eclipse.ant.core_3.0.0/.options eclipse/plugins/org.eclipse.ant.core_3.0.0/about.html eclipse/plugins/org.eclipse.ant.core_3.0.0/antsupport.jar eclipse/plugins/org.eclipse.ant.core_3.0.0/lib/antsupportlib.jar eclipse/plugins/org.eclipse.ant.core_3.0.0/plugin.properties eclipse/plugins/org.eclipse.ant.core_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ant.ui_3.0.0/.options -eclipse/plugins/org.eclipse.ant.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.ant.ui_3.0.0/antui.jar -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/add_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/alpha_mode.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/ant_targets.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/filter_imported_elements.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/filter_internal_targets.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/filter_properties.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/filter_top_level.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/properties.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/remove_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/removeall_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/run_tool.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/search.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16/synched.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/add_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/alpha_mode.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/ant_targets.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/filter_imported_elements.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/filter_internal_targets.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/filter_properties.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/filter_top_level.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/properties.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/refresh.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/remove_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/removeall_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/run_tool.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/search.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16/synched.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/eview16/ant_view.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/ant.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/ant_buildfile.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/ant_target_err.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/anttaskdef_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/build_tab.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/classpath.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/defaulttarget_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/import_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/jar_l_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/macrodef_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/main_tab.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/prop_ps.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/property_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/targetinternal_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/targetpublic_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/task_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/template_obj.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16/type.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/ovr16/error_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/ovr16/import_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/wizban/importbuildfile_wiz.gif -eclipse/plugins/org.eclipse.ant.ui_3.0.0/lib/antrunner.jar -eclipse/plugins/org.eclipse.ant.ui_3.0.0/lib/remoteAnt.jar -eclipse/plugins/org.eclipse.ant.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ant.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ant.ui_3.0.0/templates/ant.properties -eclipse/plugins/org.eclipse.ant.ui_3.0.0/templates/ant.xml -eclipse/plugins/org.eclipse.ant.ui_3.0.0/templates/resolver.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/antui.jar +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/add_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/alpha_mode.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ant_targets.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_imported_elements.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_internal_targets.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_properties.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_top_level.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/properties.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/remove_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/removeall_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/run_tool.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/search.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synched.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/add_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/alpha_mode.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/ant_targets.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_imported_elements.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_internal_targets.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_properties.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_top_level.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/properties.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/remove_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/removeall_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/run_tool.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/search.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16/synched.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/eview16/ant_view.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/ant.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/ant_buildfile.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/ant_target_err.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/anttaskdef_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/build_tab.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/classpath.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/defaulttarget_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/import_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_l_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/macrodef_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/main_tab.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/prop_ps.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/property_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/targetinternal_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/targetpublic_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/task_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/template_obj.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16/type.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16/error_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16/import_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16/warning_co.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/wizban/importbuildfile_wiz.gif +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/antrunner.jar +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/remoteAnt.jar +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates/ant.properties +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates/ant.xml +eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates/resolver.gif eclipse/plugins/org.eclipse.compare_3.0.0/about.html eclipse/plugins/org.eclipse.compare_3.0.0/compare.jar eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/dlcl16/ancestorpane_co.gif @@ -204,199 +206,199 @@ eclipse/plugins/org.eclipse.core.expressions_3.0.0/about.html eclipse/plugins/org.eclipse.core.expressions_3.0.0/expressions.jar eclipse/plugins/org.eclipse.core.expressions_3.0.0/plugin.properties eclipse/plugins/org.eclipse.core.expressions_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.filebuffers_3.0.0/about.html -eclipse/plugins/org.eclipse.core.filebuffers_3.0.0/filebuffers.jar -eclipse/plugins/org.eclipse.core.filebuffers_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.core.filebuffers_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/filebuffers.jar +eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/fragment.xml eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/freebsd/x86/libcore_2_1_0b.so -eclipse/plugins/org.eclipse.core.resources_3.0.0/.options -eclipse/plugins/org.eclipse.core.resources_3.0.0/about.html -eclipse/plugins/org.eclipse.core.resources_3.0.0/ant_tasks/resources-ant.jar -eclipse/plugins/org.eclipse.core.resources_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.core.resources_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.resources_3.0.0/resources.jar +eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks/resources-ant.jar +eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/resources.jar eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/META-INF/MANIFEST.MF eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/about.html eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/compatibility.jar eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/plugin.properties eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.runtime_3.0.0/.options -eclipse/plugins/org.eclipse.core.runtime_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.core.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.core.runtime_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.core.runtime_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.core.runtime_3.0.0/runtime.jar +eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/META-INF/MANIFEST.MF +eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/runtime.jar eclipse/plugins/org.eclipse.core.variables_3.0.0/.options eclipse/plugins/org.eclipse.core.variables_3.0.0/about.html eclipse/plugins/org.eclipse.core.variables_3.0.0/plugin.properties eclipse/plugins/org.eclipse.core.variables_3.0.0/plugin.xml eclipse/plugins/org.eclipse.core.variables_3.0.0/variables.jar -eclipse/plugins/org.eclipse.debug.core_3.0.0/.options -eclipse/plugins/org.eclipse.debug.core_3.0.0/about.html -eclipse/plugins/org.eclipse.debug.core_3.0.0/dtcore.jar -eclipse/plugins/org.eclipse.debug.core_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.debug.core_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.debug.ui_3.0.0/.options -eclipse/plugins/org.eclipse.debug.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.debug.ui_3.0.0/dtui.jar -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/changevariablevalue_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/copy_edit_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/copyviewtoclipboard_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/debuglast_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/det_pane_hide.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/det_pane_right.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/det_pane_under.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/disabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/disconnect_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/edtsrclkup_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/enabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/lock_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/memoryreset_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/monitorexpression_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/printview_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/rem_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/removememory_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/resume_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/runlast_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/runtoline_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/skip_brkp.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/stepbystep_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/stepinto_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/stepover_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/stepreturn_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/suspend_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/terminate_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/terminate_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/terminate_rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/tnames_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/toggledetailpane_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16/var_cntnt_prvdr.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dtool16/debug_exc.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dtool16/environment_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dtool16/profile_exc.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dtool16/run_exc.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dtool16/watch_exp.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/changevariablevalue_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/copy_edit_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/copyviewtoclipboard_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/debuglast_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/det_pane_hide.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/det_pane_right.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/det_pane_under.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/disabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/disconnect_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/edtsrclkup_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/enabled_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/lock_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/memoryreset_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/monitorexpression_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/printview_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/rem_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/removememory_tsk.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/resume_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/runlast_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/runtoline_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/skip_brkp.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/stepbystep_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/stepinto_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/stepover_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/stepreturn_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/suspend_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/terminate_all_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/terminate_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/terminate_rem_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/tnames_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/toggledetailpane_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16/var_cntnt_prvdr.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/etool16/debug_exc.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/etool16/environment_co.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/etool16/profile_exc.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/etool16/run_exc.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/etool16/watch_exp.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/breakpoint_view.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/debug_persp.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/debug_view.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/details_view.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/memory_view.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/register_view.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/variable_view.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16/watchlist_view.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/arraypartition_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/brkp_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/brkpd_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/common_tab.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/debugt_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/debugts_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/debugtt_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/environment_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/envvar_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/expression_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/fldr_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/genericreggroup_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/genericregister_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/genericvariable_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/inst_ptr.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/inst_ptr_top.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/jar_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/ldebug_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/lrun_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/memory_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/memorychanged_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/osprc_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/osprct_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/persp_tab.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/prj_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/readwrite_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/readwrite_obj_disabled.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/refresh_tab.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/rundebug.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/stckframe_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/stckframe_running_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/terminatedlaunch_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/thread_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/threads_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/threadt_obj.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16/workset.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/ovr16/error.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/ovr16/stcksync_ov.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/ovr16/transparent.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/wizban/addsrcloc_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/wizban/debug_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/wizban/edtsrclkup_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/wizban/profile_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/wizban/run_wiz.gif -eclipse/plugins/org.eclipse.debug.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.debug.ui_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/dtcore.jar +eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/dtui.jar +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/changevariablevalue_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/copy_edit_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/copyviewtoclipboard_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/debuglast_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/det_pane_hide.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/det_pane_right.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/det_pane_under.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/disabled_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/disconnect_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/edtsrclkup_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/enabled_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/lock_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/memoryreset_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/metharg_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/monitorexpression_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/printview_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/rem_all_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/rem_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/removememory_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/resume_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/runlast_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/runtoline_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/skip_brkp.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepbystep_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepinto_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepover_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/stepreturn_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/suspend_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/terminate_all_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/terminate_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/terminate_rem_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/tnames_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/toggledetailpane_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/var_cntnt_prvdr.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/debug_exc.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/environment_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/profile_exc.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/run_exc.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/watch_exp.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/changevariablevalue_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/copy_edit_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/copyviewtoclipboard_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/debuglast_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/det_pane_hide.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/det_pane_right.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/det_pane_under.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/disabled_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/disconnect_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/edtsrclkup_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/enabled_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/lock_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/memoryreset_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/metharg_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/monitorexpression_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/printview_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/rem_all_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/rem_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/removememory_tsk.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/resume_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/runlast_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/runtoline_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/skip_brkp.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepbystep_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepinto_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepover_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/stepreturn_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/suspend_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/terminate_all_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/terminate_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/terminate_rem_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/tnames_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/toggledetailpane_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/var_cntnt_prvdr.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/debug_exc.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/environment_co.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/profile_exc.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/run_exc.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/watch_exp.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/breakpoint_view.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/debug_persp.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/debug_view.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/details_view.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/memory_view.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/register_view.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/variable_view.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/watchlist_view.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/arraypartition_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/brkp_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/brkpd_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/common_tab.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/debugt_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/debugts_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/debugtt_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/environment_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/expression_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/fldr_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/genericreggroup_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/genericregister_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/genericvariable_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/inst_ptr.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/inst_ptr_top.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/ldebug_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/lrun_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/memory_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/memorychanged_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/osprc_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/osprct_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/persp_tab.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/prj_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/readwrite_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/readwrite_obj_disabled.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/refresh_tab.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/rundebug.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/stckframe_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/stckframe_running_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/terminatedlaunch_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/thread_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/threads_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/threadt_obj.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/workset.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/error.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/stcksync_ov.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/transparent.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/addsrcloc_wiz.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/debug_wiz.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/edtsrclkup_wiz.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/profile_wiz.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/run_wiz.gif +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.help.appserver_3.0.0/about.html eclipse/plugins/org.eclipse.help.appserver_3.0.0/appserver.jar eclipse/plugins/org.eclipse.help.appserver_3.0.0/plugin.properties eclipse/plugins/org.eclipse.help.appserver_3.0.0/plugin.xml eclipse/plugins/org.eclipse.help.appserver_3.0.0/preferences.ini -eclipse/plugins/org.eclipse.help.base_3.0.0/.options -eclipse/plugins/org.eclipse.help.base_3.0.0/about.html -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/book.css -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/contents_view.gif -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/cpy.gif -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/e_show_all.gif -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/e_synch_nav.gif -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/e_synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/help_banner.jpg -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/help_home.html -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/hglegal2004.htm -eclipse/plugins/org.eclipse.help.base_3.0.0/doc/search_results_view.gif -eclipse/plugins/org.eclipse.help.base_3.0.0/helpbase.jar -eclipse/plugins/org.eclipse.help.base_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.help.base_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.help.base_3.0.0/preferences.ini +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/book.css +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/contents_view.gif +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/cpy.gif +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/e_show_all.gif +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/e_synch_nav.gif +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/e_synch_toc_nav.gif +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/help_banner.jpg +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/help_home.html +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/hglegal2004.htm +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc/search_results_view.gif +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/helpbase.jar +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/preferences.ini eclipse/plugins/org.eclipse.help.ide_3.0.0/about.html eclipse/plugins/org.eclipse.help.ide_3.0.0/contexts.xml eclipse/plugins/org.eclipse.help.ide_3.0.0/contexts_search.xml @@ -416,114 +418,114 @@ eclipse/plugins/org.eclipse.help.ui_3.0.0/helpui.jar eclipse/plugins/org.eclipse.help.ui_3.0.0/icons/topic.gif eclipse/plugins/org.eclipse.help.ui_3.0.0/plugin.properties eclipse/plugins/org.eclipse.help.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.help.webapp_3.0.0/.options -eclipse/plugins/org.eclipse.help.webapp_3.0.0/WEB-INF/lib/jsp.jar -eclipse/plugins/org.eclipse.help.webapp_3.0.0/WEB-INF/lib/servlets.jar -eclipse/plugins/org.eclipse.help.webapp_3.0.0/WEB-INF/lib/servletssrc.zip -eclipse/plugins/org.eclipse.help.webapp_3.0.0/WEB-INF/web.xml -eclipse/plugins/org.eclipse.help.webapp_3.0.0/about.html -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/advanced.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/askShowAll.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/banner.html -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/bookmarksToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/bookmarksView.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/confirm.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/confirmShowAll.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/content.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/contentActions.js -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/contentToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/err.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/fheader.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/header.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/help.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/highlight.js -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/add_bkmrk.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/back.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/bookmark_rem.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/bookmark_remall.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/container_obj.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_add_bkmrk.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_back.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_bookmark_rem.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_bookmark_remall.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_bookmarks_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_contents_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_forward.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_links_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_maximize.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_print_edit.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_restore.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_search_results_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_show_all.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_synch_nav.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/e_synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/forward.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/help_banner.jpg -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/maximize.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/minus.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/plus.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/print_edit.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/restore.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/show_all.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/synch_nav.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/toc_closed.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/toc_open.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images/topic.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/index.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/linksToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/linksView.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/list.css -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/list.js -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/livehelp.js.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/nav.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/navActions.js -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/search.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/searchScoped.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/searchSimple.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/searchToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/searchView.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/tabs.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/toc.js -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/tocFragment.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/tocToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/tocView.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/toolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/tree.css -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/view.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/views.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/workingSet.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/workingSetManager.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/advanced.inc -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/err.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/header.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/help.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/bookmark_obj.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/bookmarks_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/container_obj.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/e_contents_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/e_links_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/e_search_results_view.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/e_synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/synch_toc_nav.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/toc_closed.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/toc_open.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images/topic.gif -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/index.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/linksToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/linksView.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/livehelp.js.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/searchToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/searchView.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/tabs.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/tocToolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/tocView.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/toolbar.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/view.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/index.jsp -eclipse/plugins/org.eclipse.help.webapp_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.help.webapp_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.help.webapp_3.0.0/webapp.jar +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/jsp.jar +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/servlets.jar +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/servletssrc.zip +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/web.xml +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/advanced.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/askShowAll.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/banner.html +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/bookmarksToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/bookmarksView.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/confirm.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/confirmShowAll.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/content.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/contentActions.js +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/contentToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/err.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/fheader.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/header.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/help.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/highlight.js +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/add_bkmrk.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/back.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/bookmark_rem.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/bookmark_remall.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/container_obj.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_add_bkmrk.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_back.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_bookmark_rem.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_bookmark_remall.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_bookmarks_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_contents_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_forward.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_links_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_maximize.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_print_edit.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_restore.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_search_results_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_show_all.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_synch_nav.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/e_synch_toc_nav.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/forward.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/help_banner.jpg +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/maximize.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/minus.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/plus.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/print_edit.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/restore.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/show_all.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/synch_nav.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/synch_toc_nav.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/toc_closed.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/toc_open.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images/topic.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/index.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/linksToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/linksView.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/list.css +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/list.js +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/livehelp_js.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/nav.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/navActions.js +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/search.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchScoped.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchSimple.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/searchView.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tabs.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/toc.js +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tocFragment.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tocToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tocView.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/toolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/tree.css +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/view.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/views.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/workingSet.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/workingSetManager.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/advanced.inc +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/err.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/header.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/help.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/bookmark_obj.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/bookmarks_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/container_obj.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_contents_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_links_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_search_results_view.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/e_synch_toc_nav.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/synch_toc_nav.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/toc_closed.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/toc_open.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images/topic.gif +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/index.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/linksToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/linksView.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/livehelp_js.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/searchToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/searchView.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/tabs.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/tocToolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/tocView.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/toolbar.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/view.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/index.jsp +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/webapp.jar eclipse/plugins/org.eclipse.help_3.0.0/.options eclipse/plugins/org.eclipse.help_3.0.0/about.html eclipse/plugins/org.eclipse.help_3.0.0/dtd/contexts.dtd @@ -533,662 +535,662 @@ eclipse/plugins/org.eclipse.help_3.0.0/livehelp.js eclipse/plugins/org.eclipse.help_3.0.0/plugin.properties eclipse/plugins/org.eclipse.help_3.0.0/plugin.xml eclipse/plugins/org.eclipse.help_3.0.0/preferences.ini -eclipse/plugins/org.eclipse.jdt.core_3.0.0/.options -eclipse/plugins/org.eclipse.jdt.core_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.core_3.0.0/jdtCompilerAdapter.jar -eclipse/plugins/org.eclipse.jdt.core_3.0.0/jdtcore.jar -eclipse/plugins/org.eclipse.jdt.core_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.core_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/.options -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/constant_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/deadlock_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/drop_to_frame.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/final_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/monitor_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/resume_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/sethitcount_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/suspend_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16/thread_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/debug_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/disp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/insp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/java_applet.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/run_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/run_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/term_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16/watch_exp.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/constant_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/deadlock_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/drop_to_frame.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/final_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/monitor_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/resume_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/sethitcount_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/suspend_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16/thread_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/debug_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/disp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/insp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/java_applet.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/run_exc.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/run_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/term_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16/watch_exp.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/eview16/thread_and_monitor_view.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/eview16/variable_tab.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/brkpi_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/classpath_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/envvar_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/insp_sbook.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/jar_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/jexception_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/jexceptiond_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/jrtexception_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/jsbook_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/jsbook_run_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/library_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/localvariable_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/monitor_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/package_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/prj_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/read_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/read_obj_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/thread_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/write_obj.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16/write_obj_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/caught_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/caught_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/conditional_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/conditional_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/contention_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/contentionformonitor_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/entry_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/entry_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/error_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/exit_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/exit_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/installed_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/installed_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/owned_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/ownsmonitor_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/scoped_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/scoped_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/uncaught_ovr.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/uncaught_ovr_disabled.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/wizban/java_app_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/wizban/java_attach_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/wizban/library_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/wizban/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/jdiui.jar -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/snippetsupport.jar -eclipse/plugins/org.eclipse.jdt.debug_3.0.0/.options -eclipse/plugins/org.eclipse.jdt.debug_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.debug_3.0.0/jdi.jar -eclipse/plugins/org.eclipse.jdt.debug_3.0.0/jdimodel.jar -eclipse/plugins/org.eclipse.jdt.debug_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.debug_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/about.properties -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/book.css -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/cpy.gif -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/doc.zip -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/notices.html -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/schema.css -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/toc.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/topics_Guide.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/topics_Questions.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/topics_Reference.xml -eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0/topics_Samples.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/about.properties -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/book.css -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/contexts_Debugger.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/contexts_JDT.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/contexts_JDT_Debugger.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/contexts_JDT_JUnit.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/cpy.gif -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/doc.zip -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/notices.html -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/toc.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/topics_Concepts.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/topics_GettingStarted.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/topics_Reference.xml -eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0/topics_Tasks.xml +eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtCompilerAdapter.jar +eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtcore.jar +eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/constant_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/deadlock_view.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/drop_to_frame.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/exc_catch.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/final_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/monitor_view.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/resume_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/sethitcount_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/static_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/suspend_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16/thread_view.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/debug_exc.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/disp_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/insp_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_app.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_applet.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_attach.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/newsbook_wiz.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/run_exc.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/run_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/term_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16/watch_exp.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/constant_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/deadlock_view.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/drop_to_frame.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/exc_catch.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/final_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/monitor_view.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/resume_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/sethitcount_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/static_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/suspend_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16/thread_view.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/debug_exc.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/disp_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/insp_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/java_app.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/java_applet.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/java_attach.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/newsbook_wiz.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/run_exc.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/run_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/term_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16/watch_exp.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/thread_and_monitor_view.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/eview16/variable_tab.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/brkpi_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/classpath_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/insp_sbook.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jexception_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jexceptiond_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jrtexception_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jsbook_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/jsbook_run_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/library_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/localvariable_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/monitor_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/package_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/prj_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/read_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/read_obj_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/thread_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/write_obj.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16/write_obj_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/caught_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/caught_ovr_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/conditional_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/conditional_ovr_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/contention_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/contentionformonitor_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/entry_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/entry_ovr_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/error_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/exit_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/exit_ovr_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/installed_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/installed_ovr_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/owned_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/ownsmonitor_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/scoped_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/scoped_ovr_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/uncaught_ovr.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/uncaught_ovr_disabled.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16/warning_co.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/java_app_wiz.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/java_attach_wiz.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/library_wiz.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban/newsbook_wiz.gif +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/jdiui.jar +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/snippetsupport.jar +eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdi.jar +eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdimodel.jar +eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/book.css +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/cpy.gif +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/doc.zip +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/notices.html +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/schema.css +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/toc.xml +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Guide.xml +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Questions.xml +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Reference.xml +eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%%/topics_Samples.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/book.css +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_Debugger.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_JDT.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_JDT_Debugger.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/contexts_JDT_JUnit.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/cpy.gif +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/doc.zip +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/notices.html +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/toc.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_Concepts.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_GettingStarted.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_Reference.xml +eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%%/topics_Tasks.xml eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/about.html eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/junitruntime.jar eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/plugin.properties eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/cfilter.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/compare.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/lock.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/relaunch.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/select_next.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/select_prev.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/stop.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dtool16/debugjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dtool16/new_testcase.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dtool16/new_testsuite.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dtool16/runjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/cfilter.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/compare.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/lock.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/relaunch.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/select_next.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/select_prev.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/stop.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/etool16/debugjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/etool16/new_testcase.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/etool16/new_testsuite.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/etool16/runjunit.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/eview16/junit.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/eview16/juniterr.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/eview16/juniterrq.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/eview16/junitsucc.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/eview16/junitsuccq.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/eview16/stackframe.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/faillist.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/failures.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/julaunch.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/stkfrm_obj.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/test.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/testerr.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/testfail.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/testhier.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/testok.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/testrun.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/tsuite.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/tsuiteerror.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/tsuitefail.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/tsuiteok.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16/tsuiterun.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/ovr16/error_ovr.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/ovr16/failed_ovr.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/ovr16/success_ovr.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff1.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff2.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff3.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff4.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff5.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff6.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff7.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff8.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ff9.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss1.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss2.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss3.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss4.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss5.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss6.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss7.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss8.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss/ss9.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/wizban/newsuite_wiz.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/wizban/newtest_wiz.gif -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/junitsupport.jar -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.junit_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.launching_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.launching_3.0.0/java.policy.applet -eclipse/plugins/org.eclipse.jdt.launching_3.0.0/launching.jar -eclipse/plugins/org.eclipse.jdt.launching_3.0.0/lib/launchingsupport.jar -eclipse/plugins/org.eclipse.jdt.launching_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.launching_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.source_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/about.ini -eclipse/plugins/org.eclipse.jdt.source_3.0.0/about.mappings -eclipse/plugins/org.eclipse.jdt.source_3.0.0/about.properties -eclipse/plugins/org.eclipse.jdt.source_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.jdt.source_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.source_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ant.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ant.ui_3.0.0/antuisrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ant.ui_3.0.0/lib/antrunnersrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ant.ui_3.0.0/lib/remoteAntsrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0/jdtCompilerAdaptersrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0/jdtcoresrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0/schema/classpathContainerInitializer.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0/schema/classpathVariableInitializer.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0/schema/codeFormatter.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug.ui_3.0.0/jdiuisrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug.ui_3.0.0/schema/vmInstallTypePage.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug.ui_3.0.0/snippetsupportsrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug_3.0.0/jdimodelsrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug_3.0.0/jdisrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit.runtime_3.0.0/junitruntimesrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit_3.0.0/junitsupportsrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit_3.0.0/schema/internal-testRunTabs.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit_3.0.0/schema/junitLaunchConfigs.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit_3.0.0/schema/testRunListeners.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/launchingsrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/lib/launchingsupportsrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/schema/classpathProviders.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/schema/runtimeClasspathEntries.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/schema/runtimeClasspathEntryResolvers.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/schema/vmConnectors.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/schema/vmInstallTypes.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/jdtsrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/classpathContainerPage.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/foldingStructureProviders.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/javaEditorTextHovers.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/javaElementFilters.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/javadocCompletionProcessor.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/queryParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/quickAssistProcessors.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema/quickFixProcessors.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0/refcoresrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0/schema/createParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0/schema/deleteParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0/schema/moveParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0/schema/renameParticipants.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.ui.refactoring_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.ui.refactoring_3.0.0/refuisrc.zip -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.ui.refactoring_3.0.0/schema/changePreviewViewers.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.ui.refactoring_3.0.0/schema/statusContextViewers.exsd -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.junit_3.8.1/about.html -eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.junit_3.8.1/junitsrc.zip -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/.options -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/JavadocViewStyleSheet.css -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/add_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/alphab_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/ch_callees.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/ch_callers.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/ch_cancel.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/class_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/default_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/definingtype_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/fields_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/file_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/flatLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/gointo_toplevel_type.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/goto_input.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/hide_externalized.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/hide_ignored.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/hide_internalized.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/hierarchy_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/history_list.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/impl_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/inher_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/localtypes_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/pack_empty_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/package_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/private_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/prj_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/protected_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/public_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/remove_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/removea_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/sub_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/super_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/th_showqualified.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/th_single.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/type_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16/view_menu.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/comment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/exportapp_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/exportjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/importjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/javadoc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/jdoc_hover_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/mark_occurrences.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/newclass_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/newint_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/newjprj_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/newjworkingSet_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/newpack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/newpackfolder_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/opentype.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/segment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/shift_l_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16/shift_r_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/add_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/alphab_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/ch_callees.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/ch_callers.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/ch_cancel.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/class_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/default_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/definingtype_sort_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/exc_catch.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/fields_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/file_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/flatLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/gointo_toplevel_type.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/goto_input.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/hide_externalized.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/hide_ignored.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/hide_internalized.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/hierarchy_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/history_list.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/impl_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/inher_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/localtypes_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/metharg_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/pack_empty_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/package_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/private_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/prj_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/protected_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/public_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/remove_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/removea_exc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/static_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/sub_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/super_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/th_automatic.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/th_showqualified.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/th_single.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/type_mode.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16/view_menu.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/comment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/exportapp_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/exportjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/importjar_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/java_app.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/java_attach.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/javadoc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/jdoc_hover_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/mark_occurrences.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/newclass_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/newint_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/newjprj_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/newjworkingSet_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/newpack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/newpackfolder_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/opentype.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/segment_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/shift_l_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16/shift_r_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/browse_persp.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/call_hierarchy.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/class_hi.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/classfilegeneration_tab.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/errorwarning_tab.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/hierch_persp.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/javadoc.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/jdkcompliance_tab.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/jperspective.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/members.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/package.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/packages.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/projects.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/source.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16/types.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/add_correction.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/brkpi_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/change.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/class_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/class_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/classf_generate.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/classf_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/classfo_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/compare_field.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/compare_method.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/composite_change.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/correction_cast.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/correction_change.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/correction_delete_import.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/correction_move.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/correction_rename.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/cp_order_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/cu_change.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/cu_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/empty_logical_package_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/empty_pack_fldr_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/empty_pack_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/envvar_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/envvar_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/error_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/exclusion_filter_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/externalize.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/fatalerror_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/field_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/field_private_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/field_protected_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/field_public_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/file_change.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/file_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/html_tag_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/ignore.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/imp_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/impc_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/implm_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/inclusion_filter_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/info_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerclass_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerclass_private_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerclass_protected_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerclass_public_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerinterface_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerinterface_private_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerinterface_protected_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/innerinterface_public_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/int_default_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/int_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/internalize.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/intf_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jar_desc_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jar_l_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jar_lsrc_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jar_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jar_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jar_src_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/java_model_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/javadoc_location_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jcu_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jcu_resource_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jdoc_tag_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jexception_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jexceptiond_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jrtexception_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jsbook_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jsearch_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/jworkingSet_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/library_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/localvariable_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/logical_package_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/methdef_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/methpri_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/methpro_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/methpub_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/never_translate.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/nls_search_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/no_breakpoint.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/occ_match.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/occ_read.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/occ_write.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/output_folder_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/over_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/package_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/packagefolder_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/packagefolder_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/packd_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/prjct_nonexist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/quickassist_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/quickfix_error_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/quickfix_warning_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/remove_correction.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/search_decl_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/search_ref_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/searchm_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/skip.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/source_attach_attrib.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/template_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/text_edit.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/translate.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/unknown_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16/warning_obj.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/abstract_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/callee_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/caller_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/constr_ovr.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/deprecated.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/error_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/final_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/focus_ovr.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/implm_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/java_ovr.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/maxlevel_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/native_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/over_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/read.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/recursive_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/run_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/static_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/sync_impl.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/sync_over.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/synch_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/volatile_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16/write.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/addlibrary_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/coderefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/compunitrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/export_javadoc_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/exportapp_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/extstr_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/fieldrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/jar_pack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/java_app_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/java_attach_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/java_workingset_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/methrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newclass_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newfield_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newint_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newjprj_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newmeth_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newpack_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newsbook_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/newsrcfldr_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/packrefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/pullup_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/refactor_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban/typerefact_wiz.gif -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/jdt.jar -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/templates/default-codetemplates.xml -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/templates/default-templates.properties -eclipse/plugins/org.eclipse.jdt.ui_3.0.0/templates/default-templates.xml -eclipse/plugins/org.eclipse.jdt_3.0.0/about.html -eclipse/plugins/org.eclipse.jdt_3.0.0/about.ini -eclipse/plugins/org.eclipse.jdt_3.0.0/about.mappings -eclipse/plugins/org.eclipse.jdt_3.0.0/about.properties -eclipse/plugins/org.eclipse.jdt_3.0.0/cheatsheets/HelloWorld.xml -eclipse/plugins/org.eclipse.jdt_3.0.0/cheatsheets/HelloWorldSWT.xml -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/javaapp_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/javaapphov_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/javaapplet_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/javaapplethov_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/javadev_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/javadevhov_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/script_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/scripthov_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/swtapp_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48/swtapphov_obj.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/css/overview.css -eclipse/plugins/org.eclipse.jdt_3.0.0/css/samples.css -eclipse/plugins/org.eclipse.jdt_3.0.0/css/swt.properties -eclipse/plugins/org.eclipse.jdt_3.0.0/css/tutorials.css -eclipse/plugins/org.eclipse.jdt_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.jdt_3.0.0/newsExtensionContent.xml -eclipse/plugins/org.eclipse.jdt_3.0.0/overviewExtensionContent.xml -eclipse/plugins/org.eclipse.jdt_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jdt_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.jdt_3.0.0/samplesExtensionContent.xml -eclipse/plugins/org.eclipse.jdt_3.0.0/tutorialsExtensionContent.xml -eclipse/plugins/org.eclipse.jface.text_3.0.0/.options -eclipse/plugins/org.eclipse.jface.text_3.0.0/about.html -eclipse/plugins/org.eclipse.jface.text_3.0.0/jfacetext.jar -eclipse/plugins/org.eclipse.jface.text_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.jface.text_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/cfilter.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/compare.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/lock.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/relaunch.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/select_next.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/select_prev.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/stop.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/th_automatic.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16/th_vertical.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/debugjunit.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/new_testcase.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/new_testsuite.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16/runjunit.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/cfilter.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/compare.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/lock.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/relaunch.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/select_next.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/select_prev.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/stop.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/th_automatic.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16/th_vertical.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/debugjunit.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/new_testcase.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/new_testsuite.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16/runjunit.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/junit.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/juniterr.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/juniterrq.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/junitsucc.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/junitsuccq.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16/stackframe.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/exc_catch.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/faillist.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/failures.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/julaunch.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/stkfrm_obj.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/test.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testerr.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testfail.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testhier.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testok.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/testrun.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuite.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuiteerror.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuitefail.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuiteok.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16/tsuiterun.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16/error_ovr.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16/failed_ovr.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16/success_ovr.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff1.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff2.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff3.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff4.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff5.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff6.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff7.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff8.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ff9.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss1.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss2.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss3.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss4.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss5.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss6.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss7.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss8.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss/ss9.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/wizban/newsuite_wiz.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/wizban/newtest_wiz.gif +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/junitsupport.jar +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/java.policy.applet +eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/launching.jar +eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib/launchingsupport.jar +eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.ini +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.mappings +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/antuisrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/antrunnersrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib/remoteAntsrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtCompilerAdaptersrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/jdtcoresrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema/classpathContainerInitializer.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema/classpathVariableInitializer.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema/codeFormatter.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/jdiuisrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/schema/vmInstallTypePage.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/snippetsupportsrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdimodelsrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%%/jdisrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit.runtime_3.0.0/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit.runtime_3.0.0/junitruntimesrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/junitsupportsrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema/internal-testRunTabs.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema/junitLaunchConfigs.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema/testRunListeners.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/launchingsrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib/launchingsupportsrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/classpathProviders.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/runtimeClasspathEntries.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/runtimeClasspathEntryResolvers.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/vmConnectors.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema/vmInstallTypes.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/jdtsrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/classpathContainerPage.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/foldingStructureProviders.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/javaEditorTextHovers.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/javaElementFilters.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/javadocCompletionProcessor.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/queryParticipants.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/quickAssistProcessors.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema/quickFixProcessors.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/refcoresrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/createParticipants.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/deleteParticipants.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/moveParticipants.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema/renameParticipants.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/refuisrc.zip +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/schema/changePreviewViewers.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/schema/statusContextViewers.exsd +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.junit_3.8.1/about.html +eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.junit_3.8.1/junitsrc.zip +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/JavadocViewStyleSheet.css +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/add_exc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/alphab_sort_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ch_callees.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ch_callers.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ch_cancel.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/class_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/default_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/definingtype_sort_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/exc_catch.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/fields_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/file_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_ps.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/flatLayout.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/gointo_toplevel_type.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/goto_input.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hide_externalized.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hide_ignored.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hide_internalized.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchy_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/history_list.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/impl_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/inher_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/localtypes_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/metharg_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/pack_empty_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/package_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/private_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/prj_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/protected_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/public_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_nav.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/remove_exc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/removea_exc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/search_sortmatch.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/static_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/sub_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/super_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_automatic.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_showqualified.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_single.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/th_vertical.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/type_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16/view_menu.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/comment_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/exportapp_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/exportjar_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/importjar_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_app.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/java_attach.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/javadoc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/jdoc_hover_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/mark_occurrences.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newclass_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newint_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newjprj_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newjworkingSet_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newpack_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newpackfolder_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/newsbook_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/opentype.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/segment_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/shift_l_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16/shift_r_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/add_exc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/alphab_sort_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/ch_callees.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/ch_callers.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/ch_cancel.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/class_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/default_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/definingtype_sort_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/exc_catch.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/fields_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/file_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_ps.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/flatLayout.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/gointo_toplevel_type.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/goto_input.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hide_externalized.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hide_ignored.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hide_internalized.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/hierarchy_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/history_list.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/impl_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/inher_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/localtypes_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/metharg_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/pack_empty_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/package_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/private_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/prj_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/protected_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/public_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh_nav.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/remove_exc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/removea_exc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/search_sortmatch.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/static_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/sub_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/super_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_automatic.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_showqualified.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_single.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/th_vertical.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/type_mode.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16/view_menu.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/comment_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/exportapp_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/exportjar_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/importjar_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/java_app.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/java_attach.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/javadoc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/jdoc_hover_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/mark_occurrences.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newclass_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newint_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newjprj_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newjworkingSet_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newpack_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newpackfolder_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/newsbook_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/opentype.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/segment_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/shift_l_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16/shift_r_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/browse_persp.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/call_hierarchy.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/class_hi.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/classfilegeneration_tab.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/errorwarning_tab.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/hierch_persp.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/javadoc.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/jdkcompliance_tab.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/jperspective.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/members.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/package.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/packages.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/projects.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/source.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16/types.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/add_correction.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/brkpi_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/change.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/class_default_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/class_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/classf_generate.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/classf_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/classfo_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/compare_field.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/compare_method.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/composite_change.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_cast.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_change.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_delete_import.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_move.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/correction_rename.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/cp_order_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/cu_change.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/cu_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/empty_logical_package_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/empty_pack_fldr_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/empty_pack_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_nonexist_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/envvar_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/error_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/exclusion_filter_attrib.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/externalize.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/fatalerror_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_default_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_private_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_protected_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/field_public_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/file_change.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/file_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/html_tag_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/ignore.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/imp_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/impc_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/implm_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/inclusion_filter_attrib.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/info_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_default_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_private_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_protected_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerclass_public_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_default_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_private_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_protected_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/innerinterface_public_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/int_default_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/int_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/internalize.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/intf_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_desc_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_l_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_lsrc_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_nonexist_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jar_src_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/java_model_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/javadoc_location_attrib.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jcu_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jcu_resource_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jdoc_tag_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jexception_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jexceptiond_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jrtexception_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jsbook_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jsearch_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/jworkingSet_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/library_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/localvariable_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/logical_package_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methdef_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methpri_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methpro_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/methpub_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/never_translate.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/nls_search_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/no_breakpoint.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/occ_match.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/occ_read.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/occ_write.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/output_folder_attrib.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/over_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/package_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/packagefolder_nonexist_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/packagefolder_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/packd_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/prjct_nonexist_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/quickassist_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/quickfix_error_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/quickfix_warning_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/remove_correction.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/search_decl_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/search_ref_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/searchm_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/skip.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/source_attach_attrib.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/template_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/text_edit.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/translate.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/unknown_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16/warning_obj.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/abstract_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/callee_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/caller_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/constr_ovr.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/deprecated.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/error_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/final_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/focus_ovr.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/implm_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/java_ovr.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/maxlevel_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/native_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/over_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/read.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/recursive_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/run_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/static_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/sync_impl.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/sync_over.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/synch_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/volatile_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/warning_co.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16/write.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/addlibrary_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/coderefact_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/compunitrefact_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/export_javadoc_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/exportapp_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/extstr_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/fieldrefact_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/jar_pack_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/java_app_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/java_attach_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/java_workingset_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/methrefact_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newclass_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newfield_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newint_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newjprj_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newmeth_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newpack_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newsbook_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/newsrcfldr_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/packrefact_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/pullup_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/refactor_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban/typerefact_wiz.gif +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/jdt.jar +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates/default-codetemplates.xml +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates/default-templates.properties +eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates/default-templates.xml +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.ini +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.mappings +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/cheatsheets/HelloWorld.xml +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/cheatsheets/HelloWorldSWT.xml +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapp_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapphov_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapplet_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javaapplethov_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javadev_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/javadevhov_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/script_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/scripthov_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/swtapp_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48/swtapphov_obj.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/overview.css +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/samples.css +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/swt.properties +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/tutorials.css +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/newsExtensionContent.xml +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/overviewExtensionContent.xml +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/samplesExtensionContent.xml +eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/tutorialsExtensionContent.xml +eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/jfacetext.jar +eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.jface_3.0.0/about.html eclipse/plugins/org.eclipse.jface_3.0.0/jface.jar eclipse/plugins/org.eclipse.jface_3.0.0/plugin.properties eclipse/plugins/org.eclipse.jface_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ltk.core.refactoring_3.0.0/about.html -eclipse/plugins/org.eclipse.ltk.core.refactoring_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ltk.core.refactoring_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ltk.core.refactoring_3.0.0/refcore.jar -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/about.html -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/composite_change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/cu_change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/error_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/fatalerror_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/file_change.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/info_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/text_edit.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16/warning_obj.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/wizban/refactor_wiz.gif -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/refui.jar +eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/refcore.jar +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/change.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/composite_change.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/cu_change.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/error_obj.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/fatalerror_obj.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/file_change.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/info_obj.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/text_edit.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16/warning_obj.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/wizban/refactor_wiz.gif +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/refui.jar eclipse/plugins/org.eclipse.osgi.services_3.0.0/META-INF/MANIFEST.MF eclipse/plugins/org.eclipse.osgi.services_3.0.0/about.html eclipse/plugins/org.eclipse.osgi.services_3.0.0/plugin.properties @@ -1197,53 +1199,53 @@ eclipse/plugins/org.eclipse.osgi.util_3.0.0/META-INF/MANIFEST.MF eclipse/plugins/org.eclipse.osgi.util_3.0.0/about.html eclipse/plugins/org.eclipse.osgi.util_3.0.0/plugin.properties eclipse/plugins/org.eclipse.osgi.util_3.0.0/util.jar -eclipse/plugins/org.eclipse.osgi_3.0.0/.options -eclipse/plugins/org.eclipse.osgi_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.osgi_3.0.0/about.html -eclipse/plugins/org.eclipse.osgi_3.0.0/console.jar -eclipse/plugins/org.eclipse.osgi_3.0.0/core.jar -eclipse/plugins/org.eclipse.osgi_3.0.0/defaultAdaptor.jar -eclipse/plugins/org.eclipse.osgi_3.0.0/eclipse.properties -eclipse/plugins/org.eclipse.osgi_3.0.0/eclipseAdaptor.jar -eclipse/plugins/org.eclipse.osgi_3.0.0/osgi.jar -eclipse/plugins/org.eclipse.osgi_3.0.0/resolver.jar -eclipse/plugins/org.eclipse.osgi_3.0.0/systembundle.properties -eclipse/plugins/org.eclipse.pde.build_3.0.0/.options -eclipse/plugins/org.eclipse.pde.build_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.pde.build_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/.project -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/build.properties -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/builder/build.properties -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/builder/customTargets.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/cpl-v10.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/eclipse_update_120.jpg -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/feature.properties -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/feature.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/license.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/rootfiles/.eclipseproduct -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/rootfiles/cpl-v10.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/rootfiles/install.ini -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/rootfiles/notice.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/rootfiles/readme/readme_eclipse.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/lib/pdebuild-ant.jar -eclipse/plugins/org.eclipse.pde.build_3.0.0/notes/m2 notes.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/notes/usingPDEBuild.html -eclipse/plugins/org.eclipse.pde.build_3.0.0/pdebuild.jar -eclipse/plugins/org.eclipse.pde.build_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde.build_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/scripts/build-template.properties -eclipse/plugins/org.eclipse.pde.build_3.0.0/scripts/build.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/scripts/customTargets-template.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/scripts/genericTargets.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/scripts/package.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/templates/fragment/fragment.xml -eclipse/plugins/org.eclipse.pde.build_3.0.0/templates/plugin/plugin.xml -eclipse/plugins/org.eclipse.pde.core_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.core_3.0.0/dtd/feature.dtd -eclipse/plugins/org.eclipse.pde.core_3.0.0/dtd/site.dtd -eclipse/plugins/org.eclipse.pde.core_3.0.0/pdecore.jar -eclipse/plugins/org.eclipse.pde.core_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde.core_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/META-INF/MANIFEST.MF +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/console.jar +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/core.jar +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/defaultAdaptor.jar +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/eclipse.properties +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/eclipseAdaptor.jar +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/osgi.jar +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/resolver.jar +eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/systembundle.properties +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/META-INF/MANIFEST.MF +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/.project +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/build.properties +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/builder/build.properties +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/builder/customTargets.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/cpl-v10.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/eclipse_update_120.jpg +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/feature.properties +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/feature.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/license.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/.eclipseproduct +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/cpl-v10.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/install.ini +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/notice.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/readme/readme_eclipse.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/lib/pdebuild-ant.jar +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/notes/m2 notes.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/notes/usingPDEBuild.html +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/pdebuild.jar +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/build-template.properties +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/build.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/customTargets-template.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/genericTargets.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts/package.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/fragment/fragment.xml +eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/plugin/plugin.xml +eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/dtd/feature.dtd +eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/dtd/site.dtd +eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/pdecore.jar +eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/about.html eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/about.properties eclipse/plugins/org.eclipse.pde.doc.user_3.0.0/book.css @@ -1262,904 +1264,903 @@ eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/about.html eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/pdejunit.jar eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/plugin.properties eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/clear.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/export_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/import_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/open_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/properties.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/remove.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/clear.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/export_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/import_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/open_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/properties.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/remove.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16/error_log.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16/event_next.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16/event_prev.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16/hide_pane.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16/horizontal_view.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16/registry.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16/vertical_view.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/error_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/error_stack.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/ext_point_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/ext_points_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/extension_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/extensions_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/generic_xml_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/info_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/java_lib_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/ok_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/plugin_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/req_plugin_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/req_plugins_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/runtime_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16/warning_st_obj.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/ovr16/run_co.gif -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/pdert.jar -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde.runtime_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde.source_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_3.0.0/about.ini -eclipse/plugins/org.eclipse.pde.source_3.0.0/about.mappings -eclipse/plugins/org.eclipse.pde.source_3.0.0/about.properties -eclipse/plugins/org.eclipse.pde.source_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.pde.source_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde.source_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.build_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.build_3.0.0/lib/pdebuild-antsrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.build_3.0.0/pdebuildsrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.core_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.core_3.0.0/pdecoresrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.core_3.0.0/schema/source.exsd -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.junit.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.junit.runtime_3.0.0/pdejunitsrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.runtime_3.0.0/pdertsrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/pdeuiantsrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/pdeuisrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/schema/newExtension.exsd -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/schema/pluginContent.exsd -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/schema/samples.exsd -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/schema/templates.exsd -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde_3.0.0/ant_tasks/pde-antsrc.zip -eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde_3.0.0/pdesrc.zip -eclipse/plugins/org.eclipse.pde.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/add_att.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/clear.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/clone_att.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/clone_el.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/full_hierarchy.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/generate_class.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/goto_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/maximize.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/properties.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/remove_att.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/restore.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/convjpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/defbcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/defcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/eclipse_launcher.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/eclipse_launcher_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/exp_deployfeat.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/exp_deployplug.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/imp_extfeat.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/imp_extplug.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newbexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newbfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newbprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newefix_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newexp_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newftrprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/newsiteprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/rclpltf_appex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16/script_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/add_att.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/clear.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/clone_att.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/clone_el.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/find_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/full_hierarchy.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/generate_class.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/goto_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/help.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/maximize.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/properties.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/refresh.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/remove_att.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/restore.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/restore_log.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/th_horizontal.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16/th_vertical.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/convjpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/defbcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/defcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/eclipse_launcher.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/eclipse_launcher_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/exp_deployfeat.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/exp_deployplug.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/imp_extfeat.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/imp_extplug.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newbexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newbfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newbprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newefix_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newexp_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newftrprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/newsiteprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/rclpltf_appex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16/script_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/eview16/plugin_depend.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/eview16/plugins.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/alert_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/all_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/att_URI_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/att_class_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/att_file_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/att_impl_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/att_req_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/build_exec.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/build_var_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/bundle_fragment_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/bundle_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/bundle_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/bundled_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/bundlef_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/bundlefd_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/category_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/choice_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/debug_exc.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/discovery.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/doc_section_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/element.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/elref_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/error_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/ext_plugin_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/ext_point_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/ext_points_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/extension_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/extensions_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/external_frgmt_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/feature_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/frgmt_dis_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/frgmt_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/frgmt_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/frgmts_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/ftr_jar_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/ftr_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/ftr_xml_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/gel_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/generic_xml_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/group_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/info_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/install-handler.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/java_lib_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/julaunchpgn.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/link_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/links_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/loop_node_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/loop_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/noref_feature_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/ok_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/output_folder_attrib.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/overview_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/page_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/plugin_config_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/plugin_configs_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/plugin_dis_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/plugin_mf_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/plugin_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/processinginst.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/psearch_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/req_plugin_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/req_plugins_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/run_exc.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/runtime_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/schema_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/scomp_jar_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/seq_sc_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/site_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/site_xml_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/test.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/tsk_alert_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/update.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/url.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16/warning_st_obj.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/binary_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/doc_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/error_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/export_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/external_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/jar_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/java_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/project_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/run_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/view16/error_log.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/view16/plugin_persp.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/view16/plugins.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/view16/registry.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/view16/variable_tab.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/4fun.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/convjpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/debug_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/defcon_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/exp_deployfeat_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/exp_deployplug_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/form_banner.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/imp_extfeat_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/imp_extplug_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/migrate_30_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newbexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newbfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newbprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newefix_wizban.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newex_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newexp_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newexprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newfprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newftrprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newpprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/newsiteprj_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/plugin2bundle_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/rclpltf_appex_wizban.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/run_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban/schema_wiz.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/pdeui.jar -eclipse/plugins/org.eclipse.pde.ui_3.0.0/pdeuiant.jar -eclipse/plugins/org.eclipse.pde.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/$editorClass$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/ColorManager.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/IXMLColorConstants.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/NonRuleBasedDamagerRepairer.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/TagRule.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/XMLConfiguration.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/XMLDocumentProvider.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/XMLDoubleClickStrategy.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/XMLPartitionScanner.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/XMLScanner.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/XMLTagScanner.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java/XMLWhitespaceDetector.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/helloWorld/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/helloWorld/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/concepts/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/concepts/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/concepts/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/gettingstarted/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/gettingstarted/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/gettingstarted/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/reference/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/reference/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/reference/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/samples/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/samples/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/samples/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/tasks/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/tasks/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/tasks/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/toc.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/tocconcepts.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/tocgettingstarted.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/tocreference.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/tocsamples.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/toctasks.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/testToc.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/toc.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/multiPageEditor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/multiPageEditor/java/$contributorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/multiPageEditor/java/$editorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/newWizard/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/newWizard/java/$wizardClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/newWizard/java/$wizardPageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/popupMenus/java/$actionClass$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/preferences/java/$pageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/propertyPages/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/view/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/view/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/$editorClass$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/ColorManager.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/IXMLColorConstants.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/NonRuleBasedDamagerRepairer.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/TagRule.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/XMLConfiguration.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/XMLDocumentProvider.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/XMLDoubleClickStrategy.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/XMLPartitionScanner.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/XMLScanner.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/XMLTagScanner.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java/XMLWhitespaceDetector.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/helloWorld/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/helloWorld/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/concepts/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/concepts/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/concepts/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/gettingstarted/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/gettingstarted/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/gettingstarted/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/reference/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/reference/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/reference/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/samples/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/samples/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/samples/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/tasks/maintopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/tasks/subtopic.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/tasks/subtopic2.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/toc.html -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/tocconcepts.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/tocgettingstarted.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/tocreference.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/tocsamples.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/toctasks.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/testToc.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/toc.xml -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/multiPageEditor/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/multiPageEditor/java/$contributorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/multiPageEditor/java/$editorClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/newWizard/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/newWizard/java/$wizardClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/newWizard/java/$wizardPageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/popupMenus/java/$actionClass$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/preferences/java/$pageClassName$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/propertyPages/java/$className$.java -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/view/bin/icons/sample.gif -eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/view/java/$className$.java -eclipse/plugins/org.eclipse.pde_3.0.0/about.html -eclipse/plugins/org.eclipse.pde_3.0.0/about.ini -eclipse/plugins/org.eclipse.pde_3.0.0/about.mappings -eclipse/plugins/org.eclipse.pde_3.0.0/about.properties -eclipse/plugins/org.eclipse.pde_3.0.0/ant_tasks/pde-ant.jar -eclipse/plugins/org.eclipse.pde_3.0.0/cheatsheets/helloworld.xml -eclipse/plugins/org.eclipse.pde_3.0.0/cheatsheets/updates.xml -eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics/obj_48/features_obj.gif -eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics/obj_48/featureshov_obj.gif -eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics/obj_48/plugin_obj.gif -eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics/obj_48/pluginhov_obj.gif -eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics/obj_48/rcpapp_obj.gif -eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics/obj_48/rcpapphov_obj.gif -eclipse/plugins/org.eclipse.pde_3.0.0/css/overview.css -eclipse/plugins/org.eclipse.pde_3.0.0/css/swt.properties -eclipse/plugins/org.eclipse.pde_3.0.0/css/tutorials.css -eclipse/plugins/org.eclipse.pde_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.pde_3.0.0/newsExtensionContent.xml -eclipse/plugins/org.eclipse.pde_3.0.0/overviewExtensionContent.xml -eclipse/plugins/org.eclipse.pde_3.0.0/pde.jar -eclipse/plugins/org.eclipse.pde_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.pde_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.pde_3.0.0/tutorialsExtensionContent.xml -eclipse/plugins/org.eclipse.pde_3.0.0/welcome.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/activeHelpSample.jar -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/book.css -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/cpy.gif -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/doc.zip -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/notices.html -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/schema.css -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/toc.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/topics_Guide.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/topics_Porting.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/topics_Questions.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/topics_Reference.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/topics_Samples.xml -eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0/workbench.gif -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/book.css -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_AntUI.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_Compare.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_ExternalTools.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_Search.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_Team.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_Team_CVS.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_Update.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/contexts_Workbench.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/cpy.gif -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/doc.zip -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/no_help_exists.htm -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/notices.html -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/toc.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/topics_Concepts.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/topics_GettingStarted.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/topics_Reference.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/topics_Tasks.xml -eclipse/plugins/org.eclipse.platform.doc.user_3.0.0/workbench.gif -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/fragment.xml -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/cpl-v10.html -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/lgpl-v21.txt -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/mpl-v11.txt -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/ws/%%WS%%/swt-mozillasrc.zip -%%GTK:%%eclipse/plugins/org.eclipse.platform.source.freebsd.gtk.x86_3.0.0/src/org.eclipse.swt.gtk_3.0.0/ws/gtk/swt-pisrc.zip -%%MOTIF:%%eclipse/plugins/org.eclipse.platform.source.freebsd.motif.x86_3.0.0/src/org.eclipse.swt.motif_3.0.0/ws/motif/swt-gtksrc.zip -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/ws/%%WS%%/swtsrc.zip -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0/fragment.xml -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0/src/build.xml -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0/src/update.c -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0/src/update.c.orig -eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0/src/update.h -eclipse/plugins/org.eclipse.platform.source_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/about.ini -eclipse/plugins/org.eclipse.platform.source_3.0.0/about.mappings -eclipse/plugins/org.eclipse.platform.source_3.0.0/about.properties -eclipse/plugins/org.eclipse.platform.source_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.platform.source_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.platform.source_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.ant_1.6.1/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.ant_1.6.1/lib/antsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.lucene_1.3.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.lucene_1.3.0/lucene-1.3-final-src.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.lucene_1.3.0/parsersrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/antsupportsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/lib/antsupportlibsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/schema/antProperties.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/schema/antTasks.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/schema/antTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/schema/extraClasspathEntries.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/comparesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/schema/contentMergeViewers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/schema/contentViewers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/schema/streamMergers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/schema/structureCreators.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/schema/structureMergeViewers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.boot_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.expressions_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.expressions_3.0.0/expressionssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.expressions_3.0.0/schema/expressionLanguage.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.expressions_3.0.0/schema/propertyTesters.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.filebuffers_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.filebuffers_3.0.0/filebufferssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.filebuffers_3.0.0/schema/annotationModelCreation.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.filebuffers_3.0.0/schema/documentCreation.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.filebuffers_3.0.0/schema/documentSetup.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/ant_tasks/resources-antsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/resourcessrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema/builders.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema/fileModificationValidator.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema/markers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema/moveDeleteHook.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema/natures.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema/refreshProviders.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema/teamHook.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime.compatibility_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime.compatibility_3.0.0/compatibilitysrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/runtimesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/schema/adapters.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/schema/applications.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/schema/contentTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/schema/preferences.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/schema/products.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.variables_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.variables_3.0.0/schema/dynamicVariables.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.variables_3.0.0/schema/valueVariables.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.variables_3.0.0/variablessrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/dtcoresrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/breakpoints.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/launchConfigurationComparators.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/launchConfigurationTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/launchDelegates.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/launchModes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/launchers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/logicalStructureTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/memoryRenderings.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/processFactories.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/sourceContainerTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/sourceLocators.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/sourcePathComputers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/statusHandlers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema/watchExpressionDelegates.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/dtuisrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/consoleColorProviders.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/consoleLineTrackers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/contextViewBindings.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/debugModelContextBindings.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/debugModelPresentations.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/launchConfigurationTabGroups.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/launchConfigurationTypeImages.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/launchGroups.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/launchShortcuts.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/sourceContainerPresentations.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema/stringVariablePresentations.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.appserver_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.appserver_3.0.0/appserversrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.appserver_3.0.0/schema/server.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.base_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.base_3.0.0/helpbasesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.base_3.0.0/schema/browser.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.base_3.0.0/schema/luceneAnalyzer.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.base_3.0.0/schema/webapp.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.ide_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.ide_3.0.0/helpidesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.ui_3.0.0/helpuisrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.webapp_3.0.0/WEB-INF/lib/servletssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.webapp_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.webapp_3.0.0/webappsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help_3.0.0/helpsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help_3.0.0/schema/contentProducer.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help_3.0.0/schema/contexts.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help_3.0.0/schema/toc.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.jface.text_3.0.0/jfacetextsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.jface_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.jface_3.0.0/jfacesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi.services_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi.services_3.0.0/servicessrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi.util_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi.util_3.0.0/utilsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0/consolesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0/coresrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0/defaultAdaptorsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0/eclipseAdaptorsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0/osgisrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0/resolversrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.platform_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.platform_3.0.0/launchersrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.platform_3.0.0/platformsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.platform_3.0.0/startupsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.search_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.search_3.0.0/schema/searchPages.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.search_3.0.0/schema/searchResultSorters.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.search_3.0.0/schema/searchResultViewPages.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.search_3.0.0/searchsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0/schema/fileTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0/schema/ignore.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0/schema/projectSets.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0/schema/repository.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0/teamsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.core_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.core_3.0.0/cvssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ssh2_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ssh2_3.0.0/cvsssh2src.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ssh_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ssh_3.0.0/teamcvssshsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ui_3.0.0/teamcvsuisrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.ui_3.0.0/schema/configurationWizards.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.ui_3.0.0/schema/synchronizeParticipants.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.ui_3.0.0/schema/synchronizeWizards.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.ui_3.0.0/teamuisrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.text_3.0.0/textsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.tomcat_4.1.30/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.tomcat_4.1.30/mx4j.license -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.tomcat_4.1.30/tomcatwrappersrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0/cheatsheetssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0/schema/cheatSheetContent.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0/schema/cheatSheetContentFileSpec.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0/schema/cheatSheetItemExtension.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0/schema/contentFile.xsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.console_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.console_3.0.0/consolesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/editorssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/schema/annotationTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/schema/documentProviders.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/schema/markerAnnotationSpecification.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/schema/markerUpdaters.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/schema/templates.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.externaltools_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.externaltools_3.0.0/externaltoolssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.forms_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.forms_3.0.0/formssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/idesrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/schema/capabilities.mxsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/schema/markerHelp.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/schema/markerImageProviders.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/schema/markerResolution.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/schema/projectNatureImages.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/schema/resourceFilters.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/.options -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/introsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/schema/IntroContent.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/schema/config.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/schema/configExtension.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/schema/introContentFileSpec.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/schema/style.css -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.presentations.r21_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.presentations.r21_3.0.0/r21src.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.views_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.views_3.0.0/viewssrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.compatibility_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.compatibility_3.0.0/compatibilitysrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.texteditor_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.texteditor_3.0.0/schema/quickDiffReferenceProvider.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.texteditor_3.0.0/texteditorsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench_3.0.0/workbenchsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/acceleratorConfigurations.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/acceleratorScopes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/acceleratorSets.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/actionDefinitions.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/actionSetPartAssociations.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/actionSets.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/activities.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/commands.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/commonAction.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/commonExpression.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/contexts.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/decorators.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/dropActions.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/editorActions.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/editors.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/elementFactories.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/exportWizards.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/fontDefinitions.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/helpSupport.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/importWizards.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/intro.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/newWizards.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/perspectiveExtensions.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/perspectives.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/popupMenus.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/preferencePages.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/presentationFactories.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/propertyPages.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/startup.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/systemSummarySections.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/themes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/viewActions.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/views.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema/workingSets.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/uisrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.configurator_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.configurator_3.0.0/configuratorsrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.core_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.core_3.0.0/schema/featureTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.core_3.0.0/schema/installHandlers.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.core_3.0.0/schema/siteTypes.exsd -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.core_3.0.0/updatecoresrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.scheduler_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.scheduler_3.0.0/schedulersrc.zip -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.ui_3.0.0/updateuisrc.zip -eclipse/plugins/org.eclipse.platform_3.0.0/about.html -eclipse/plugins/org.eclipse.platform_3.0.0/about.ini -eclipse/plugins/org.eclipse.platform_3.0.0/about.mappings -eclipse/plugins/org.eclipse.platform_3.0.0/about.properties -eclipse/plugins/org.eclipse.platform_3.0.0/cheatsheets/CVS_1.xml -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/background.jpg -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/backgroundcurve.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/content_background.jpg -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/overview_wtr.jpg -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/samples_wtr.jpg -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/section1.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/section2.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/section3.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/section4.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/tutorials_wtr.jpg -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/whatsnew_wtr.jpg -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage/wordmark.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/overview48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/overview48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/overview72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/samples48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/samples48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/samples72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/tutorials48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/tutorials48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/tutorials72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/wb48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/whatsnew48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/whatsnew48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool/whatsnew72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/dtool/back.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/dtool/forward.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/back.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/forward.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/overview48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/overview48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/overview72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/samples48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/samples48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/samples72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/tutorials48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/tutorials48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/tutorials72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/wb48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/whatsnew48.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/whatsnew48sel.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool/whatsnew72.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/community_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/communityhov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/features_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/featureshov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/javaapp_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/javaapphov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/javaapplet_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/javaapplethov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/javadev_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/javadevhov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/migrate_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/migratehov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/new_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/newhov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/plugin_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/pluginhov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/rcpapp_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/rcpapphov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/samplepurp_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/samplepurphov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/samplered_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/sampleredhov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/script_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/scripthov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/swtapp_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/swtapphov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/teamsup_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/teamsuphov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/updates_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/updateshov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/wbbasics_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48/wbbasicshov_obj.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/rootpage/background.jpg -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/rootpage/brandmark.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/rootpage/dots.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/swt/form_banner.gif -eclipse/plugins/org.eclipse.platform_3.0.0/css/overview/overview.css -eclipse/plugins/org.eclipse.platform_3.0.0/css/overview/swt.properties -eclipse/plugins/org.eclipse.platform_3.0.0/css/root.css -eclipse/plugins/org.eclipse.platform_3.0.0/css/root_swt.properties -eclipse/plugins/org.eclipse.platform_3.0.0/css/samples/samples.css -eclipse/plugins/org.eclipse.platform_3.0.0/css/samples/swt.properties -eclipse/plugins/org.eclipse.platform_3.0.0/css/shared.css -eclipse/plugins/org.eclipse.platform_3.0.0/css/standby_root.css -eclipse/plugins/org.eclipse.platform_3.0.0/css/standby_swt.properties -eclipse/plugins/org.eclipse.platform_3.0.0/css/tutorials/swt.properties -eclipse/plugins/org.eclipse.platform_3.0.0/css/tutorials/tutorials.css -eclipse/plugins/org.eclipse.platform_3.0.0/css/whatsnew/swt.properties -eclipse/plugins/org.eclipse.platform_3.0.0/css/whatsnew/whatsnew.css -eclipse/plugins/org.eclipse.platform_3.0.0/eclipse.gif -eclipse/plugins/org.eclipse.platform_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.platform_3.0.0/eclipse_lg.gif -eclipse/plugins/org.eclipse.platform_3.0.0/intro.gif -eclipse/plugins/org.eclipse.platform_3.0.0/introContent.xml -eclipse/plugins/org.eclipse.platform_3.0.0/platform.jar -eclipse/plugins/org.eclipse.platform_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.platform_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.platform_3.0.0/plugin_customization.ini -eclipse/plugins/org.eclipse.platform_3.0.0/plugin_customization.properties -eclipse/plugins/org.eclipse.platform_3.0.0/splash.bmp -eclipse/plugins/org.eclipse.platform_3.0.0/welcome.xml -eclipse/plugins/org.eclipse.sdk_3.0.0/about.html -eclipse/plugins/org.eclipse.sdk_3.0.0/about.ini -eclipse/plugins/org.eclipse.sdk_3.0.0/about.mappings -eclipse/plugins/org.eclipse.sdk_3.0.0/about.properties -eclipse/plugins/org.eclipse.sdk_3.0.0/eclipse32.gif -eclipse/plugins/org.eclipse.sdk_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.sdk_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.search_3.0.0/about.html -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/expandall.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/flatLayout.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/search_goto.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/search_history.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/search_next.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/search_prev.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/search_rem.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/search_remall.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/stop.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16/tsearch_obj.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dtool16/group_by_file.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dtool16/group_by_folder.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dtool16/group_by_project.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dtool16/search.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/expandall.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/flatLayout.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/search_goto.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/search_history.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/search_next.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/search_prev.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/search_rem.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/search_remall.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/search_sortmatch.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/stop.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16/tsearch_obj.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/etool16/group_by_file.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/etool16/group_by_folder.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/etool16/group_by_project.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/etool16/search.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/eview16/searchres.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/obj16/searchm_obj.gif -eclipse/plugins/org.eclipse.search_3.0.0/icons/full/obj16/tsearch_dpdn_obj.gif -eclipse/plugins/org.eclipse.search_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.search_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.search_3.0.0/search.jar -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/about.html -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/cpl-v10.html -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/fragment.properties -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/fragment.xml -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/lgpl-v21.txt -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/mpl-v11.txt -%%GTK:%%eclipse/plugins/org.eclipse.swt.gtk_3.0.0/os/freebsd/x86/libswt-atk-gtk-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/os/freebsd/x86/libswt-awt-%%WS%%-%%BUILD%%.so -%%GNOME:%%eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/os/freebsd/x86/libswt-gnome-%%WS%%-%%BUILD%%.so -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/os/freebsd/x86/libswt-%%WS%%-%%BUILD%%.so -%%MOTIF:%%eclipse/plugins/org.eclipse.swt.motif_3.0.0/os/freebsd/x86/libswt-gtk-motif-%%BUILD%%.so -%%MOTIF:%%%%KDE:%%eclipse/plugins/org.eclipse.swt.motif_3.0.0/os/freebsd/x86/libswt-kde-motif-%%BUILD%%.so -%%GTK:%%eclipse/plugins/org.eclipse.swt.gtk_3.0.0/os/freebsd/x86/libswt-mozilla-gtk-%%BUILD%%.so -%%GTK:%%eclipse/plugins/org.eclipse.swt.gtk_3.0.0/os/freebsd/x86/libswt-pi-gtk-%%BUILD%%.so -%%MOTIF:%%eclipse/plugins/org.eclipse.swt.motif_3.0.0/permissions.properties -%%MOTIF:%%eclipse/plugins/org.eclipse.swt.motif_3.0.0/ws/motif/swt-gtk.jar -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/ws/%%WS%%/swt-mozilla.jar -%%GTK:%%eclipse/plugins/org.eclipse.swt.gtk_3.0.0/ws/gtk/swt-pi.jar -eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/ws/%%WS%%/swt.jar -eclipse/plugins/org.eclipse.swt_3.0.0/META-INF/MANIFEST.MF -eclipse/plugins/org.eclipse.swt_3.0.0/about.html -eclipse/plugins/org.eclipse.swt_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.swt_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/clear.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/export_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/filter_ps.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/find_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/import_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/open_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/properties.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/refresh.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/remove.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/restore_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16/th_vertical.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/clear.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/export_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/filter_ps.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/find_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/import_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/open_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/properties.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/refresh.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/remove.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/restore_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16/th_vertical.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/error_log.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/event_next.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/event_prev.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/hide_pane.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/horizontal_view.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/registry.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16/vertical_view.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/error_st_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/error_stack.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/ext_point_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/ext_points_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/extension_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/extensions_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/generic_xml_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/info_st_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/java_lib_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/ok_st_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/plugin_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/req_plugin_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/req_plugins_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/runtime_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16/warning_st_obj.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/ovr16/run_co.gif +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/pdert.jar +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.ini +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.mappings +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/lib/pdebuild-antsrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/pdebuildsrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/pdecoresrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/schema/source.exsd +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.junit.runtime_3.0.0/about.html +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.junit.runtime_3.0.0/pdejunitsrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.runtime_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.runtime_%%RELEASEVERSION%%/pdertsrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeuiantsrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeuisrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/newExtension.exsd +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/pluginContent.exsd +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/samples.exsd +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema/templates.exsd +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks/pde-antsrc.zip +eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/pdesrc.zip +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/add_att.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/clear.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/clone_att.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/clone_el.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/find_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/full_hierarchy.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/generate_class.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/goto_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/maximize.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/properties.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/refresh.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/remove_att.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/restore.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/restore_log.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/search_sortmatch.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16/th_vertical.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/convjpprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/defbcon_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/defcon_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/eclipse_launcher.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/eclipse_launcher_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/exp_deployfeat.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/exp_deployplug.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/imp_extfeat.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/imp_extplug.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newbexprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newbfprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newbprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newefix_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newex_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newexp_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newexprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newfprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newftrprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newpprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/newsiteprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/rclpltf_appex_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16/script_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/add_att.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/clear.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/clone_att.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/clone_el.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/find_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/full_hierarchy.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/generate_class.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/goto_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/help.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/maximize.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/properties.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/refresh.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/remove_att.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/restore.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/restore_log.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/search_sortmatch.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/th_horizontal.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16/th_vertical.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/convjpprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/defbcon_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/defcon_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/eclipse_launcher.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/eclipse_launcher_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/exp_deployfeat.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/exp_deployplug.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/imp_extfeat.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/imp_extplug.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newbexprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newbfprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newbprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newefix_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newex_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newexp_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newexprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newfprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newftrprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newpprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/newsiteprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/rclpltf_appex_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16/script_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/eview16/plugin_depend.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/eview16/plugins.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/alert_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/all_sc_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_URI_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_class_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_file_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_impl_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/att_req_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/build_exec.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/build_var_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundle_fragment_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundle_mf_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundle_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundled_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundlef_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/bundlefd_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/category_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/choice_sc_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/debug_exc.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/discovery.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/doc_section_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/element.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/elref_sc_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/error_st_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ext_plugin_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ext_point_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ext_points_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/extension_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/extensions_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/external_frgmt_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/feature_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmt_dis_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmt_mf_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmt_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/frgmts_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ftr_jar_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ftr_mf_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ftr_xml_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/gel_sc_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/generic_xml_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/group_sc_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/info_st_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/install-handler.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/java_lib_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/julaunchpgn.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/link_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/links_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/loop_node_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/loop_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/noref_feature_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/ok_st_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/output_folder_attrib.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/overview_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/page_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_config_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_configs_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_dis_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_mf_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/plugin_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/processinginst.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/psearch_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/req_plugin_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/req_plugins_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/run_exc.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/runtime_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/schema_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/scomp_jar_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/seq_sc_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/site_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/site_xml_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/test.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/tsk_alert_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/update.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/url.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16/warning_st_obj.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/binary_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/doc_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/error_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/export_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/external_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/jar_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/java_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/project_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/run_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16/warning_co.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/error_log.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/plugin_persp.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/plugins.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/registry.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16/variable_tab.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/4fun.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/convjpprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/debug_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/defcon_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/exp_deployfeat_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/exp_deployplug_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/form_banner.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/imp_extfeat_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/imp_extplug_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/migrate_30_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newbexprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newbfprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newbprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newefix_wizban.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newex_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newexp_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newexprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newfprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newftrprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newpprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/newsiteprj_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/plugin2bundle_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/rclpltf_appex_wizban.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/run_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban/schema_wiz.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeui.jar +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/pdeuiant.jar +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/$editorClass$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/ColorManager.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/IXMLColorConstants.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/NonRuleBasedDamagerRepairer.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/TagRule.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLConfiguration.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLDocumentProvider.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLDoubleClickStrategy.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLPartitionScanner.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLScanner.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLTagScanner.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java/XMLWhitespaceDetector.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/java/$className$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/toc.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocconcepts.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocgettingstarted.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocreference.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/tocsamples.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/toctasks.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/testToc.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/toc.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/java/$contributorClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/java/$editorClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/java/$wizardClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/java/$wizardPageClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/popupMenus/java/$actionClass$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/preferences/java/$pageClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/propertyPages/java/$className$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/java/$className$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/$editorClass$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/ColorManager.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/IXMLColorConstants.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/NonRuleBasedDamagerRepairer.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/TagRule.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLConfiguration.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLDocumentProvider.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLDoubleClickStrategy.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLPartitionScanner.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLScanner.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLTagScanner.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java/XMLWhitespaceDetector.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/java/$className$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks/maintopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks/subtopic.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks/subtopic2.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/toc.html +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocconcepts.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocgettingstarted.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocreference.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/tocsamples.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/toctasks.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/testToc.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/toc.xml +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/java/$contributorClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/java/$editorClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/java/$wizardClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/java/$wizardPageClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/popupMenus/java/$actionClass$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/preferences/java/$pageClassName$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/propertyPages/java/$className$.java +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/bin/icons/sample.gif +eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/java/$className$.java +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.ini +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.mappings +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks/pde-ant.jar +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/cheatsheets/helloworld.xml +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/cheatsheets/updates.xml +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/features_obj.gif +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/featureshov_obj.gif +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/plugin_obj.gif +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/pluginhov_obj.gif +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/rcpapp_obj.gif +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48/rcpapphov_obj.gif +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/overview.css +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/swt.properties +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/tutorials.css +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/newsExtensionContent.xml +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/overviewExtensionContent.xml +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/pde.jar +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/tutorialsExtensionContent.xml +eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/welcome.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/activeHelpSample.jar +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/book.css +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/cpy.gif +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/doc.zip +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/notices.html +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/schema.css +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/toc.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Guide.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Porting.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Questions.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Reference.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/topics_Samples.xml +eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%%/workbench.gif +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/book.css +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_AntUI.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Compare.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_ExternalTools.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Search.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Team.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Team_CVS.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Update.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/contexts_Workbench.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/cpy.gif +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/doc.zip +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/no_help_exists.htm +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/notices.html +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/toc.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_Concepts.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_GettingStarted.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_Reference.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/topics_Tasks.xml +eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%%/workbench.gif +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/fragment.xml +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/cpl-v10.html +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/lgpl-v21.txt +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/mpl-v11.txt +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-mozillasrc.zip +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-pisrc.zip +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swtsrc.zip +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/fragment.xml +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/build.xml +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/update.c +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/update.c.orig +eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src/update.h +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.ini +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.mappings +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/LICENSE.dom.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/LICENSE.sax.txt +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/asl-v20.txt +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/lib/antsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1/lucene-1.3-final-src.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1/parsersrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/antsupportsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/lib/antsupportlibsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/antProperties.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/antTasks.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/antTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema/extraClasspathEntries.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/comparesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/contentMergeViewers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/contentViewers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/streamMergers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/structureCreators.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema/structureMergeViewers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.boot_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/expressionssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/schema/expressionLanguage.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/schema/propertyTesters.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/filebufferssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema/annotationModelCreation.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema/documentCreation.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema/documentSetup.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks/resources-antsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/resourcessrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/builders.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/fileModificationValidator.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/markers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/moveDeleteHook.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/natures.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/refreshProviders.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema/teamHook.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime.compatibility_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime.compatibility_3.0.0/compatibilitysrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/runtimesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/adapters.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/applications.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/contentTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/preferences.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema/products.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/schema/dynamicVariables.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/schema/valueVariables.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/variablessrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/dtcoresrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/breakpoints.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchConfigurationComparators.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchConfigurationTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchDelegates.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchModes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/launchers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/logicalStructureTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/memoryRenderings.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/processFactories.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/sourceContainerTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/sourceLocators.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/sourcePathComputers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/statusHandlers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema/watchExpressionDelegates.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/dtuisrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/consoleColorProviders.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/consoleLineTrackers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/contextViewBindings.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/debugModelContextBindings.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/debugModelPresentations.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchConfigurationTabGroups.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchConfigurationTypeImages.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchGroups.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/launchShortcuts.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/sourceContainerPresentations.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema/stringVariablePresentations.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/appserversrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/schema/server.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/helpbasesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema/browser.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema/luceneAnalyzer.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema/webapp.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ide_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ide_3.0.0/helpidesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ui_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ui_3.0.0/helpuisrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib/servletssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/webappsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/helpsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema/contentProducer.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema/contexts.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema/toc.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface.text_%%RELEASEVERSION%%/jfacetextsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface_3.0.0/jfacesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.services_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.services_3.0.0/servicessrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.util_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.util_3.0.0/utilsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/consolesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/coresrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/defaultAdaptorsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/eclipseAdaptorsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/osgisrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%%/resolversrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/launchersrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/platformsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%%/startupsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema/searchPages.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema/searchResultSorters.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema/searchResultViewPages.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/searchsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/fileTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/ignore.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/projectSets.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema/repository.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/teamsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/cvssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh2_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh2_3.0.0/cvsssh2src.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh_3.0.0/teamcvssshsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/teamcvsuisrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema/configurationWizards.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema/synchronizeParticipants.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema/synchronizeWizards.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/teamuisrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.text_%%RELEASEVERSION%%/textsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30/mx4j.license +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30/tomcatwrappersrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/cheatsheetssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/cheatSheetContent.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/cheatSheetContentFileSpec.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/cheatSheetItemExtension.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema/contentFile.xsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.console_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.console_3.0.0/consolesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/editorssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/annotationTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/documentProviders.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/markerAnnotationSpecification.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/markerUpdaters.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema/templates.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/externaltoolssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.forms_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.forms_3.0.0/formssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/idesrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/capabilities.mxsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/markerHelp.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/markerImageProviders.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/markerResolution.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/projectNatureImages.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema/resourceFilters.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/introsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/IntroContent.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/book.css +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/config.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/configExtension.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/introContentFileSpec.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema/schema.css +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/r21src.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.views_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.views_3.0.0/viewssrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.compatibility_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.compatibility_3.0.0/compatibilitysrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/schema/quickDiffReferenceProvider.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/texteditorsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench_%%RELEASEVERSION%%/workbenchsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/acceleratorConfigurations.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/acceleratorScopes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/acceleratorSets.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/actionDefinitions.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/actionSetPartAssociations.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/actionSets.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/activities.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/commands.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/commonAction.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/commonExpression.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/contexts.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/decorators.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/dropActions.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/editorActions.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/editors.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/elementFactories.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/exportWizards.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/fontDefinitions.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/helpSupport.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/importWizards.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/intro.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/newWizards.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/perspectiveExtensions.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/perspectives.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/popupMenus.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/preferencePages.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/presentationFactories.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/propertyPages.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/startup.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/systemSummarySections.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/themes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/viewActions.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/views.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema/workingSets.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/uisrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.configurator_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.configurator_3.0.0/configuratorsrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema/featureTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema/installHandlers.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema/siteTypes.exsd +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/updatecoresrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.scheduler_3.0.0/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.scheduler_3.0.0/schedulersrc.zip +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.ui_%%RELEASEVERSION%%/updateuisrc.zip +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.ini +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.mappings +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/cheatsheets/CVS_1.xml +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/background.jpg +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/backgroundcurve.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/content_background.jpg +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/overview_wtr.jpg +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/samples_wtr.jpg +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section1.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section2.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section3.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/section4.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/tutorials_wtr.jpg +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/whatsnew_wtr.jpg +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage/wordmark.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/overview48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/overview48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/overview72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/samples48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/samples48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/samples72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/tutorials48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/tutorials48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/tutorials72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/wb48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/whatsnew48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/whatsnew48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool/whatsnew72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/dtool/back.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/dtool/forward.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/back.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/forward.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/overview48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/overview48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/overview72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/samples48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/samples48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/samples72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/tutorials48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/tutorials48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/tutorials72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/wb48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/whatsnew48.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/whatsnew48sel.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool/whatsnew72.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/community_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/communityhov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/features_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/featureshov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapp_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapphov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapplet_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javaapplethov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javadev_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/javadevhov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/migrate_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/migratehov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/new_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/newhov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/plugin_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/pluginhov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/rcpapp_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/rcpapphov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/samplepurp_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/samplepurphov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/samplered_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/sampleredhov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/script_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/scripthov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/swtapp_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/swtapphov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/teamsup_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/teamsuphov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/updates_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/updateshov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/wbbasics_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48/wbbasicshov_obj.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage/background.jpg +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage/brandmark.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage/dots.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/swt/form_banner.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/overview/overview.css +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/overview/swt.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/root.css +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/root_swt.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/samples/samples.css +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/samples/swt.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/shared.css +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/standby_root.css +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/standby_swt.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/tutorials/swt.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/tutorials/tutorials.css +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/whatsnew/swt.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/whatsnew/whatsnew.css +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/eclipse.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/eclipse_lg.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/intro.gif +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/introContent.xml +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/platform.jar +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin_customization.ini +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/plugin_customization.properties +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/splash.bmp +eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/welcome.xml +eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.ini +eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.mappings +eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/about.properties +eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/eclipse32.gif +eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/expandall.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/flatLayout.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_goto.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_history.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_next.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_prev.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_rem.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_remall.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/search_sortmatch.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/stop.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16/tsearch_obj.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/group_by_file.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/group_by_folder.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/group_by_project.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16/search.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/expandall.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/flatLayout.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_goto.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_history.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_next.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_prev.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_rem.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_remall.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/search_sortmatch.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/stop.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16/tsearch_obj.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/group_by_file.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/group_by_folder.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/group_by_project.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16/search.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/eview16/searchres.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/obj16/searchm_obj.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/obj16/tsearch_dpdn_obj.gif +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/search.jar +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/META-INF/MANIFEST.MF +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/cpl-v10.html +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/fragment.properties +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/fragment.xml +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/lgpl-v21.txt +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/mpl-v11.txt +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-atk-%%WS%%-%%BUILD%%.so +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-awt-%%WS%%-%%BUILD%%.so +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-gnome-%%WS%%-%%BUILD%%.so +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-%%WS%%-%%BUILD%%.so +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-mozilla-%%WS%%-%%BUILD%%.so +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86/libswt-pi-%%WS%%-%%BUILD%%.so +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-mozilla.jar +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt-pi.jar +eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/%%WS%%/swt.jar +eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/META-INF/MANIFEST.MF +eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.team.core_3.0.0/.options eclipse/plugins/org.eclipse.team.core_3.0.0/about.html eclipse/plugins/org.eclipse.team.core_3.0.0/plugin.properties eclipse/plugins/org.eclipse.team.core_3.0.0/plugin.xml eclipse/plugins/org.eclipse.team.core_3.0.0/team.jar -eclipse/plugins/org.eclipse.team.cvs.core_3.0.0/.options -eclipse/plugins/org.eclipse.team.cvs.core_3.0.0/about.html -eclipse/plugins/org.eclipse.team.cvs.core_3.0.0/cvs.jar -eclipse/plugins/org.eclipse.team.cvs.core_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.team.cvs.core_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/cvs.jar +eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/about.html eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/cvsssh2.jar eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0/jsch-0.1.16.jar @@ -2170,152 +2171,152 @@ eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/about.html eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/plugin.properties eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/plugin.xml eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0/teamcvsssh.jar -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dlcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dlcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/annotate.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/checkout.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/cvs_synch.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/ignorefiles.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/newconnect_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/newlocation_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16/share_prj_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/elcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/elcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/elcl16/refresh.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16/annotate.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16/checkout.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16/cvs_synch.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16/history.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16/newconnect_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16/newlocation_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16/share_prj_wiz.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16/annotate_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16/compare_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16/console_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16/cvs_persp.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16/history_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16/rep_editors_view.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16/repo_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph1.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph2.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph3.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph4.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph5.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph6.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph7.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs/glyph8.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/branches_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/changelog_obj.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/date.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/dates.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/module_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/prjversions_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/repository_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/tag.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16/versions_rep.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/ovr16/confauto_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/ovr16/edited_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/ovr16/merged_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/ovr16/no_remotedir_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/ovr16/question_ov.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/wizban/createpatch_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/wizban/keywordsub_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/wizban/mergestream_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/wizban/newconnect_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/wizban/newlocation_wizban.gif -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/teamcvsui.jar -eclipse/plugins/org.eclipse.team.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/catchup_rls.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/catchuprelease_rls.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/checkin_action.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/checkout_action.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/conflict_synch.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/filter_change.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/flatLayout.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/ignorefiles.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/ignorews_edit.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/incom_synch.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/next_nav.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/outgo_synch.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/participant_rem.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/participant_remall.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/pin.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/prev_nav.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/refresh.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/refresh_remote.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/release_rls.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/rem_co.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/site_element.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16/synch_participants.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/catchup_rls.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/catchuprelease_rls.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/checkin_action.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/checkout_action.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/clear_co.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/conflict_synch.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/filter_change.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/filter_history.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/flatLayout.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/ignorefiles.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/ignorews_edit.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/incom_synch.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/newstream_wiz.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/next_nav.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/outgo_synch.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/participant_rem.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/participant_remall.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/pin.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/prev_nav.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/refresh.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/refresh_remote.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/release_rls.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/rem_co.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/site_element.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16/synch_participants.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/eview16/synch_synch.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/obj/compressed_folder_obj.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/obj/export_projectset.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/obj/import_projectset.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/obj/share_project.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr/checkedout_ov.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr/confchg_ov.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr/dirty_ov.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr/error_co.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr/version_controlled.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr/waiting_ovr.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr/warning_co.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/wizban/export_projectset_wizban.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/wizban/import_projectset_wizban.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/wizban/keylock.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/wizban/lockkey.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/wizban/share_wizban.gif -eclipse/plugins/org.eclipse.team.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.team.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.team.ui_3.0.0/teamui.jar -eclipse/plugins/org.eclipse.text_3.0.0/about.html -eclipse/plugins/org.eclipse.text_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.text_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.text_3.0.0/text.jar +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_history.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/newstream_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/annotate.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/checkout.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/cvs_synch.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/history.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/ignorefiles.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/newconnect_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/newlocation_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16/share_prj_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_history.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/newstream_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/annotate.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/checkout.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/cvs_synch.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/history.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/newconnect_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/newlocation_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16/share_prj_wiz.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/annotate_view.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/compare_view.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/console_view.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/cvs_persp.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/history_view.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/rep_editors_view.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16/repo_rep.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph1.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph2.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph3.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph4.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph5.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph6.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph7.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs/glyph8.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/branches_rep.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/changelog_obj.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/date.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/dates.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/module_rep.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/prjversions_rep.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/repository_rep.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/tag.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16/versions_rep.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/confauto_ov.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/edited_ov.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/merged_ov.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/no_remotedir_ov.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16/question_ov.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/createpatch_wizban.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/keywordsub_wizban.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/mergestream_wizban.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/newconnect_wizban.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban/newlocation_wizban.gif +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/teamcvsui.jar +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/catchup_rls.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/catchuprelease_rls.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/checkin_action.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/checkout_action.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/clear_co.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/conflict_synch.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_change.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_history.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/flatLayout.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ignorefiles.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/ignorews_edit.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/incom_synch.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/newstream_wiz.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/next_nav.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/outgo_synch.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/participant_rem.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/participant_remall.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/pin.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/prev_nav.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_remote.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/release_rls.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/rem_co.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/site_element.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synch_participants.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/catchup_rls.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/catchuprelease_rls.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/checkin_action.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/checkout_action.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/clear_co.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/conflict_synch.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_change.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_history.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/flatLayout.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/ignorefiles.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/ignorews_edit.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/incom_synch.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/newstream_wiz.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/next_nav.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/outgo_synch.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/participant_rem.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/participant_remall.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/pin.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/prev_nav.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh_remote.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/release_rls.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/rem_co.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/site_element.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16/synch_participants.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/eview16/synch_synch.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/compressed_folder_obj.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/export_projectset.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/import_projectset.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj/share_project.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/checkedout_ov.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/confchg_ov.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/dirty_ov.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/error_co.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/version_controlled.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/waiting_ovr.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr/warning_co.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/export_projectset_wizban.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/import_projectset_wizban.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/keylock.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/lockkey.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban/share_wizban.gif +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/teamui.jar +eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%%/text.jar eclipse/plugins/org.eclipse.tomcat_4.1.30/about.html eclipse/plugins/org.eclipse.tomcat_4.1.30/bootstrap.jar eclipse/plugins/org.eclipse.tomcat_4.1.30/catalina.jar @@ -2350,49 +2351,49 @@ eclipse/plugins/org.eclipse.tomcat_4.1.30/tomcat-util.jar eclipse/plugins/org.eclipse.tomcat_4.1.30/tomcatwrapper.jar eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT/WEB-INF/web.xml eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT/index.html -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/cheatsheets.jar -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/collapse_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/collapse_expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/complete_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/icon_legend.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/restart_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/restart_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/skip_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/start_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16/start_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/cview16/cheatsheet_view.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/collapse_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/collapse_expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/complete_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/icon_legend.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/restart_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/restart_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/skip_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/start_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16/start_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/collapse_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/collapse_expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/complete_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/expand_all.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/icon_legend.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/restart_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/restart_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/skip_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/start_cheatsheet.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16/start_task.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/eview16/cheatsheet_view.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/obj16/collapse_state.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/obj16/complete_status.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/obj16/expand_state.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/obj16/skip_status.gif -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/cheatsheets.jar +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/collapse_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/collapse_expand_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/complete_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/expand_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/icon_legend.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/linkto_help.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/restart_cheatsheet.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/restart_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/skip_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/start_cheatsheet.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16/start_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/cview16/cheatsheet_view.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/collapse_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/collapse_expand_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/complete_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/expand_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/icon_legend.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/linkto_help.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/restart_cheatsheet.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/restart_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/skip_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/start_cheatsheet.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16/start_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/collapse_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/collapse_expand_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/complete_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/expand_all.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/icon_legend.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/linkto_help.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/restart_cheatsheet.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/restart_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/skip_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/start_cheatsheet.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16/start_task.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/eview16/cheatsheet_view.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/collapse_state.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/complete_status.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/expand_state.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16/skip_status.gif +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.ui.console_3.0.0/.options eclipse/plugins/org.eclipse.ui.console_3.0.0/about.html eclipse/plugins/org.eclipse.ui.console_3.0.0/console.jar @@ -2406,163 +2407,163 @@ eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/elcl16/pin.gif eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/eview16/console_view.gif eclipse/plugins/org.eclipse.ui.console_3.0.0/plugin.properties eclipse/plugins/org.eclipse.ui.console_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.editors_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.editors_3.0.0/editors.jar -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/ctool16/last_edit_pos.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/ctool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/ctool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/dtool16/last_edit_pos.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/dtool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/dtool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/etool16/last_edit_pos.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/etool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/etool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/obj16/file_obj.gif -eclipse/plugins/org.eclipse.ui.editors_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.editors_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/.options -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/externaltools.jar -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/dtool16/external_tools.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/etool16/external_tools.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/obj16/builder.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/obj16/classpath.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/obj16/external_tools.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/obj16/invalid_build_tool.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/obj16/main_tab.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/wizban/ext_tools_wiz.gif -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/plugin.xml +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/editors.jar +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16/last_edit_pos.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16/next_nav.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16/prev_nav.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16/last_edit_pos.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16/next_nav.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16/prev_nav.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16/last_edit_pos.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16/next_nav.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16/prev_nav.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/obj16/file_obj.gif +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/externaltools.jar +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/dtool16/external_tools.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/etool16/external_tools.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/builder.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/classpath.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/external_tools.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/invalid_build_tool.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16/main_tab.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/wizban/ext_tools_wiz.gif +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/plugin.xml eclipse/plugins/org.eclipse.ui.forms_3.0.0/about.html eclipse/plugins/org.eclipse.ui.forms_3.0.0/forms.jar eclipse/plugins/org.eclipse.ui.forms_3.0.0/plugin.properties eclipse/plugins/org.eclipse.ui.forms_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.ide_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/configs.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/step_current.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/step_done.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16/usearch_obj.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/build_exec.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/new_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16/search_src.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/configs.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/step_current.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/step_done.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16/usearch_obj.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/build_exec.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/new_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/next_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/prev_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16/search_src.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/eview16/bkmrk_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/eview16/filenav_nav.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/eview16/problems_view.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/eview16/resource_persp.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/eview16/tasks_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/bkmrk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/complete_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/cprj_obj.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/error_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/header_complete.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/header_priority.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/hprio_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/incomplete_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/info_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/lprio_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/prj_obj.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/taskmrk_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/warn_tsk.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/warning.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/welcome_banner.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/welcome_editor.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/welcome_item.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16/workset.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/ovr16/link_ovr.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/ovr16/linkwarn_ovr.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/progress/pview.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/export_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/import_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/new_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban/workset_wiz.gif -eclipse/plugins/org.eclipse.ui.ide_3.0.0/ide.jar -eclipse/plugins/org.eclipse.ui.ide_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.ide_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.intro_3.0.0/.options -eclipse/plugins/org.eclipse.ui.intro_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.intro_3.0.0/empty_swt.properties -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/blank.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/container_obj.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/contents_view.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/form_banner.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/dlcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/dlcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/dlcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/elcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/elcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/elcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/help_topic.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/overview_32.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/overview_48.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/topic.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/welcome_item.gif -eclipse/plugins/org.eclipse.ui.intro_3.0.0/intro.jar -eclipse/plugins/org.eclipse.ui.intro_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.intro_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.presentations.r21_3.0.0/README.TXT -eclipse/plugins/org.eclipse.ui.presentations.r21_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.presentations.r21_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.presentations.r21_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.presentations.r21_3.0.0/r21.jar -eclipse/plugins/org.eclipse.ui.presentations.r21_3.0.0/r21presentation.ini +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/addtsk_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/configs.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/filter_ps.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/gotoobj_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/selected_mode.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showchild_mode.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showerr_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showtsk_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/showwarn_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/step_current.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/step_done.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16/usearch_obj.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/build_exec.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/export_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/exportdir_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/exportzip_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/import_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/importdir_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/importzip_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/new_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/newfile_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/newfolder_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/newprj_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/next_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/prev_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16/search_src.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/addtsk_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/configs.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/filter_ps.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/gotoobj_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/refresh_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/selected_mode.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showchild_mode.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showerr_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showtsk_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/showwarn_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/step_current.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/step_done.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16/usearch_obj.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/build_exec.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/export_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/exportdir_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/exportzip_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/import_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/importdir_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/importzip_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/new_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/newfile_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/newfolder_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/newprj_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/next_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/prev_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16/search_src.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/bkmrk_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/filenav_nav.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/problems_view.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/resource_persp.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16/tasks_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/bkmrk_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/complete_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/cprj_obj.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/error_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/header_complete.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/header_priority.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/hprio_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/incomplete_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/info_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/lprio_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/prj_obj.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/taskmrk_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/warn_tsk.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/warning.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/welcome_banner.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/welcome_editor.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/welcome_item.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16/workset.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/ovr16/link_ovr.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/ovr16/linkwarn_ovr.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/progress/pview.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/export_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/exportdir_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/exportzip_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/import_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/importdir_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/importzip_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/new_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/newfile_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/newfolder_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/newprj_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban/workset_wiz.gif +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/ide.jar +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/empty_swt.properties +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/blank.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/container_obj.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/contents_view.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/form_banner.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16/backward_nav.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16/forward_nav.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16/home_nav.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16/backward_nav.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16/forward_nav.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16/home_nav.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/help_topic.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/overview_32.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/overview_48.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/topic.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/welcome_item.gif +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/intro.jar +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/README.TXT +eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/r21.jar +eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%%/r21presentation.ini eclipse/plugins/org.eclipse.ui.views_3.0.0/about.html eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full/eview16/outline_co.gif eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full/eview16/prop_ps.gif @@ -2572,254 +2573,254 @@ eclipse/plugins/org.eclipse.ui.views_3.0.0/views.jar eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0/about.html eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0/compatibility.jar eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0/fragment.xml -eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons/full/ctool16/segment_edit.gif -eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons/full/dtool16/segment_edit.gif -eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons/full/etool16/segment_edit.gif -eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/texteditor.jar -eclipse/plugins/org.eclipse.ui.workbench_3.0.0/about.html -eclipse/plugins/org.eclipse.ui.workbench_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui.workbench_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui.workbench_3.0.0/workbench.jar -eclipse/plugins/org.eclipse.ui_3.0.0/.options -eclipse/plugins/org.eclipse.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/close_view.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/defaults_ps.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/min_view.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/pin_view.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/progress_rem.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/progress_remall.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/progress_stop.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/showcomplete_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/step_current.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/step_done.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/synced.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/tree_mode.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/up_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16/view_menu.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/copy_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/cut_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/delete_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/help_contents.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/paste_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/pin_editor.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/print_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/redo_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/save_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/saveall_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/saveas_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16/undo_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/addtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/backward_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/close_view.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/defaults_ps.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/filter_ps.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/forward_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/gotoobj_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/home_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/linkto_help.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/min_view.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/pin_view.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/progress_rem.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/progress_remall.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/progress_stop.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/refresh_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/selected_mode.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/showchild_mode.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/showcomplete_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/showerr_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/showtsk_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/showwarn_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/step_current.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/step_done.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/synced.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/tree_mode.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/up_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16/view_menu.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/copy_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/cut_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/delete_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/export_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/help_contents.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/import_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/paste_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/pin_editor.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/print_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/redo_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/save_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/saveall_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/saveas_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16/undo_edit.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/bkmrk_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/default_persp.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/defaultview_misc.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/filenav_nav.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/new_persp.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/outline_co.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/problems_view.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/prop_ps.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16/tasks_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/activity.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/activity_category.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/add_obj.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/bkmrk_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/blank.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/change_obj.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/complete_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/delete_obj.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/elements_obj.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/error_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/file_obj.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/fldr_obj.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/font.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/header_complete.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/header_priority.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/hprio_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/incomplete_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/info_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/lprio_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/menu.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/submenu.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/taskmrk_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/theme_category.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/toolbar.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16/warn_tsk.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/ovr16/pinned_ovr.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/bottom_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/bottom_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/invalid_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/invalid_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/left_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/left_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/offscreen_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/offscreen_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/right_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/right_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/stack_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/stack_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/tofastview_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/tofastview_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/top_mask.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer/top_source.bmp -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/errorstate.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/lockedstate.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/progress_error.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/progress_none.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/progress_ok.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/progress_task.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/pview.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/sleeping.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress/waiting.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/export_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/exportdir_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/exportzip_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/import_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/importdir_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/importzip_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/new_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/newfile_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/newfolder_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/newprj_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/saveas_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban/workset_wiz.gif -eclipse/plugins/org.eclipse.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.ui_3.0.0/ui.jar +eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/ctool16/segment_edit.gif +eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/dtool16/segment_edit.gif +eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/etool16/segment_edit.gif +eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/texteditor.jar +eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%%/workbench.jar +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/addtsk_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/backward_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/close_view.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/defaults_ps.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/filter_ps.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/forward_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/gotoobj_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/home_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/linkto_help.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/min_view.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/pin_view.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/progress_rem.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/progress_remall.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/progress_stop.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/refresh_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/selected_mode.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showchild_mode.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showcomplete_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showerr_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showtsk_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/showwarn_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/step_current.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/step_done.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/synced.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/tree_mode.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/up_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16/view_menu.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/copy_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/cut_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/delete_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/export_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/help_contents.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/import_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/paste_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/pin_editor.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/print_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/redo_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/save_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/saveall_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/saveas_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16/undo_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/addtsk_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/backward_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/close_view.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/defaults_ps.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/filter_ps.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/forward_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/gotoobj_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/home_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/linkto_help.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/min_view.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/pin_view.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/progress_rem.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/progress_remall.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/progress_stop.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/refresh_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/selected_mode.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showchild_mode.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showcomplete_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showerr_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showtsk_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/showwarn_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/step_current.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/step_done.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/synced.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/tree_mode.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/up_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16/view_menu.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/copy_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/cut_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/delete_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/export_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/help_contents.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/import_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/paste_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/pin_editor.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/print_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/redo_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/save_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/saveall_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/saveas_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16/undo_edit.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/bkmrk_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/default_persp.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/defaultview_misc.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/filenav_nav.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/new_persp.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/outline_co.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/problems_view.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/prop_ps.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16/tasks_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/activity.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/activity_category.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/add_obj.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/bkmrk_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/blank.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/change_obj.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/complete_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/delete_obj.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/elements_obj.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/error_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/file_obj.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/fldr_obj.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/font.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/header_complete.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/header_priority.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/hprio_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/incomplete_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/info_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/lprio_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/menu.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/submenu.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/taskmrk_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/theme_category.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/toolbar.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16/warn_tsk.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/ovr16/pinned_ovr.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/bottom_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/bottom_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/invalid_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/invalid_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/left_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/left_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/offscreen_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/offscreen_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/right_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/right_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/stack_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/stack_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/tofastview_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/tofastview_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/top_mask.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer/top_source.bmp +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/errorstate.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/lockedstate.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_error.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_none.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_ok.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/progress_task.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/pview.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/sleeping.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress/waiting.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/export_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/exportdir_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/exportzip_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/import_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/importdir_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/importzip_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/new_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/newfile_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/newfolder_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/newprj_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/saveas_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban/workset_wiz.gif +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/ui.jar eclipse/plugins/org.eclipse.update.configurator_3.0.0/.options eclipse/plugins/org.eclipse.update.configurator_3.0.0/about.html eclipse/plugins/org.eclipse.update.configurator_3.0.0/configurator.jar eclipse/plugins/org.eclipse.update.configurator_3.0.0/plugin.properties eclipse/plugins/org.eclipse.update.configurator_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/about.html -eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/fragment.xml -eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/os/freebsd/x86/libupdate.so -eclipse/plugins/org.eclipse.update.core_3.0.0/.options -eclipse/plugins/org.eclipse.update.core_3.0.0/about.html -eclipse/plugins/org.eclipse.update.core_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.update.core_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.update.core_3.0.0/updatecore.jar +eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/fragment.xml +eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os/freebsd/x86/libupdate.so +eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/.options +eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%%/updatecore.jar eclipse/plugins/org.eclipse.update.scheduler_3.0.0/about.html eclipse/plugins/org.eclipse.update.scheduler_3.0.0/plugin.properties eclipse/plugins/org.eclipse.update.scheduler_3.0.0/plugin.xml eclipse/plugins/org.eclipse.update.scheduler_3.0.0/scheduler.jar -eclipse/plugins/org.eclipse.update.ui_3.0.0/about.html -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dlcl16/collapseall.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dlcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dlcl16/show_unconf.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dtool16/config_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dtool16/install_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dtool16/uninstall_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dtool16/update_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/elcl16/collapseall.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/elcl16/hierarchicalLayout.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/elcl16/show_unconf.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/etool16/config_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/etool16/install_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/etool16/uninstall_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/etool16/update_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/eview16/configs.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/eview16/preview.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/forms/def_provider.jpg -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/forms/form_banner.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/forms/form_banner.jpg -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/forms/form_underline.jpg -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/forms/topic.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/app_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/bfolder_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/category_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/config_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/efix2_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/efix_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/error_st_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/esite_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/feature_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/history_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/lsite_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/notinstalled_feature_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/ok_st_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/psite_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/site_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/unconf_feature_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/updates_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/usearch_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16/web_bkmrk_obj.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/add_stat.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/current_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/del_stat.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/error_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/installable_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/linked_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/mod_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/unconfigured_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/updated_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16/warning_co.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/wizban/config_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/wizban/def_wizban.jpg -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/wizban/install_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/wizban/uninstall_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/wizban/update_wiz.gif -eclipse/plugins/org.eclipse.update.ui_3.0.0/plugin.properties -eclipse/plugins/org.eclipse.update.ui_3.0.0/plugin.xml -eclipse/plugins/org.eclipse.update.ui_3.0.0/updateui.jar +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/about.html +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16/collapseall.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16/show_unconf.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/config_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/install_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/uninstall_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16/update_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16/collapseall.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16/hierarchicalLayout.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16/show_unconf.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/config_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/install_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/uninstall_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16/update_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/eview16/configs.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/eview16/preview.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/def_provider.jpg +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/form_banner.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/form_banner.jpg +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/form_underline.jpg +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms/topic.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/app_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/bfolder_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/category_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/config_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/efix2_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/efix_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/error_st_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/esite_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/feature_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/history_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/lsite_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/notinstalled_feature_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/ok_st_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/psite_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/site_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/unconf_feature_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/updates_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/usearch_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16/web_bkmrk_obj.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/add_stat.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/current_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/del_stat.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/error_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/installable_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/linked_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/mod_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/unconfigured_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/updated_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16/warning_co.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/config_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/def_wizban.jpg +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/install_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/uninstall_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban/update_wiz.gif +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/plugin.properties +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/plugin.xml +eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/updateui.jar eclipse/plugins/org.junit_3.8.1/about.html eclipse/plugins/org.junit_3.8.1/junit.jar eclipse/plugins/org.junit_3.8.1/plugin.properties @@ -2828,84 +2829,82 @@ eclipse/readme/readme_eclipse.html eclipse/startup.jar @dirrm eclipse/readme @dirrm eclipse/plugins/org.junit_3.8.1 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/wizban -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/ovr16 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/obj16 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/forms -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/eview16 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/etool16 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/elcl16 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dtool16 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons/dlcl16 -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.update.ui_3.0.0 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/wizban +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/ovr16 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/obj16 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/forms +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/eview16 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/etool16 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/elcl16 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dtool16 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons/dlcl16 +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.update.ui_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.update.scheduler_3.0.0 -@dirrm eclipse/plugins/org.eclipse.update.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/os/linux/x86 -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/os/linux -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/os/freebsd/x86 -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/os/freebsd -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0/os -@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_3.0.0 +@dirrm eclipse/plugins/org.eclipse.update.core_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os/freebsd/x86 +@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os/freebsd +@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/os +@dirrm eclipse/plugins/org.eclipse.update.core.freebsd_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.update.configurator_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/progress -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/pointer -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.workbench_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons/full/ctool16 -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_3.0.0 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/progress +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/pointer +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.ui.workbench_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full/ctool16 +@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.ui.workbench.compatibility_3.0.0 @dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full/eview16 @dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0/icons/full @dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0/icons @dirrm eclipse/plugins/org.eclipse.ui.views_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.presentations.r21_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.intro_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.intro_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/progress -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.ide_3.0.0 +@dirrm eclipse/plugins/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ui.intro_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/progress +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ui.ide_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.ui.forms_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.externaltools_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full/ctool16 -@dirrm eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.editors_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.editors_3.0.0 +@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ui.externaltools_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full/ctool16 +@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ui.editors_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/eview16 @dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/elcl16 @dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full/dlcl16 @@ -2914,417 +2913,417 @@ eclipse/startup.jar @dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons/full @dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0/icons @dirrm eclipse/plugins/org.eclipse.ui.console_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/cview16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full/clcl16 -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_3.0.0 +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/cview16 +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full/clcl16 +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT/WEB-INF @dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps/ROOT @dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/webapps @dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30/conf @dirrm eclipse/plugins/org.eclipse.tomcat_4.1.30 -@dirrm eclipse/plugins/org.eclipse.text_3.0.0 -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/ovr -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/obj -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.team.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/glyphs -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_3.0.0 +@dirrm eclipse/plugins/org.eclipse.text_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/ovr +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/obj +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.team.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/glyphs +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.team.cvs.ui_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.team.cvs.ssh_3.0.0 @dirrm eclipse/plugins/org.eclipse.team.cvs.ssh2_3.0.0 -@dirrm eclipse/plugins/org.eclipse.team.cvs.core_3.0.0 +@dirrm eclipse/plugins/org.eclipse.team.cvs.core_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.team.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.swt_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.swt_3.0.0 -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/ws/%%WS%% -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/ws -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/os/freebsd/x86 -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/os/freebsd -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/os -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_3.0.0 -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.search_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.search_3.0.0 -@dirrm eclipse/plugins/org.eclipse.sdk_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/whatsnew -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/tutorials -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/samples -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/overview -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/swt -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/rootpage -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/obj48 -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/etool -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/dtool -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons/ctool -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/icons -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics/contentpage -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css/graphics -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/css -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0/cheatsheets -@dirrm eclipse/plugins/org.eclipse.platform_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.scheduler_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.update.configurator_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.texteditor_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.texteditor_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.workbench.compatibility_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.views_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.presentations.r21_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.intro_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.ide_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.forms_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.externaltools_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.editors_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.console_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ui.cheatsheets_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.tomcat_4.1.30 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.text_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.ui_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ssh_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.ssh2_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.cvs.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.team.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.search_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.search_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.platform_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi.util_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.osgi.services_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.jface_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.jface.text_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.webapp_3.0.0/WEB-INF/lib -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.webapp_3.0.0/WEB-INF -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.webapp_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.ide_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.base_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.base_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.appserver_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.help.appserver_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.debug.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.variables_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.variables_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.runtime.compatibility_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0/ant_tasks -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.resources_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.filebuffers_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.filebuffers_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.expressions_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.expressions_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.core.boot_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.compare_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.eclipse.ant.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.lucene_1.3.0 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.ant_1.6.1/lib -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src/org.apache.ant_1.6.1 -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0/src -@dirrm eclipse/plugins/org.eclipse.platform.source_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0/src -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.update.core.freebsd_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/ws/%%WS%% -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0/ws -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src/org.eclipse.swt.%%WS%%_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0/src -@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.doc.user_3.0.0 -@dirrm eclipse/plugins/org.eclipse.platform.doc.isv_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics/obj_48 -@dirrm eclipse/plugins/org.eclipse.pde_3.0.0/css/graphics -@dirrm eclipse/plugins/org.eclipse.pde_3.0.0/css -@dirrm eclipse/plugins/org.eclipse.pde_3.0.0/cheatsheets -@dirrm eclipse/plugins/org.eclipse.pde_3.0.0/ant_tasks -@dirrm eclipse/plugins/org.eclipse.pde_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/view/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/view/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/view/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/view -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/propertyPages/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/propertyPages -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/preferences/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/preferences -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/popupMenus/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/popupMenus -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/newWizard/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/newWizard/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/newWizard/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/newWizard -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/multiPageEditor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/multiPageEditor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/multiPageEditor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/multiPageEditor -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/tasks -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/samples -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/reference -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/gettingstarted -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html/concepts -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin/html -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/help -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/helloWorld/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/helloWorld/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/helloWorld/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/helloWorld -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0/editor -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates_3.0 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/view/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/view/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/view/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/view -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/propertyPages/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/propertyPages -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/preferences/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/preferences -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/popupMenus/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/popupMenus -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/newWizard/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/newWizard/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/newWizard/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/newWizard -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/multiPageEditor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/multiPageEditor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/multiPageEditor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/multiPageEditor -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/tasks -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/samples -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/reference -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/gettingstarted -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html/concepts -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin/html -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/help -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/helloWorld/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/helloWorld/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/helloWorld/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/helloWorld -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/java -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/bin/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor/bin -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates/editor -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/templates -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/wizban -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/view16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/ovr16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/obj16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/eview16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/etool16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/elcl16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dtool16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons/dlcl16 -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.pde.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde_3.0.0/ant_tasks -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.junit.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.build_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src/org.eclipse.pde.build_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0/src -@dirrm eclipse/plugins/org.eclipse.pde.source_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/ovr16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/obj16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/eview16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/elcl16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons/dlcl16 -@dirrm eclipse/plugins/org.eclipse.pde.runtime_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.pde.runtime_3.0.0 +@dirrm eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%%/META-INF +@dirrm eclipse/plugins/org.eclipse.swt_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/gtk +@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws +@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd/x86 +@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os/freebsd +@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/os +@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/META-INF +@dirrm eclipse/plugins/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.search_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.sdk_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/whatsnew +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/tutorials +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/samples +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/overview +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/swt +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/rootpage +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/obj48 +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/etool +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/dtool +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons/ctool +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/icons +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics/contentpage +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css/graphics +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/css +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%%/cheatsheets +@dirrm eclipse/plugins/org.eclipse.platform_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.scheduler_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.core_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.update.configurator_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.texteditor_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.workbench.compatibility_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.views_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.presentations.r21_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.intro_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.ide_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.forms_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.externaltools_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.editors_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.console_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ui.cheatsheets_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.tomcat_4.1.30 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.text_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.ssh2_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.cvs.core_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.team.core_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.search_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.platform_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.util_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.osgi.services_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.jface.text_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.webapp_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ui_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.ide_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.base_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.help.appserver_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.debug.core_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.variables_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.runtime.compatibility_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.resources_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.filebuffers_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.expressions_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.core.boot_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.compare_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/schema +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0/lib +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.eclipse.ant.core_3.0.0 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.lucene_1.3.1 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2/lib +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src/org.apache.ant_1.6.2 +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%%/src +@dirrm eclipse/plugins/org.eclipse.platform.source_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%%/src +@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.update.core.freebsd_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws/gtk +@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%%/ws +@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src/org.eclipse.swt.%%WS%%_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%%/src +@dirrm eclipse/plugins/org.eclipse.platform.source.freebsd.%%WS%%.x86_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.doc.user_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.platform.doc.isv_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics/obj_48 +@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css/graphics +@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/css +@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/cheatsheets +@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks +@dirrm eclipse/plugins/org.eclipse.pde_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/view +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/propertyPages/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/propertyPages +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/preferences/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/preferences +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/popupMenus/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/popupMenus +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/newWizard +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/multiPageEditor +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/tasks +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/samples +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/reference +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/gettingstarted +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html/concepts +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin/html +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/help +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/helloWorld +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0/editor +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates_3.0 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/view +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/propertyPages/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/propertyPages +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/preferences/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/preferences +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/popupMenus/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/popupMenus +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/newWizard +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/multiPageEditor +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/tasks +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/samples +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/reference +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/gettingstarted +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html/concepts +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin/html +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/help +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/helloWorld +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/java +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/bin/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor/bin +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates/editor +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/templates +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/wizban +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/view16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/ovr16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/obj16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/eview16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/etool16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/elcl16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dtool16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons/dlcl16 +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.pde.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%%/ant_tasks +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.runtime_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.junit.runtime_3.0.0 +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.core_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%%/lib +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src/org.eclipse.pde.build_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%%/src +@dirrm eclipse/plugins/org.eclipse.pde.source_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/ovr16 +@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/obj16 +@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/eview16 +@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/elcl16 +@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons/dlcl16 +@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.pde.runtime_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.pde.junit.runtime_3.0.0 @dirrm eclipse/plugins/org.eclipse.pde.doc.user_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.core_3.0.0/dtd -@dirrm eclipse/plugins/org.eclipse.pde.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/templates/plugin -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/templates/fragment -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/templates -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/scripts -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/notes -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/rootfiles/readme -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/rootfiles -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/feature/builder -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/feature -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.pde.build_3.0.0 -@dirrm eclipse/plugins/org.eclipse.osgi_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.osgi_3.0.0 +@dirrm eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%%/dtd +@dirrm eclipse/plugins/org.eclipse.pde.core_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/plugin +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates/fragment +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/templates +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/scripts +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/notes +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/lib +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles/readme +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/rootfiles +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature/builder +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/feature +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%%/META-INF +@dirrm eclipse/plugins/org.eclipse.pde.build_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%%/META-INF +@dirrm eclipse/plugins/org.eclipse.osgi_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.osgi.util_3.0.0/META-INF @dirrm eclipse/plugins/org.eclipse.osgi.util_3.0.0 @dirrm eclipse/plugins/org.eclipse.osgi.services_3.0.0/META-INF @dirrm eclipse/plugins/org.eclipse.osgi.services_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ltk.core.refactoring_3.0.0 +@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.jface_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jface.text_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics/obj_48 -@dirrm eclipse/plugins/org.eclipse.jdt_3.0.0/css/graphics -@dirrm eclipse/plugins/org.eclipse.jdt_3.0.0/css -@dirrm eclipse/plugins/org.eclipse.jdt_3.0.0/cheatsheets -@dirrm eclipse/plugins/org.eclipse.jdt_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/templates -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.jdt.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.junit_3.8.1 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.ui.refactoring_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.ui.refactoring_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ltk.core.refactoring_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.launching_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.junit.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug.ui_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.debug.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0/schema -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.jdt.core_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ant.ui_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src/org.eclipse.ant.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0/src -@dirrm eclipse/plugins/org.eclipse.jdt.source_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.launching_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.jdt.launching_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/prgss -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.jdt.junit_3.0.0 +@dirrm eclipse/plugins/org.eclipse.jface.text_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics/obj_48 +@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css/graphics +@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/css +@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%%/cheatsheets +@dirrm eclipse/plugins/org.eclipse.jdt_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/templates +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.jdt.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.junit_3.8.1 +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.ui.refactoring_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ltk.core.refactoring_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.launching_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.junit.runtime_3.0.0 +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%%/schema +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.jdt.core_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src/org.eclipse.ant.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%%/src +@dirrm eclipse/plugins/org.eclipse.jdt.source_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%%/lib +@dirrm eclipse/plugins/org.eclipse.jdt.launching_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/prgss +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.jdt.junit_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.jdt.junit.runtime_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.doc.user_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.doc.isv_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.debug_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.jdt.core_3.0.0 +@dirrm eclipse/plugins/org.eclipse.jdt.doc.user_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.doc.isv_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.debug_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.jdt.debug.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.jdt.core_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.help_3.0.0/dtd @dirrm eclipse/plugins/org.eclipse.help_3.0.0 -@dirrm eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic/images -@dirrm eclipse/plugins/org.eclipse.help.webapp_3.0.0/basic -@dirrm eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced/images -@dirrm eclipse/plugins/org.eclipse.help.webapp_3.0.0/advanced -@dirrm eclipse/plugins/org.eclipse.help.webapp_3.0.0/WEB-INF/lib -@dirrm eclipse/plugins/org.eclipse.help.webapp_3.0.0/WEB-INF -@dirrm eclipse/plugins/org.eclipse.help.webapp_3.0.0 +@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic/images +@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/basic +@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced/images +@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/advanced +@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF/lib +@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%%/WEB-INF +@dirrm eclipse/plugins/org.eclipse.help.webapp_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.help.ui_3.0.0/icons @dirrm eclipse/plugins/org.eclipse.help.ui_3.0.0 @dirrm eclipse/plugins/org.eclipse.help.ide_3.0.0/icons @dirrm eclipse/plugins/org.eclipse.help.ide_3.0.0 -@dirrm eclipse/plugins/org.eclipse.help.base_3.0.0/doc -@dirrm eclipse/plugins/org.eclipse.help.base_3.0.0 +@dirrm eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%%/doc +@dirrm eclipse/plugins/org.eclipse.help.base_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.help.appserver_3.0.0 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/etool16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dtool16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.debug.ui_3.0.0 -@dirrm eclipse/plugins/org.eclipse.debug.core_3.0.0 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/etool16 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dtool16 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.debug.ui_%%RELEASEVERSION%% +@dirrm eclipse/plugins/org.eclipse.debug.core_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.core.variables_3.0.0 -@dirrm eclipse/plugins/org.eclipse.core.runtime_3.0.0/META-INF -@dirrm eclipse/plugins/org.eclipse.core.runtime_3.0.0 +@dirrm eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%%/META-INF +@dirrm eclipse/plugins/org.eclipse.core.runtime_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0/META-INF @dirrm eclipse/plugins/org.eclipse.core.runtime.compatibility_3.0.0 -@dirrm eclipse/plugins/org.eclipse.core.resources_3.0.0/ant_tasks -@dirrm eclipse/plugins/org.eclipse.core.resources_3.0.0 +@dirrm eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%%/ant_tasks +@dirrm eclipse/plugins/org.eclipse.core.resources_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/linux/x86 @dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/linux @dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/freebsd/x86 @dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os/freebsd @dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0/os @dirrm eclipse/plugins/org.eclipse.core.resources.freebsd_3.0.0 -@dirrm eclipse/plugins/org.eclipse.core.filebuffers_3.0.0 +@dirrm eclipse/plugins/org.eclipse.core.filebuffers_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.core.expressions_3.0.0 @dirrm eclipse/plugins/org.eclipse.core.boot_3.0.0 @dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full/wizban @@ -3338,30 +3337,30 @@ eclipse/startup.jar @dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons/full @dirrm eclipse/plugins/org.eclipse.compare_3.0.0/icons @dirrm eclipse/plugins/org.eclipse.compare_3.0.0 -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/templates -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/lib -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/wizban -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/ovr16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/obj16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/eview16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/elcl16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full/dlcl16 -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons/full -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0/icons -@dirrm eclipse/plugins/org.eclipse.ant.ui_3.0.0 +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/templates +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/lib +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/wizban +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/ovr16 +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/obj16 +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/eview16 +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/elcl16 +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full/dlcl16 +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons/full +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%%/icons +@dirrm eclipse/plugins/org.eclipse.ant.ui_%%RELEASEVERSION%% @dirrm eclipse/plugins/org.eclipse.ant.core_3.0.0/lib @dirrm eclipse/plugins/org.eclipse.ant.core_3.0.0 -@dirrm eclipse/plugins/org.apache.lucene_1.3.0 -@dirrm eclipse/plugins/org.apache.ant_1.6.1/lib -@dirrm eclipse/plugins/org.apache.ant_1.6.1/bin -@dirrm eclipse/plugins/org.apache.ant_1.6.1 +@dirrm eclipse/plugins/org.apache.lucene_1.3.1 +@dirrm eclipse/plugins/org.apache.ant_1.6.2/lib +@dirrm eclipse/plugins/org.apache.ant_1.6.2/bin +@dirrm eclipse/plugins/org.apache.ant_1.6.2 @dirrm eclipse/plugins -@dirrm eclipse/features/org.eclipse.sdk_3.0.0 -@dirrm eclipse/features/org.eclipse.platform_3.0.0 -@dirrm eclipse/features/org.eclipse.platform.source_3.0.0 -@dirrm eclipse/features/org.eclipse.pde_3.0.0 -@dirrm eclipse/features/org.eclipse.jdt_3.0.0 -@dirrm eclipse/features/org.eclipse.jdt.source_3.0.0 +@dirrm eclipse/features/org.eclipse.sdk_%%RELEASEVERSION%% +@dirrm eclipse/features/org.eclipse.platform_%%RELEASEVERSION%% +@dirrm eclipse/features/org.eclipse.platform.source_%%RELEASEVERSION%% +@dirrm eclipse/features/org.eclipse.pde_%%RELEASEVERSION%% +@dirrm eclipse/features/org.eclipse.jdt_%%RELEASEVERSION%% +@dirrm eclipse/features/org.eclipse.jdt.source_%%RELEASEVERSION%% @dirrm eclipse/features @dirrm eclipse/configuration @dirrm eclipse |