Using Eclipse Project 3.6 PDF
Using Eclipse Project 3.6 PDF
Release 3.6.2 Last revised February 10, 2011 This software is OSI Certified Open Source Software. OSI Certified is a certification mark of the Open Source Initiative. 1. Target Operating Environments 2. Compatibility with Previous Releases 3. Known Issues 4. Running Eclipse 5. Upgrading a Workspace from a Previous Release 6. Interoperability with Previous Releases
x86 64-bit
Sun Java 5 Update 22 IBM Java 5 SR11 Sun Java 6 Update 17 Sun Java 5 Update 22 IBM Java 5 SR11 Oracle JRockit 27.6.5 Sun Java 5 Update 22 IBM Java 5 SR11 Sun Java 6 Update 17 Sun Java 5 Update 22 IBM Java 5 SR11 Oracle JRockit 27.6.5 IBM Java 5 SR11 Sun Java 5 Update 22 IBM Java 5 SR11 Sun Java 5 Update 22 IBM Java 5 SR11 IBM Java 5 SR11 Sun Java 5 Update 22 IBM Java 5 SR11 Sun Java 5 Update 22 GTK GTK GTK
GTK
4.0
x86 64-bit Power 64-bit x86 32-bit x86 64-bit x86 32-bit SPARC 32-bit ia64 32-bit Power 32-bit Universal
Ubuntu Long Term Support Sun Solaris HP-UX IBM AIX Apple Mac OS X
HP-UX Java 5 Update 18 Motif 2.1 IBM Java 5 SR11 Motif 2.1 Carbon Cocoa
As stated above, we expect that Eclipse works fine on other current Java VM and OS versions but we cannot flag these as reference platforms without significant community support for testing them. The Eclipse SDK is designed as the basis for internationalized products. The user interface elements provided by the Eclipse SDK components, including dialogs and error messages, are externalized. The English strings are provided as the default resource bundles. Latin-1 and DBCS locales are supported by the Eclipse SDK on all reference platforms; BIDI locales are supported by the Eclipse SDK everywhere but on Motif. The Eclipse SDK supports GB 18030 (level 1), the Chinese code page standard, on Windows XP and 2000, Linux/GTK and the Macintosh. German and Japanese locales are tested.
3. Known Issues
3.1 General problems 3.1.1 Startup 3.1.2 GCJ 3.1.3 64-bit Java HotSpot(TM) VM 3.2 Platform 3.2.1 Core 3.2.2 Ant
3.2.3 User Assistance 3.2.4 UI 3.2.5 Text 3.2.6 SWT 3.2.7 Team and CVS 3.2.8 Install/Update 3.2.9 Debug 3.2.10 Compare 3.3 Java development tools (JDT) 3.4 Plug-in Development Environment (PDE) Note: Bug numbers refer to the Eclipse project bug database at http://bugs.eclipse.org/bugs/
If this occurs, start Eclipse by specifying a -vm argument, either specify the path to a java vm or use: eclipse -vm `java-config --java` (bug 176021) Eclipse must be installed to a clean directory and not installed over top of a previous installation. If you have done this then please re-install to a new directory. If your workspace is in a child directory of your old installation directory, then see the instructions below on "Upgrading Workspace from a Previous Release". Java sometimes has difficulty detecting whether a file system is writable. In particular, the method java.io.File.canWrite() appears to return true in unexpected cases (e.g., using Windows drive sharing where the share is a read-only Samba drive). The Eclipse runtime generally needs a writable configuration area and as a result of this problem, may erroneously detect the current configuration location as writable. The net result is that Eclipse will fail to start and depending on the circumstances, may fail to write a log file with any details. To work around this, we suggest users experiencing this problem set their configuration area explicitly using the -configuration command line argument. (bug 67719) Invalid characters in install directory prevents Eclipse from starting Eclipse will fail to launch if installed in a directory whose path contains certain invalid characters, including :%#<>"!. The workaround is to install Eclipse in a directory whose path does not contain invalid characters. (bugs 3109 and 17281) Hanging during class loading when out of permanent generation memory
The Sun VM may hang indefinitely during class loading if it runs out of permanent generation memory. This will cause CPU usage to stay at 100% until the process is ended. See the section Running Eclipse for details on addressing this VM problem.
If Eclipse does start, one can check which runtime environment is being used to run Eclipse by going to Help > About Eclipse SDK > Installation Details > Configuration. The About dialog itself can also provide other information, the build identifier can be of particular interest as it is tagged by some distributions. This allows the user to identify whether Eclipse was downloaded through the distribution's package management system or directly from the eclipse.org web site. Eg: Build id: M20070212-1330 (Ubuntu version: 3.2.2-0ubuntu3) The two most common workarounds are: download the Eclipse binary from eclipse.org directly run Eclipse using an alternate Java runtime environment To download Eclipse, try one of the links below: http://www.eclipse.org/downloads/ http://download.eclipse.org/eclipse/downloads/ It is imperative that 64-bit builds are downloaded and used if a 64-bit Java runtime environment has been installed. Below are two sample tarball names of version 3.6.0 of the Eclipse SDK packaged for 32-bit and 64-bit processors.
eclipse-SDK-3.6-linux-gtk.tar.gz (32-bit) eclipse-SDK-3.6-linux-gtk-x86_64.tar.gz (64-bit)
To run Eclipse with an alternate Java runtime environment, the path to the Java virtual machine's binary must be identified. With an Eclipse installation from the distribution, altering the $PATH variable to include the path to the alternate Java runtime environment is often not enough as the Eclipse that Linux distributions package often performs a scan internally to pick up GCJ by itself whilst ignoring what's on the $PATH. An example of the terminal's output is shown below:
searching for compatible vm...
Once the path to the virtual machine's binary has been identified, try running Eclipse with the following command:
./eclipse -vm /path/to/jre/bin/java
If this seems to solve the problem, it is likely that the problem really was related to the use of GCJ as the Java runtime for running Eclipse. The eclipse.ini file located within Eclipse's folder can be altered to automatically pass this argument to Eclipse at startup. An example of its content is presented below:
-showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m -vm /opt/sun-jdk-1.6.0.02/bin/java -vmargs -Xms40m -Xmx512m
Note that every argument must be on its own line. More information about the eclipse.ini file can be found at http://wiki.eclipse.org/Eclipse.ini. If problems persists after downloading an installation of Eclipse from eclipse.org and using a supported Java runtime environment (a list of which may be found above), you can seek further assistance through the newsgroups, the IRC channel, and/or bugzilla.
This VM argument can be placed in the eclipse.ini file after the -vmargs line like the following:
-startup plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.0.200.v20090306-1900 --launcher.library plugins/org.eclipse.equinox.launcher_1.0.200.v20090429-1630.jar -showsplash org.eclipse.platform --launcher.XXMaxPermSize
There have been reports of other classes that cause the compiler to crash. If all else fails you can disable the compiler with the VM arg "-Xint".
Deadlock creating executable extension in Plugin.startup If Plugin.startup code is too complex and performs tasks such as creating an executable extension, a deadlock situation can be created. Only simple bookkeeping tasks should be performed in Plugin.startup code. (bug 5875) Potential Problems Converting Plug-in Manifests If your plug-in ships with a plug-in manifest and not an OSGi bundle manifest, is shipped as a JAR file, and contains a nested JAR file then there may be problems in the automatic generation of the bundle manifest file. The packages defined in the nested JAR may not be exported correctly in the Export-packages bundle manifest header. To work around this you should ship your plug-in with a bundle manifest. (bug 97689) Location for Debug Options File on Mac OS If you are running in debug mode on Mac OS, the default location for the .options file is inside the application bundle in the Eclipse.app/Contents/MacOS directory (like the eclipse.ini). (bug 88782) Issues with JNI that use FindClass There may be issues when using a JNI implementation that uses FindClass in a function where the JNIEnv pointer is not available, such as in a C callback (bug 125250). The reason is that FindClass, in this case, uses the application class loader to find the class. If the desired class is in the classpath used for the application classloader (e.g. defined by the VM argument -cp <classpath>), as it would typically be in a stand-alone application, there is no problem. However, under Eclipse, the application classloader does not have access to classes contained in plug-ins. Eclipse uses its own class loader to find classes contained in plug-ins. The proper plug-in class loader is used by FindClass in JNI functions which are passed the JNIEnv pointer, but not when you have to use AttachCurrentThread to get the JNIEnv pointer. In this case the application classloader is used. For example, the following will fail because AttachCurrentThread is used to get the JNIEnv pointer:
static JavaVM* jvm; // Global variable
void myCallback(void) { JNIEnv* env; jvm->AttachCurrentThread((void**)&env, NULL); // Fails if some/class is not in the application classloader: jclass cls = env->FindClass("some/class"); jmethodID methodID = env->GetMethodID(cls, "methodName", "(Ljava/lang/String;)V or whatever signature"); env->CallVoidMethod(callback, methodID, ...); jvm->DetachCurrentThread(); } }
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) { ... // Store the JavaVM pointer jvm = vm;
// Find the class and store the method ID // Will use the class loader that loaded the JNI library jclass cls = env->FindClass(className"some/class"); if(!cls) goto ERR; mid = env->GetMethodID(cls, "methodName", "(Ljava/lang/String;)V or whatever signature"); if(!mid) goto ERR; ... } void myCallback(void) { JNIEnv* env; jvm->AttachCurrentThread((void**)&env, NULL); env->CallVoidMethod(callback, mid, ...); // Handle error ... jvm->DetachCurrentThread(); } }
same as making use of the <input> task, which works correctly within Eclipse. (bug 21748) "version" property is always set when running Ant in the same VM as Eclipse The Xalan libraries set system properties including a version property. These get set as properties within the Ant build and therefore the "version" property cannot be set within an Ant buildfile due to the immutable nature of Ant properties. This property will always be set to "2.4.1" for Ant builds in the same VM as Eclipse. (bug 45717) XDoclet support from within Eclipse Since there are differences when running Ant from the commandline and within Eclipse, some extra steps may be needed to have XDoclet support function correctly within Eclipse. Problems may occur creating XDoclet subtasks. The workarounds and full discussion can be found in bug report. (bug 37070) Ant Editor code completion based on Ant 1.6.1 Code completion provided by the Ant editor does not respect the user-specified version of org.eclipse.ant.core plug-in or ANT_HOME. Code completion proposals are mostly based on Ant 1.6.1 with some updates to Ant 1.6.5 (bug 30886) Eclipse can hang due to implementation of the Ant <property> task (Windows 9X only) On Windows 9X, using:<property environment="env"/> will cause Eclipse to hang if the build occurs in the same VM as Eclipse. Running the build in a separate VM will hang the build but not Eclipse. (bug 44196) Setting build loggers not supported when debugging Ant builds When debugging Ant builds within Eclipse, setting -logger as a program argument will be ignored. Renaming an External Tool builder set to run during auto-build will cause errors If you rename an existing external tool builder that is configured to run during auto-builds, you will get the following error: Errors during build. Errors running builder "Integrated External Tool Builder" on project <PROJECT_NAME>. The builder launch configuration could not be found. The workaround is to first disable the builder for auto-builds and then rename the builder. (bug 118294) Slow typing/saving of the Ant editor with imports that define numerous macrodefs The Ant editor is slow on saving with buildfiles that have <import> declarations of buildfiles that have numerous <macrodef>s. See bugs 92640 and 125117 for possible workarounds Failure to run Ant builds on non-Windows platforms if Eclipse installed in location with spaces in the path Due to a bug in Ant 1.7.0, Ant builds will fail with an IllegalArgumentException if the Eclipse installation is in a location with spaces in the path. Embedded usage of Ant builds, such as plug-in export will also fail. See bug 187993 for possible workarounds
XP, it is recommended to set High Contrast as follows: Right click the desktop, chose properties, select Windows Classic style from the Windows and buttons drop down on the Appearance tab, and choose your scheme (for example High Contrast Black) from Color Scheme drop down. (bug 28609)
3.2.4 Platform - UI
High contrast settings Eclipse was tested for High Contrast using 1152 x 864 resolution in Windows XP High Contrast mode. You can select this mode by selecting Accessibility Options > Display > Use High Contrast from the Windows XP Control Panel menu. Default text file encoding may be detected incorrectly (Windows XP/2000 only) Note: the bug report associated with this problem has been fixed. If you run Eclipse with JDK 1.5 or greater you should not have to use the workaround stated below any longer. However, the problem still exists when running Eclipse with JDK 1.4.x or lower, so in this case the workaround is still required . The "Text file encoding" value displayed in the Preferences dialog under "Editors" may be wrong on platforms running Windows XP (or 2000) when the user locale and system locale differ. Example of the manifestation of the bug: A Japanese user using Japanese Windows 2000 works in New York, United States. The user has selected English (United States) as the user locale. The "Text file encoding" value displayed by Eclipse is incorrect: "Cp1252" (English). It should display the system locale "MS932" (Japanese). Workaround: The user can modify the user locale so that user locale and system locale are identical. In the example above, this means the user should set Japanese as the user locale. Then restart Eclipse. The "Text file encoding" value will then be correct: "MS932" (Japanese). For Windows XP: To check the system locale: Open the Control Panel. Go to Regional and Language Options. Switch to the Advanced tab. The system locale is specified in "Language for non-Unicode programs". To change the user locale: Open the Control Panel. Go to Regional and Language Options. The user locale can be modified by changing the language in "Standards and formats". For Windows 2000: To check the system locale: Open the Control Panel. Go to Regional Options. Look up the items in the General tab, inside the "Language settings for the system" group. The system locale is the item marked as (Default). To change the user locale: Open the Control Panel. Go to Regional Options. The user locale can be modified by changing the location in "Settings for the current user". (bug 20641) Dirty state not tracked properly for OLE documents (Windows only) The dirty state for an OLE document is not updated properly. This causes Eclipse to prompt to save the contents of the editor when the document is closed, even if the contents have already been saved. (bug 2564)
OLE document crashes can cause Eclipse to also crash (Windows only) If an OLE document crashes, Eclipse can crash, or the workbench menus can become inconsistent. 2.1 Presentation based workspaces incorrectly get new Min/Max behavior Workspaces that are currently using the Eclipse 2.1 Presentation will incorrectly 'inherit' the new min/max behavior when opened with 3.3. Workaround: 1. Go to the 'Preferences -> Appearance' page, change the current presentation to 'Default' and select apply 2. Change it back to the 2.1 Presentation, select 'OK' and 'Yes' to the restart prompt When the workbench re-opens the old min/max behavior will be restored. Toolbars only containing contributed controls exhibit display errors on Mac/Linux Currently there is no way on the Max or Linux platforms to define the height for controls contributed to toolbars, nor will those platforms respect the size returned by the control's computeSize method. If you encounter this issue there is currently no truly viable workaround. (bug 183003)
Some versions of RedHat Linux such as Fedora Core 3 and Enterprise Linux WS release 4 use a new technology called IIIM (Intranet/Internet Input Method Framework) to replace the old XIM (X input method). When running on these new systems, Eclipse will crash if you attempt to enter any DBCS character. The workaround is to use a XIM based input method such as chinput. This problem may be fixed in newer releases of RedHat. (bug 89722) Eclipse does not start on Linux-Motif with Xinerama and a UTF-8 locale The Linux-motif build of Eclipse does not launch properly when run on a computer with Xinerama (provides support for dual head monitors) and a UTF-8 locale. The workaround for this problem is to change the locale to a non-UTF-8 value, or to disable Xinerama. (bug 38843) Eclipse hangs when pasting from an unresponsive application (GTK only) If the application that is supplying the clipboard material is unresponsive, the paste operation hangs Eclipse for several minutes. This situation can be encountered when copying from an Eclipse target workbench, suspending the target workbench at a breakpoint and pasting into the hosting Eclipse workbench. (bug 44915) Unable to drag data between applications in simplified Chinese locale (Motif only) When configured for the simplified Chinese locale, it is not possible to drag data between applications running on the Motif window system. This is a known limitation of the Open Motif library. (bug 29777) Crash when attempting to launch file browser (AIX Motif only) There is a known AIX graphics bug affecting certain levels of AIX releases. Ensure that the AIX install includes the necessary service updates as described in the "Install notes/requirements for Eclipse on AIX" attachment to Eclipse bug report number 34524. Available colors on 8-bit Linux (Linux only) Typically, in Gnome Linux installs running with 8-bit visuals (i.e. 256 color mode), before the Eclipse application is started there are no free colors. This may mean that Eclipse is unable to allocate the default widget background color, causing it to display a white background. The functionality, however, is otherwise unaffected. IME-related crash (Linux Motif only) When using Linux Motif and GB18030 IME "chinput", Eclipse can crash if the IME client window is left open when the parent window is disposed. (bug 32045) IME conversion problem (Solaris GTK only) When typing Japanese text, the conversion to Kanji must be done one ideogram at a time. (bug 226636) gtk_init_check and X11 socket failure when using the IBM 1.4.2 JRE (GTK only) Under RHEL 3.1 with the IBM 1.4.2 JRE and a large number of plugins, Eclipse may fail to launch with an exception from gtk_init_check along with this error:
_X11TransSocketOpen: socket() failed for local _X11TransSocketOpenCOTSClient: Unable to open socket for local
A workaround is to set the environment variable JAVA_HIGH_ZIPFDS to a value of 500 before starting Eclipse. (bug 106396) Key bindings can stop working on Debian (GTK+ only) On some versions of Debian, Eclipse key bindings may stop working. In this context the only way to make the key bindings work again is to restart Eclipse. The problem is that a focus issue exists in GTK+ 2.6.7 and earlier, for which SWT has a workaround. This workaround is incompatible with the GTK+ 2.6.7 fix, so a GTK+ version check is done at runtime to determine whether the workaround should be used or not. However, Debian backported the GTK+ focus fix into their libgtk+2.0 (2.6.4-2) package, so the SWT workaround and GTK+ fix are both incorrectly applied in this context. To work around this problem, either get the Debian unstable version of GTK+, compile your own GTK+, or hack SWT's Shell.gtk_realize(int) and change the version that it checks. See SWT bug 107013 and GTK+ bug 109246 for more information. Typing in an editor crashes with IBM 1.5 VM (Linux GTK PPC only) When running on the IBM Java 5.0 VM, Eclipse crashes while the user is typing in an editor. If using this VM you must disable the JIT with the -Xnojit vm argument to avoid the crashes (see bug 116730). The command line for launching Eclipse with this vm should be:
eclipse -vmargs -Dosgi.locking=none -Xnojit
Eclipse won't start (Linux GTK PPC only) Eclipse fails to create a lock file with reason "No locks available". To launch eclipse you must disable file locking using the osgi.locking property. For example, you could launch eclipse as follows:
eclipse -vmargs -Dosgi.locking=none
SWT for Carbon cannot be used with Mac OS X JRE version 1.6 (Mac OS X 10.5 only) On Leopard (Mac OS X 10.5), JDK version 1.6 assumes that pointers have a size of 64 bits, but SWT's Carbon port only uses 32-bit pointers, so SWT and Eclipse cannot be used on Leopard with JDK version 1.6. The workaround is to use the Cocoa version of SWT or an earlier supported version of the Mac OS X JDK. Snow Leopard (Mac OS X 10.6) has both a 32-bit and 64-bit version of JDK 1.6, so this restriction does not apply on that version of the operating system. Strings may be truncated or incorrectly wrapped on RHEL5 (Linux GTK only) Strings on wrapping Controls may not appear correctly in some locales on RHEL5 as a result of a bug in Pango version 1.14.x. This problem can be fixed by upgrading the installed Pango library to a version that is newer than 1.14.x. (bug 231951) Block Selection functionality provided by StyledText is not BIDI aware
When the orientation of characters under the left and right edges of the block selection rectangle are not the same, the actual selection ranges (in memory) differ from the visual representation of the selection. (bug 277929) Older versions of some Windows screen readers no longer work with Eclipse JAWS versions 8 and 9 and Window-Eyes version 6 no longer work well with Eclipse and other SWT applications. Window-Eyes 6 will cause Eclipse to crash, and JAWS 8 and 9 can cause SWT applications to crash. This happens because IAccessible2 support was added to SWT for Eclipse 3.6, but these older screen reader versions contain partial implementations of IAccessible2 that do not follow the current IAccessible2 specification. The workaround for these cases is to specify Java property org.eclipse.swt.accessibility.UseIA2 with value false, which will instruct SWT to not attempt to use IA2 interfaces. An easy way to set this property is to specify VM argument -Dorg.eclipse.swt.accessibility.UseIA2=false when launching Eclipse or your SWT application. (bug 313182)
There is a bug in the CVS server related to some compression levels. If you get this error, changing the compression level on the CVS preference page may help. (bug 15724) "Unknown response" error using ext connection method There are a few situations that can result in an "Unknown response" error messages when using the ext connection method. One situation involves using an external communications client (e.g. rsh or ssh) that adds CRs to the communications channel (bug 21180). Another involves Eclipse not properly reading the stderr output of the external communications tool. (bug 11633) A disabled CVS capability may not be auto-enabled in existing workspaces New in 3.0 is the ability to disable capabilities and the CVS support in Eclipse can be disabled. However, for backwards compatibility the CVS capability is auto-enabled in existing workspaces that already contain CVS projects. The auto-enabling function may not run if the team support plugin is not loaded at startup. (bug 66977) Builder output files may appear as changed When folders containing build output are shared they may get improperly marked as dirty when build output is generated. Enabling GNOME proxy support GNOME applications can make use of proxy settings defined in this environment. If set, Eclipse will use it prior to proxy settings declared using env variables. This feature is disabled by default, to enable it launch Eclipse with "-Dorg.eclipse.core.net.enableGnome" switch. That is,
eclipse -Dorg.eclipse.core.net.enableGnome
Connecting to untrusted sites using https You cannot install or update software from a site using https whose certificate is not chained to a trusted root certificate in your local certificate store. This typically means the server is using a self-signed certificate, or a certificate authenticated by an unknown third party. Extension location is lost if the install path changes A previously configured extension location may be temporarily removed if the install is moved or mounted under a different path. This only happens when the link file that configures the extension location uses a
relative path that points to a directory under the Eclipse install. On a second startup using the same install path, the extension location is added again (bug 95403). Feature patches can only be installed from Eclipse 3.4-based update sites Feature patches can only be installed from update sites designed for Eclipse 3.4 or greater. Specifically, the update site must have the necessary metadata for Equinox p2 (a content.xml or content.jar file). This data can be generated by building an update site using Eclipse 3.4 or newer, or running the p2 metadata generator on an update site built using earlier versions of the Eclipse SDK. See the help topic Generating p2 metadata for more details on running the p2 metadata generator (bug 244483).
This will be fixed in a future release (bug 233967). Searching for constant field references Search does not find references to constant fields inside binaries because the Java Language Specification mandates that constant field values be inlined in the class file's byte codes, leaving no trace of a field reference. (bug 12044) Cut, copy, paste not working for linked resources in views showing Java elements The cut, copy, and paste actions do not work for linked files and folders appearing in views that show Java elements, including the Package Explorer. The workaround is to use these actions from the Navigator view instead. (bug 34568) Java working sets not working correctly for elements from JRE system library container Applying a working set consisting entirely of elements from the JRE System library container as a filter to the
packages view might result in an empty Package Explorer. (bug 30442) Breakpoints unreliable running Sun 1.6.0_14 Developers debugging applications on Sun's 1.6.0_14 virtual machine should be aware that breakpoints are unreliable (i.e. do not always suspend execution). The problem occurs on Windows and Linux platforms. This is an issue with the VM and not with Eclipse. The workaround is to use the -XX:+UseParallelGC VM option. (bug 279137). Side effects of Step into Selection and Run to Line The actions "Step into Selection" and "Run to Line" optimistically set breakpoints on the line the user has chosen to step into or run to. However, the debugger can not determine if or when execution will ever reach the chosen line. The breakpoints set by the underlying implementation are not visible to the user and can cause execution to suspend unexpectedly at a later time, when the associated line is actually executed. (bug 51507) Default locale initialization incorrect The default locale is generally initialized from the settings in the operating system when a target VM is launched. However, when using javaw.exe on JDK1.4.2, Windows XP, the default locale is incorrectly initialized to en_US, no matter what the operating system settings are. (bug 65945) Some refactoring script operations fail with Sun 6.0 JREs Creating and applying refactoring scripts sometimes fails with Sun 6.0 JREs due to a bug in the XML parser that is shipped with those VMs. A workaround is to use a J2SE 5.0 VM or an IBM 6.0 VM. Another workaround is to replace the XML parser using the Java Endorsed Standards Override Mechanism: 1. Get original versions of xml-apis.jar, xercesImpl.jar, xalan.jar, and serializer.jar from Apache, e.g. xalan-j_2_7_1-bin.zip from here. 2. Unpack the archive and copy the 4 JARs into <path-to-your-JavaSE6.0-install>\jre \lib\endorsed\. (see Sun bug http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6760982, Eclipse bug 262820) Suspend on uncaught exception overrides exception breakpoint location filters Exception breakpoints can be configured with location filters (inclusive and exclusive). When an unchecked exception is configured to not suspend execution in a specific class, execution will still suspend when the user preference to suspend on uncaught exceptions is on. (bug 66770) Running Java programs with non-Latin-1 characters in package or class names You get a java.lang.NoClassDefFoundError when running Java programs with non-Latin characters in the package or class names. The workaround is to package the class files as a JAR file and run the program out of the JAR and not from the file system directly. (bug 4181) Cannot run or debug class in a project with GB18030 characters in project name
Most class libraries do not properly support the creation of a system process (via java.lang.Runtime.exec(...)) when the specified command line contains GB18030 characters. This limitation means the debugger cannot launch applications when the command line it generates contains GB18030 characters. (bug 32206) Cannot detect installed JRE with GB18030 characters in path name Automatic JRE detection fails when the JRE is stored in a directory containing GB18030 characters in its name. (bug 33844) Cannot generate Javadoc for packages with GB18030 characters in the name Most class libraries do not properly support the creation of a system process (via java.lang.Runtime.exec(...)) when the specified command line contains GB18030 characters. Since Javadoc is created using the Javadoc executable provided with the JDK, generating Javadoc fails if the package or class name contains GB18030 characters. (bug 32215) Unable to debug stack overflows If a debug session suspends on a java.lang.StackOverflowError exception (due to an exception breakpoint), the debugger may not be able to retrieve any debug information from the target JVM. As well, the debugger may not be able to reliably interact with the target JVM past this point. (bug 19217) Evaluation limitation The debugger uses threads in the target JVM to perform evaluations (both explicit evaluations that the user requests, and implicit evaluations such as toString() invocations in the Variables view). The Java Debug Interface (JDI) requires that the thread in which an evaluation is performed be suspended by a user event (that is, a breakpoint or step request). Evaluations cannot be performed on threads suspended by the suspend action. As well, when a breakpoint is configured to suspend the JVM rather than just the individual thread, the threads which did not encounter the breakpoint are not in a valid state to perform an evaluation. When an evaluation is attempted in a thread that is not in a valid state to perform an evaluation, an error message will appear to the effect of "Thread must be suspended by step or breakpoint to perform method invocation". (bug 34440) Missing debug attributes The debugger requires that class files be compiled with debug attributes if it is to be able to display line numbers and local variables. Quite often, class libraries (for example, "rt.jar") are compiled without complete debug attributes, and thus local variables and method arguments for those classes are not visible in the debugger. Using Hot Code Replace Hot code replace is supported on JDK 1.4.x VMs, and IBM J9 VMs. The debugger will attempt to replace all class files that change in the workspace as the user edits and builds source code. However, hot code replace is limited to changes that a particular virtual machine implementation supports. For example, changes within existing methods may be supported, but the addition or removal of members may not be. Note that hot code replace and stepping on JDK 1.4.0 VMs was unreliable. The underlying VM problems
were fixed in JDK 1.4.1, and later. Scrapbook Setting a breakpoint inside a scrapbook page is not supported. When a snippet is run in the scrapbook which directly or indirectly calls System.exit(int), the evaluation cannot be completed, and will result in a stack trace for a com.sun.jdi.VMDisconnectedException being displayed in the scrapbook editor. Terminating a scrapbook page while it is performing an evaluation results in a com.sun.jdi.VMDisconnectedException being displayed in the scrapbook editor. Debugging over slow connections A global Java debug preference specifies the debugger timeout, which is the maximum amount of time the debugger waits for a response from the target VM after making a request of that VM. Slow connections may require that this value be increased. The timeout value can be edited from the Java > Debug preference page. Changing the timeout value only affects subsequently launched VM, not VMs that are already running. Updating of inspected values When inspecting the result of an evaluated expression in the debugger, it is important to note that the result displayed is the result of that expression at the time it was evaluated. For example, when inspecting a simple integer counter (primitive data type), the value displayed in the Expressions view is the value when the expression was evaluated. As the counter is changed in the running program, the inspected result will not change (since the view is not displaying the value bound to a variable - it is displaying the value of an expression, and the value of a primitive data type cannot change). However, if an expression results in an object, fields of that object will be updated in the inspector as they change in the running program (since the value bound to fields in an object can change). Stepping over native methods that perform I/O When the debugger steps over native methods that perform I/O to System.out or System.err, the output may not appear immediately unless the native performs a flush on the output buffer. VM and process termination running on IBM 1.3 JVM on Linux (Linux only) Terminating a launch, debug target, or system process associated with a debug target running on the IBM 1.3 JVM on the Linux platform does not work when the associated debug target has a suspended thread. To remove such debug targets from the debug UI, select Terminate and Remove from the debug view's pop-up menu (or use the shortcut "delete" key). Associated system processes in the OS may not be properly cleaned up. If a debug target has no suspended threads, termination works properly. (bug 1631) Memory View (Linux only) The feature to automatically load segments of memory while scrolling in the Memory view does not work on Linux. Instead the user must use the "Next Page" and "Previous Page" actions to manually load memory segments (bug 74559)
Java 6 and MacOS Apple JavaSE-1.6 VMs only execute on 64-bit architectures but JDT will detect 1.6 VMs installed on 32-bit architectures when a new workspace is started or when the user presses the "Search..." button on the Installed JREs preference page. Error messages will appear in the log each time JDT attempts to determine which execution environments a 1.6 VM is compatible with. JDT can be configured to ignore 1.6 JREs by removing them from the Installed JREs preference page. (bug 262542) Java Annotation Processing Some methods in the processing API are unimplemented when compiling within the IDE, and will throw UnsupportedOperationException. Java 6 annotation processors are supported in the batch compiler and in the IDE. By design, Java 6 processors are only executed during a build, not while editing. (bug 188558) Java 5 annotation processors are supported in the IDE only. Java 5 processors can be executed while editing, as well as during a build. Slow annotation processors can cause a slowdown of the editing experience. If this occurs, you may wish to turn off Enable processing in editor on the Java Compiler > Annotation Processing properties page of your Java project. Java indexing encounters problems when a folder is used both as a source and a class folder Java indexing encounters problems when a folder is used both as a source folder in a project and as a class folder in another project. Hence, when this peculiar setup is used, the Java Search might miss matches located in such a folder. To avoid this kind of problem, it is strongly advised to use different folders for sources and binary classes. (bug 309903)
Emacs key bindings do not work in manifest editor fields Non-default key bindings currently do not work in fields on non-source pages of the PDE manifest editors. (bug 19482) Plug-in import wizard does not allow plug-ins of different versions to be imported The Eclipse platform allows two plug-ins with the same ID but different versions to coexist if the only thing they contribute is run-time libraries. However, PDE cannot handle these plug-ins because it creates project names using plug-in Ids during binary project import. (bug 18500) Export of plug-in may silently drop classes When exporting a plug-in using the plug-in, feature or product wizards, some classes might be dropped from the resulting archive if their fully qualified name is too long. This typical path limitation can be worked around by creating the jar of the problematic plug-in by using the Jar export wizard. (bug 97150) Compilation errors when exporting projects not stored outside of the workspace When exporting multiple plug-ins and one is stored outside of the workspace, compile errors occurs on export. To work around the problem, you can either export the plug-ins one by one, or change their location. (bug 98579) Headless build needs to be run from a fully qualified path When running a headless build using the scripts provided by pde build, the properties builder and buildDirectory must refer to a fully qualified path. (bug 139554) Target Platform only sees installed plug-ins With the new p2 provisioning system in 3.4, PDE introduced a preference to control how target platforms are built. By default, this preference is on if your target equals your host, otherwise it's off. When this preference is enabled, PDE attempts to read a target platform's configuration and build the target platform based in the target's list of installed plug-ins. If a configuration can't be found (a bundles.info or platform.xml file), PDE will simply manually scan the target directory and populate the target platform's list of plug-ins. (bug 226037 and bug 225148) Delta pack is not seen by PDE when installed If you're using the delta pack, the target platform preference for building a target based on the target's installed plug-ins must be checked off. This is because a target's runtime configuration only contains plug-ins specific to the platform it's running on. (bug 230146) The org.osgi.util.tracker package is exported at wrong version The Equinox OSGI Framework (org.eclipse.osgi) exports the org.osgi.util.tracker package at the incorrect version of 1.4.2. The correct org.osgi.util.tracker package version for the OSGi Release 4 Version 4.2 specification is version 1.4.0. Bundles that wish to run on other vendor frameworks should import the org.osgi.util.tracker package at version 1.4.0. By default PDE will suggest the version 1.4.2 to be used when a
bundle imports the org.osgi.util.tracker package (using Import-Package manifest header). Developers can manually change the import to use 1.4.0 version of the package to be able to run on both Equinox and other vendor frameworks. (bug 279622) Importing plug-ins as source misses resources When importing plug-ins as source (from associated binary plug-ins and source bundles), resources such as property files and images will not be imported into the workspace. The workaround is to retrieve projects from their associated CVS repository or import binary plug-ins with attached source (if the ability to edit the imported plug-ins is not required). (bug 280259)
4. Running Eclipse
After installing the Eclipse SDK in a directory, you can start the Workbench by running the Eclipse executable included with the release (you also need a 1.4.2 JRE, not included with the Eclipse SDK). On Windows, the executable file is called eclipse.exe, and is located in the eclipse sub-directory of the install. If installed at c:\eclipse-SDK-3.6-win32, the executable is c:\eclipse-SDK-3.6-win32\eclipse \eclipse.exe. Note: Set-up on most other operating environments is analogous. Special instructions for Mac OS X are listed below.
with the <memory size> value set to greater than "256M" (256 megabytes -- the default). When using a Sun VM, you may also need to increase the size of the permanent generation memory. The default maximum is 64 megabytes, but more may be needed depending on your plug-in configuration and use. When the VM runs out of permanent generation memory, it may crash or hang during class loading. This failure is less common when using Sun JRE version 1.5.0_07 or greater. The maximum permanent generation size is increased using the -XX:MaxPermSize=<memory size> argument:
eclipse -vmargs -XX:MaxPermSize=<memory size>
This argument may not be available for all VM versions and platforms; consult your VM documentation for more details. Note that setting memory sizes to be larger than the amount of available physical memory on your machine will cause Java to "thrash" as it copies objects back and forth to virtual memory, which will severely degrade your performance.
Selecting a workspace
When the Workbench is launched, the first thing you see is a dialog that allows you to select where the
workspace will be located. The workspace is the directory where your work will be stored. If you do not specify otherwise, Eclipse creates the workspace in your user directory. This workspace directory is used as the default content area for your projects as well as for holding any required metadata. For shared or multiworkspace installs you must explicitly specify the location for your workspace using the dialog (or via the "-data" command line argument).
Tip: It's generally a good idea to explicitly specify which Java VM to use when running Eclipse. This is achieved with the "-vm" command line argument as illustrated above. If you don't use "-vm", Eclipse will look on the O/S path. When you install other Java-based products, they may change your path and could result in a different Java VM being used when you next launch Eclipse. To create a Windows shortcut to an installed Eclipse: 1. Navigate to eclipse.exe in Windows Explorer and use Create Shortcut on the content menu. 2. Select the shortcut and edit its Properties. In the Target: field append the command line arguments. Opening this shortcut launches Eclipse. (You can drag the shortcut to the Windows Desktop if you want to keep it in easy reach.)
Mac OS X
On Mac OS X, you start Eclipse by double clicking the Eclipse application. If you need to pass arguments to Eclipse, you'll have to edit the eclipse.ini file inside the Eclipse application bundle: select the Eclipse application bundle icon while holding down the Control Key. This will present you with a popup menu. Select "Show Package Contents" in the popup menu. Locate eclipse.ini file in the Contents/MacOS sub-folder and open it with your favorite text editor to edit the command line options. On MacOS X you can only launch a UI program more than once if you have separate copies of the program on disk. The reason for this behavior is that every UI application on Mac can open multiple documents, so typically there is no need to open a program twice. Since Eclipse cannot open more than one workspace, this means you have to make a copy of the Eclipse install if you want to open more then one workspace at the same time (bug 139319). If you need to launch Eclipse from the command line, you can use the symbolic link "eclipse" in the top-level eclipse folder. It refers to the eclipse executable inside the application bundle and takes the same arguments as "eclipse.exe" on other platforms. On Mac OS X 10.4 and later, you may notice a slow down when working with significant numbers of resources if you allow Spotlight to index your workspace. To prevent this, start System Preferences, select the Spotlight icon, then the Privacy tab, then click the Add button ("+") and find your workspace directory in the dialog that appears.
Shared Install
The startup speed of a shared install can be improved if proper cache information is stored in the shared install area. To achieve this, after unzipping Eclipse distribution, run Eclipse once with the "-initialize" option
Users who use User Libraries or classpath containers that contain JARs referencing other libraries via Class-Path in the MANIFEST.MF
If you want the referenced JAR files to be included in the classpath, you can do one of the following: Add the system property (-DresolveReferencedLibrariesForContainers=true) to the -vmargs list on start-up, or Manually add the referenced JARs to the User Library or to the project.
Sharing projects between heterogeneous Eclipse 3.6 and 3.5 Special care is required when a project in a team repository is being loaded and operated on by developers using Eclipse-based products based on different feature or plug-in versions. The general problem is that the existence, contents, and interpretation of metadata files in the workspaces may be specific to a particular feature or plug-in version, and differ between versions. The workspace compatibility guarantees only cover cases where all developers upgrade their Eclipse workspaces in lock step. In those cases there should be no problem with shared metadata. However, when some developers are working in Eclipse 3.6 while others are working in Eclipse 3.5, there are no such guarantees. This section provides advice for what to do and not to do. It addresses the specific issues with the Eclipse SDK. The typical failure mode is noticed by the 3.6 user. 3.6 metadata is lost when a 3.5 user saves changes and then commits the updated metadata files to the repository. Here's how things typically go awry: A user working in Eclipse 3.6 creates or modifies a project in a way that results in changes to a shared metadata file that rely on 3.6-specific information. The user then commits the updated project files, including the shared metadata file, to the shared repository. Another user working in Eclipse 3.5 shares this project from the same repository. The 3.6-specific information in the shared metadata file is not understood by Eclipse 3.5, and is generally discarded or ignored without warning. The user modifies the project in a way that results in changes to the shared metadata file, causing the shared metadata file to be rewritten without any of the 3.6-specific information. The user commits the updated project files, including the shared metadata file, to the shared repository. The user is generally unaware that shared information has just been lost as a result of their actions. A user working in Eclipse 3.6 picks up the changes to a project from the shared repository, including the updated shared metadata file. The user may be unaware that they have just taken a retrograde step until later when things start to malfunction. Here are some things to watch out for when sharing projects between Eclipse 3.6 and earlier 3.x releases: Virtual folders - Eclipse 3.6 supports a notion of virtual folders that did not exist in Eclipse 3.5 or earlier. If such virtual folders are created in 3.6, and the project is subsequently loaded into an Eclipse 3.5 or earlier workspace, these folders will not be recognized. Recommendation: avoid creating virtual folders where project compatibility with Eclipse 3.5 or earlier is required. Resource filters - Eclipse 3.6 supports a notion of resource filters that did not exist in Eclipse 3.5 or earlier. If such filters are added to resources in 3.6, and the project is subsequently loaded into an Eclipse 3.5 or earlier workspace, these filters will not be recognized. Recommendation: avoid creating resource filters where project compatibility with Eclipse 3.5 or earlier is required. Predefined path variables - Eclipse 3.6 supports a set of built in path variables that can be used as the basis for linked resource locations. Such variables will not be defined automatically in Eclipse 3.5 or earlier. If compatibility with 3.5 or earlier workspace is required, users on 3.5 or earlier workspaces will need to define such path variables manually. Using Eclipse 3.6 to develop plug-ins that work in Eclipse 3.5 It is also possible (and reasonable) to use Eclipse 3.6 to develop a plug-in intended to work in Eclipse 3.5 or earlier. Use the Plug-in Development > Target Platform preference page to locate non-workspace plug-ins in an Eclipse 3.5 install. This ensures that the code for your plug-in is being compiled and tested against Eclipse 3.5 APIs, extension points, and plug-ins. (The above list of concerns do not apply since they affect the layout and interpretation of files in the plug-in project but none affect the actual deployed form of the plug-in.)
210027 TreeModelLabelProvider does not cancel stale updates. 283320 [SWT] Widgets flashing when moving mouse while holding Alt button 301894 OutOfMemory error when building a large project with annotations 302184 [About] About dialog text - needs to not cache system property values 307345 [Browser][Mozilla][Mac]Can't use ctrl+f2 to move focus to the menu bar in Mozilla browser 312189 [quick assist] BadLocationException when applying proposal while preview is computed 317771 FUP of 315978: Add performance tracking test for scenario fixed by bug# 315978 319123 [launcher] Application becomes unresponsive when code completion tooltip shows 319337 [Win32] WindowXP command "Close Group" can not close all the Eclipse window that in one group
321155 [DynamicGUI] UIExtensionTracker calling Display.syncExec() on disposed Display 323514 [indexing] The Java Indexer is taking longer to run in eclipse 3.6 when opening projects 323763 Eclipse 3.7 M1 crashes as it is starting up - detected by Java Runtime Environment 324102 Backspace key, delete key and tab stop working when my application is minimized 324236 [Browser-Mozilla] Links and JS actions opening a new window do not work 324596 [releng][p2] consume ECF build for 3.6.1 maintenance 324801 enable WebKitGTK on Linux-PPC 324892 Wrong constant values for some IA2 events 325028 [a11y] Frequent crashes in editor resulting from atk_object_get_attributes() 325161 NPE in Java breakpoint properties page with JavaStratumLineBreakpoint 325227 [Backport] NatureManager is NOT threadsafe causing incorrect responses to isNatureEnabled() (and others)
325294 [launcher] DLL hijacking exploit 325557 Associating a Launch with Perspective "None" is not persisted 325797 views automatically opened based on debug context are hidden/closed on perspective switch 325885 Dynamic import resolver bug
325902 [launcher] Windows LoadLibrary search cwd DLL exploit 325946 [backport] Provide a way to disable capping in the comparison algorithm 326152 [Memory View] new monitors added while Memory view is hidden or closed are not shown in the tree
326263 Windows File Locks are obtained on bundles exporting extension points and not released. 326351 remove p2.selfhosting bundle from org.eclipse.releng/maps/p2.map 326354 [3.6][compiler][regression] Compiler in 3.6 and 3.6.1 generates bad code 326395 [Backport] Cannot compare word documents 326434 New issues with NPE refreshing external folders with 3.6.1 326453 releng compare tool and pde api tooling should compare against 3.6.1 in 3.6.2 maintenance stream 326516 3.6.2 feature versions need to be incremented 326532 run compare tool against p2 repos instead of sdk (backport to 3.6.2) 326541 Plan Verifier results not checked in reconciler 326673 [WorkingSets] FileNotFoundException in WorkingSetManager 326958 default ANT home directory lower than the Ant plugin version 327138 [Import/Export] WizardExportResourcesPage's Finish button isn't sensitive to Select/Deselect All 327233 p2 and equinox feature versions need to be incremented in 3.6.2 stream 327234 version of org.eclipse.core.resources needs to be incremented in 3.6.x stream 327362 setUrl() call navigates to about:blank prior to real url breaks IEWebHistory 327425 [backport] New option to not use capped algorithm misses documentation 327446 Launch's wait for build logic does not check for autobuild correctly 327560 Failed to create Citrix Client v12 327654 FUP of bug 317264: Refactoring is not possible if the commons-lang.jar is in the path 327706 Headless build failure with Eclipse 3.6.1 327772 equinox.serverside.sdk version needs to be incremented to 3.6.1 in R3_6_maintenance stream 327790 327827 [Widgets] Controls with null background inside Group or TabFolder do not display correctly in Cocoa [Webapp] Fix for Eclipse 3.6.2 - Eclipse help system content panel tree component is unusable by people using screen readers
328145 [cocoa, gef] Guide markers not fully visible on Cocoa 328151 [launcher] 3.6.2: Remember to compile for S390(x) 328177 Project ant builder cannot run in headless context as it attempts to load a UI AntInputHandler (even when not in use)
328295 Launch button disabled after failed launch 328345 version of org.eclipse.equinox.supplement needs to be incremented in 3.6.2 stream 328350 update location of platform zips used in p2 tests 328400 TextEdit computed incorrectly for inserting annotation before package declaration
328826 content.xml is too big (20 MB+) 328975 [Webapp] Possible security issue with JSP code exposure. 329129 [Mac] Unhandled event loop exception when closing Error Log Event Details 329193 [Webapp] Possible security issue with JSP code exposure. 329212 OSGI app binaries do not inherit Java 2 security 329222 Request for AIX 64-bit gtk build in 3.6.2 329223 Need 3.6.2 launcher for AIX 64 GTK 329267 3.6.1 download page should contain link to 3.6 new & noteworthy 329288 Fetching parameter names literally hangs on a class with a lot of methods 329303 Port AIX GTK 64 back to 3.6.2 329333 [Backport] Concurrent access to file while decorating 329485 [Help] Fix for 3.6.2 On WinXP bookmarks added from help view get name "N/A" 329494 [Help] Fix in Eclipse 3.6.2 - Jaws does not give enough context info when in Help pane 329713 [Webapp] Fix in 3.6.2 Wrong topic was selected in the TOC tree 329838 [KeyBindings] Exporting key preferences to CSV does not allow context being null 330026 [Webapp][Security] Fix for Eclipse 3.6.2 Eclipse Help Server XSS 330030 P2 Nullpointer Exception at RepositoryTransport.download 330047 PluginRegistry.findModel* throws IllegalArgumentExceptions 330081 [compiler] ArrayIndexOutOfBoundsException when Switched from C/C++ Perspective to Java Perspective
330122 [3.6 maint] HTMLTransfer broken from Firefox --> SWT [Carbon] 330285 [Commands] Stackoverflow in BindingSystem 330310 [webapp] Regression: Capability filtering and "Show All" are missing in Eclipse 3.6 330438 [ltk] NPE in UndoDocumentChange 330460 [planner] p2 director does not install source bundles from optional features 330463 Optimize manifest TouchPointData memory footprint for MetadataRepositories 330515 [Help] Fix in 3.6.2 Remote Help HTTPS support is setting java.protocol.handler.pkgs=javax.net.ssl 330549 [Wizards] cancelable parameter does not disable Wizard progress bar cancel button 330584 org.eclipse.equinox.core.sdk needed to be tagged in 3.6.2 stream 330605 test 3.6.2 build with bundles from M20101117-1123 to fix p2 source generation problem 330611 [launcher] Add mechanism for ignoring user specified config.ini values 330815 perf_35x baselines failing due to relocated archives 330824 [Graphics] Splash screen for SR2 should be updated to use Oracle's copyrights 330927 [backport] Default external web browser not found when running 32-bit Eclipse on 64-bit Ubuntu 9.04
331563 Backport: [Import/Export] Import file system doesn't include the top folder you select 331758 [backport] performance regression caused by fix in 298835 331762 [repository] Share StringPool for Composite Repositories 332041 Backport bug 162079: [PropertiesView] Properties view should be a post selection listener 332095 [query] Repository query takes a long time when deleting a lot of IUs (from dropins) 332098 Metadata generator should not create mkdir/rmdir actions for reconciler bundle 332148 [native] Don't fail install when rmdir cannot delete empty directory 332637 Dead Code detection removing code that isn't dead 332639 332640 332686 [backport] There are no changes for models showing in the Synchronize view with Team > Merge operation. [backport] Team > Merge operation for project contains logical model always show no changes between two branches [backport][Browser] Search for external browser in Preferences finds > 40 instances of firefox on Ubuntu 64bit, if started in /usr/bin [backport] Call to IResource.setEncoding() persists derived file's encoding setting in .settings\org.eclipse.core.resources.prefs
332709 Use JNI add an window callback function to Shell, function can not be called. 333416
333493 disposed widget exception when closing editor with Browser with Ctrl+F4 333576 [jre] "JRE System Library" default not used properly after Java update 333898 [Preferences] [accessibility] Preferences Dialog menu button needs a tooltip 334048 [3.6.2] Clicking on a checkbox in a CheckboxTreeViewer selects the row. 334160 [reconciler] Provide mechanism for specifying multiple non-default drop-ins folders 334161 Eclipse crashes if link to PDF with anchor is clicked twice from Browser Widget 334707 [discovery] Cache jars downloaded by RemoteBundleDiscoveryStrategy 334725 Something whacky with the build ids 334916 About text needs to be updated to 2011 334919 org.eclipse.equinox.p2.sdk feature version needs to be incremented in 3.6.2 stream 334947 swt bundles still have version 3.6.1 in 3.6.2 stream 115 bugs found. Sun, Solaris, Java and all Java-based trademarks are trademarks of Oracle Corporation. in the United States, other countries, or both. IBM is a trademark of International Business Machines Corporation in the United States, other countries, or both. Microsoft, Windows, Windows NT, Vista, and the Windows logo are trademarks of Microsoft Corporation in the United States, other countries, or both. Apple and Mac OS are trademarks of Apple Computer, Inc., registered in the U.S. and other countries.
QNX, Neutrino, and Photon are trademarks or registered trademarks of QNX Software Systems Ltd. Other company, product, and service names may be trademarks or service marks of others. (c) Copyright IBM Corp. and others 2009, 2010
Bundle
3.6 minimum execution environment 1.5 F1.0 1.4 F1.1 F1.0 J2SE-1.2 F1.0 F1.0 F1.0 F1.0 F1.0 not specified
aa.compute.bundle.ee com.ibm.icu com.jcraft.jsch javax.servlet javax.servlet.jsp org.apache.ant org.apache.commons.codec org.apache.commons.el org.apache.commons.httpclient org.apache.commons.logging org.apache.jasper org.apache.lucene
org.apache.lucene.analysis org.eclipse.ant.core org.eclipse.ant.launching org.eclipse.ant.ui org.eclipse.compare org.eclipse.compare.core org.eclipse.compare.win32 org.eclipse.core.boot org.eclipse.core.commands org.eclipse.core.contenttype org.eclipse.core.databinding org.eclipse.core.databinding.beans org.eclipse.core.databinding.observable org.eclipse.core.databinding.property org.eclipse.core.expressions org.eclipse.core.externaltools org.eclipse.core.filebuffers org.eclipse.core.filesystem org.eclipse.core.filesystem.win32.x86 org.eclipse.core.jobs org.eclipse.core.net org.eclipse.core.net.win32.x86 org.eclipse.core.resources org.eclipse.core.resources.win32.x86 org.eclipse.core.runtime org.eclipse.core.runtime.compatibility org.eclipse.core.runtime.compatibility.auth org.eclipse.core.runtime.compatibility.registry org.eclipse.core.variables org.eclipse.cvs org.eclipse.debug.core org.eclipse.debug.ui org.eclipse.ecf org.eclipse.ecf.filetransfer org.eclipse.ecf.identity org.eclipse.ecf.provider.filetransfer org.eclipse.ecf.provider.filetransfer.httpclient org.eclipse.ecf.provider.filetransfer.httpclient.ssl org.eclipse.ecf.provider.filetransfer.ssl
not specified 1.4 1.4 1.4 1.4 1.4 1.4 F1.0 F1.0 F1.0 F1.1 1.4 F1.1 F1.1 F1.0 1.4 1.4 1.4 not specified F1.0 F1.1 1.4 1.4 not specified F1.0 F1.0 F1.0 F1.0 1.4 not specified 1.4 1.4 F1.1 F1.0 F1.1 F1.1 F1.1 F1.1 1.4
org.eclipse.ecf.ssl org.eclipse.equinox.app org.eclipse.equinox.common org.eclipse.equinox.concurrent org.eclipse.equinox.ds org.eclipse.equinox.event org.eclipse.equinox.frameworkadmin org.eclipse.equinox.frameworkadmin.equinox org.eclipse.equinox.http.jetty org.eclipse.equinox.http.registry org.eclipse.equinox.http.servlet org.eclipse.equinox.jsp.jasper org.eclipse.equinox.jsp.jasper.registry org.eclipse.equinox.launcher org.eclipse.equinox.launcher.win32.win32.x86 org.eclipse.equinox.p2.artifact.repository org.eclipse.equinox.p2.console org.eclipse.equinox.p2.core org.eclipse.equinox.p2.director org.eclipse.equinox.p2.director.app org.eclipse.equinox.p2.directorywatcher org.eclipse.equinox.p2.engine org.eclipse.equinox.p2.extensionlocation org.eclipse.equinox.p2.garbagecollector org.eclipse.equinox.p2.jarprocessor org.eclipse.equinox.p2.metadata org.eclipse.equinox.p2.metadata.generator org.eclipse.equinox.p2.metadata.repository org.eclipse.equinox.p2.operations org.eclipse.equinox.p2.publisher org.eclipse.equinox.p2.ql org.eclipse.equinox.p2.reconciler.dropins org.eclipse.equinox.p2.repository org.eclipse.equinox.p2.repository.tools org.eclipse.equinox.p2.touchpoint.eclipse org.eclipse.equinox.p2.touchpoint.natives org.eclipse.equinox.p2.ui org.eclipse.equinox.p2.ui.sdk org.eclipse.equinox.p2.ui.sdk.scheduler
1.4 M1.2 F1.1 F1.0 M1.2 M1.1 F1.1 F1.1 1.4 F1.0 F1.0 F1.0 F1.0 M1.2 not specified F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 1.4 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1 F1.1
org.eclipse.equinox.p2.updatechecker org.eclipse.equinox.p2.updatesite org.eclipse.equinox.preferences org.eclipse.equinox.registry org.eclipse.equinox.security org.eclipse.equinox.security.ui org.eclipse.equinox.security.win32.x86 org.eclipse.equinox.simpleconfigurator org.eclipse.equinox.simpleconfigurator.manipulator org.eclipse.equinox.util org.eclipse.help org.eclipse.help.appserver org.eclipse.help.base org.eclipse.help.ui org.eclipse.help.webapp org.eclipse.jdt org.eclipse.jdt.apt.core org.eclipse.jdt.apt.pluggable.core org.eclipse.jdt.apt.ui org.eclipse.jdt.compiler.apt org.eclipse.jdt.compiler.tool org.eclipse.jdt.core org.eclipse.jdt.core.manipulation org.eclipse.jdt.debug org.eclipse.jdt.debug.ui org.eclipse.jdt.doc.isv org.eclipse.jdt.doc.user org.eclipse.jdt.junit org.eclipse.jdt.junit.core org.eclipse.jdt.junit.runtime org.eclipse.jdt.junit4.runtime org.eclipse.jdt.launching org.eclipse.jdt.ui org.eclipse.jface org.eclipse.jface.databinding org.eclipse.jface.text org.eclipse.jsch.core org.eclipse.jsch.ui org.eclipse.ltk.core.refactoring
F1.1 F1.1 F1.1 F1.0 1.4 1.4 1.4 F1.1 F1.1 M1.1 F1.0 F1.0 1.4 1.4 1.4 not specified 1.5 1.6 1.5 1.6 1.6 1.4 1.4 1.4 1.4 not specified not specified 1.4 1.4 1.3 1.5 1.4 1.4 F1.1 F1.0 1.4 1.4 1.4 1.4
org.eclipse.ltk.ui.refactoring org.eclipse.osgi org.eclipse.osgi.services org.eclipse.osgi.util org.eclipse.pde org.eclipse.pde.api.tools org.eclipse.pde.api.tools.ui org.eclipse.pde.build org.eclipse.pde.core org.eclipse.pde.doc.user org.eclipse.pde.ds.core org.eclipse.pde.ds.ui org.eclipse.pde.junit.runtime org.eclipse.pde.launching org.eclipse.pde.runtime org.eclipse.pde.ua.core org.eclipse.pde.ua.ui org.eclipse.pde.ui org.eclipse.pde.ui.templates org.eclipse.platform org.eclipse.platform.doc.isv org.eclipse.platform.doc.user org.eclipse.rcp org.eclipse.sdk org.eclipse.search org.eclipse.swt org.eclipse.swt.win32.win32.x86 org.eclipse.team.core org.eclipse.team.cvs.core org.eclipse.team.cvs.ssh2 org.eclipse.team.cvs.ui org.eclipse.team.ui org.eclipse.text org.eclipse.ui org.eclipse.ui.browser org.eclipse.ui.cheatsheets org.eclipse.ui.console org.eclipse.ui.editors org.eclipse.ui.externaltools
1.4 M1.2 M1.2 M1.2 1.4 1.4 1.4 1.4 1.4 not specified 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 1.4 F1.0 not specified not specified not specified not specified 1.4 F1.0 F1.0 1.4 1.4 1.4 1.4 1.4 1.4 F1.0 1.4 1.4 1.4 1.4 1.4
org.eclipse.ui.forms org.eclipse.ui.ide org.eclipse.ui.ide.application org.eclipse.ui.intro org.eclipse.ui.intro.universal org.eclipse.ui.navigator org.eclipse.ui.navigator.resources org.eclipse.ui.net org.eclipse.ui.presentations.r21 org.eclipse.ui.views org.eclipse.ui.views.log org.eclipse.ui.views.properties.tabbed org.eclipse.ui.win32 org.eclipse.ui.workbench org.eclipse.ui.workbench.compatibility org.eclipse.ui.workbench.texteditor org.eclipse.update.configurator org.eclipse.update.core org.eclipse.update.core.win32 org.eclipse.update.scheduler org.eclipse.update.ui org.hamcrest.core org.junit org.junit4 org.mortbay.jetty.server org.mortbay.jetty.util org.objectweb.asm org.sat4j.core org.sat4j.pb
1.4 1.4 1.4 1.4 1.4 1.4 1.4 F1.1 1.4 1.4 1.4 F1.0 1.4 F1.1 1.4 1.4 F1.0 F1.0 not specified F1.0 F1.0 1.5 1.3 1.5 1.4 1.4 1.3 1.4 1.4