_id
stringlengths
36
36
bug_id
int64
1
425k
description
stringlengths
1
373k
bug_severity
stringclasses
7 values
bug_status
stringclasses
3 values
resolution
stringclasses
8 values
{'$oid': '52e9c13a54dc1c25ebdc0bdf'}
61,824
- In "Importing the CME demo projects into your runtime workbench" Run -> Run shold be Run -> Run...
normal
RESOLVED
FIXED
{'$oid': '52e9c13a54dc1c25ebdc0be0'}
61,823
- In "Preparing your Workbench using the Update Site" have a bullet to say leave the password blank.
normal
RESOLVED
FIXED
{'$oid': '52e9c13a54dc1c25ebdc0be1'}
61,825
- In the same place 'field' is mispelled as 'fild'
normal
RESOLVED
FIXED
{'$oid': '52e9c13a54dc1c25ebdc0be2'}
61,827
The following test case describes the problem. Run it as is, and then uncomment the call to drawImage() and note the differences in output. In the first case, the RGB values should come back just like they are listed in colors [], but they all come back as (0, 0, 0). However, once you actually draw the image onto the Shell's graphics, they come back correctly, only off by one because the values are for the last color that was actually drawn. On Windows, the RGB values are correctly reported back (though you have to mask them a little differently) regardless of whether the image is drawn to the Shell. import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SWTImageTest { Display display; Shell shell; Image image; public void run() { display = new Display(); shell = new Shell(display); shell.setSize(300, 300); shell.open(); int depth = 24; image = new Image(display, 200, 200); ImageData myData = image.getImageData(); System.out.println("Depth = " + myData.depth); GC gc = new GC(image); Color[] colors = new Color[8]; colors[0] = new Color(display, 255, 0, 0); colors[1] = new Color(display, 0, 255, 0); colors[2] = new Color(display, 0, 0, 255); colors[3] = new Color(display, 255, 255, 0); colors[4] = new Color(display, 255, 0, 255); colors[5] = new Color(display, 0, 255, 255); colors[6] = new Color(display, 255, 255, 255); colors[7] = new Color(display, 0, 0, 0); GC shellGC = new GC(shell); for (int j = 0; j < 8; j++) { gc.setBackground(colors[j]); gc.fillArc(0, 0, 200, 200, 0, 360); ImageData retrievedData = image.getImageData(); int mainPixel = retrievedData.getPixel(100, 100); int red = mainPixel & 0xff; int blue = (mainPixel & 0xff0000) >> 16; int green = (mainPixel & 0xff00) >> 8; Color finalColor = new Color(display, red, green, blue); System.out.println("red = " + finalColor.getRed() + " green = " + finalColor.getGreen() + " blue = " + finalColor.getBlue()); //shellGC.drawImage(image, 0, 0); //this is the critical line } while (!shell.isDisposed()) { display.readAndDispatch(); display.sleep(); } display.dispose(); } public static void main(String[] args) { new SWTImageTest().run(); } }
normal
RESOLVED
FIXED
{'$oid': '52e9c13a54dc1c25ebdc0be3'}
61,826
Currently until Java debug is loaded, the java launch shortcuts show up for Ant build files. This could be excluded by adding a filter for "*.java" extensions if you are dealing with an IResource.
normal
VERIFIED
FIXED
{'$oid': '52e9c13a54dc1c25ebdc0be4'}
61,828
The following test case describes the problem. Run it as is, and then uncomment the call to drawImage() and note the differences in output. In the first case, the RGB values should come back just like they are listed in colors [], but they all come back as (0, 0, 0). However, once you actually draw the image onto the Shell's graphics, they come back correctly, only off by one because the values are for the last color that was actually drawn. On Windows, the RGB values are correctly reported back (though you have to mask them a little differently) regardless of whether the image is drawn to the Shell. import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SWTImageTest { Display display; Shell shell; Image image; public void run() { display = new Display(); shell = new Shell(display); shell.setSize(300, 300); shell.open(); int depth = 24; image = new Image(display, 200, 200); ImageData myData = image.getImageData(); System.out.println("Depth = " + myData.depth); GC gc = new GC(image); Color[] colors = new Color[8]; colors[0] = new Color(display, 255, 0, 0); colors[1] = new Color(display, 0, 255, 0); colors[2] = new Color(display, 0, 0, 255); colors[3] = new Color(display, 255, 255, 0); colors[4] = new Color(display, 255, 0, 255); colors[5] = new Color(display, 0, 255, 255); colors[6] = new Color(display, 255, 255, 255); colors[7] = new Color(display, 0, 0, 0); GC shellGC = new GC(shell); for (int j = 0; j < 8; j++) { gc.setBackground(colors[j]); gc.fillArc(0, 0, 200, 200, 0, 360); ImageData retrievedData = image.getImageData(); int mainPixel = retrievedData.getPixel(100, 100); int red = mainPixel & 0xff; int blue = (mainPixel & 0xff0000) >> 16; int green = (mainPixel & 0xff00) >> 8; Color finalColor = new Color(display, red, green, blue); System.out.println("red = " + finalColor.getRed() + " green = " + finalColor.getGreen() + " blue = " + finalColor.getBlue()); //shellGC.drawImage(image, 0, 0); //this is the critical line } while (!shell.isDisposed()) { display.readAndDispatch(); display.sleep(); } display.dispose(); } public static void main(String[] args) { new SWTImageTest().run(); } }
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13a54dc1c25ebdc0be5'}
61,830
I200405111200 Copy and paste this into the Ant Editor: project name="A Project" default="foobar" basedir="."> <target name="foobar"> <pathconvert dirsep="/" pathsep=" " property="classpath"> <map from="foo" to="lib" /> <path> <fileset dir="foo"> <include name="**/*.jar" /> </fileset> </path> </pathconvert> </target> </project> I get a red cross and warning error "insertyourpath\foo not found". Well, yes the directory foo is not found because the other part of my Ant script is supposed to make that directory so it doens't exist yet! PB
major
VERIFIED
FIXED
{'$oid': '52e9c13a54dc1c25ebdc0be6'}
61,832
We should support multi-select for Run->Ant Build in the Ant editor outline.
normal
RESOLVED
WONTFIX
{'$oid': '52e9c13b54dc1c25ebdc0be7'}
61,829
Build 20040511 Selecting Ant launch configs in the launch configuration dialog is brutally slow.
major
VERIFIED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0be8'}
61,833
The hierarchy view should prepare its contents in a background job, thus allowing the user to do other things while the view contents are being created.
enhancement
RESOLVED
DUPLICATE
{'$oid': '52e9c13b54dc1c25ebdc0be9'}
61,835
Using feature.xml editor I do not see where I can specify unpack="false" for plug-ins that should run from jars.
enhancement
RESOLVED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bea'}
61,834
I have created site project, with one feature. In site.xml editor, on the features page, I have create a new category. Next I am trying to add feature to the category and do not know how. It seems like drag (from Features to build section) and drop (to Features to publish) should work since the cursor changes when I drag, but nothing happens when I drop.
normal
RESOLVED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0beb'}
61,836
My plugins directory contains com.example.bundle.plugin.ui_2.0.0.jar, and plug- in shows up in manage configuration and help about. PDE does not list the plug-in in the import plug-in wizard.
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c13b54dc1c25ebdc0bec'}
61,838
I like the recent changes to the build menu/dialogs. Thanks. However, shouldn't clean the dialog remember that I unchecked "Start a build immediately" the previous 999 times I said Clean? I'll admit this is unlikely to be a common scenario, but odds are if something causes you to do it once, you'll want to do it again and your choice should be preserved across invocations. To reproduce: Select Project->Clean... In the Clean? dialog, uncheck "start a build immediately" Select Project->Clean... "start a build immediately" is checked again
minor
VERIFIED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bed'}
61,837
Build I20040511 o.e.ui has 2 "include" schemas whose names currently end in ".mxsd". Dejan says these should be ".exsd" as well.
normal
VERIFIED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bee'}
61,840
This is a problem for users of the control that implement cell values that reference other values. In these cases, we need a deep copy of the value.
minor
CLOSED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bef'}
61,831
I20040506 + Plug-in export (contains newwer JDT/Core). Whenever I start Eclipse I see the following behaviour - some sort of incremental build kicks in which takes a couple of seconds - after that a full build kicks in. Attached the beginning of a trace (contains the FULL BUILD request). The whole trace is really large.
normal
VERIFIED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bf1'}
61,843
I200405110800 on WXP I just switched to the Java Perspective with a single project. !MESSAGE Exception occurred while saving project preferences: /XRay/.settings/org.eclipse.core.resources.prefs. !STACK 1 org.eclipse.core.internal.resources.ResourceException: The resource tree is locked for modifications. at java.lang.Throwable.<init>(Throwable.java) at java.lang.Throwable.<init>(Throwable.java) at org.eclipse.core.runtime.CoreException.<init>(CoreException.java:37) at org.eclipse.core.internal.resources.ResourceException.<init> (ResourceException.java:30) at org.eclipse.core.internal.resources.WorkManager.checkIn (WorkManager.java:93) at org.eclipse.core.internal.resources.Workspace.prepareOperation (Workspace.java:1629) at org.eclipse.core.internal.resources.File.setContents(File.java:329) at org.eclipse.core.internal.resources.ProjectPreferences.save (ProjectPreferences.java:258) at org.eclipse.core.internal.preferences.EclipsePreferences.flush (EclipsePreferences.java:339) at org.eclipse.core.internal.preferences.EclipsePreferences.create (EclipsePreferences.java:296) at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode (EclipsePreferences.java) at org.eclipse.core.internal.preferences.EclipsePreferences.node (EclipsePreferences.java) at org.eclipse.core.resources.ProjectScope.getNode (ProjectScope.java:66) at org.eclipse.core.internal.resources.CharsetManager.getPreferences (CharsetManager.java:161) at org.eclipse.core.internal.resources.CharsetManager.access$0 (CharsetManager.java:160) at org.eclipse.core.internal.resources.CharsetManager$Listener.processEntryChanges (CharsetManager.java:86) at org.eclipse.core.internal.resources.CharsetManager$Listener.resourceChanged (CharsetManager.java:134) at org.eclipse.core.internal.events.NotificationManager$2.run (NotificationManager.java:319) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.core.internal.events.NotificationManager.notify (NotificationManager.java:313) at org.eclipse.core.internal.events.NotificationManager.broadcastChanges (NotificationManager.java:156) at org.eclipse.core.internal.resources.Workspace.broadcastChanges (Workspace.java:172) at org.eclipse.core.internal.resources.Workspace.endOperation (Workspace.java:902) at org.eclipse.core.internal.resources.Workspace.run (Workspace.java:1683) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3241) at org.eclipse.jdt.core.JavaCore.setClasspathContainer (JavaCore.java:3411) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer (ModelEntry.java:109) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize (RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer (JavaModelManager.java:1187) at org.eclipse.jdt.internal.core.JavaModelManager.initializeAllContainers (JavaModelManager.java:1161) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer (JavaModelManager.java:824) at org.eclipse.jdt.core.JavaCore.getClasspathContainer (JavaCore.java:1191) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath (JavaProject.java:1877) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath (JavaProject.java:1788) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath (JavaProject.java:1739) at org.eclipse.jdt.internal.core.JavaProject.buildStructure (JavaProject.java:266) at org.eclipse.jdt.internal.core.Openable.generateInfos (Openable.java:183) at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed (JavaElement.java:573) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo (JavaElement.java:310) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo (JavaElement.java:296) at org.eclipse.jdt.internal.core.JavaElement.getChildren (JavaElement.java:251) at org.eclipse.jdt.internal.core.JavaProject.getPackageFragmentRoots (JavaProject.java:1569) at org.eclipse.jdt.ui.StandardJavaElementContentProvider.getPackageFragmentRoots (StandardJavaElementContentProvider.java:250) at org.eclipse.jdt.ui.StandardJavaElementContentProvider.getChildren (StandardJavaElementContentProvider.java:168) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerContentProvider.getChild ren(PackageExplorerContentProvider.java:115) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart$5.getFilteredChildr en(PackageExplorerPart.java:345) at org.eclipse.jface.viewers.AbstractTreeViewer.isExpandable (AbstractTreeViewer.java:1138) at org.eclipse.jface.viewers.AbstractTreeViewer.updatePlus (AbstractTreeViewer.java:1585) at org.eclipse.jface.viewers.AbstractTreeViewer.createTreeItem (AbstractTreeViewer.java:378) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run (AbstractTreeViewer.java:357) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren (AbstractTreeViewer.java:343) at org.eclipse.jface.viewers.AbstractTreeViewer$5.run (AbstractTreeViewer.java:783) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection (StructuredViewer.java:788) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged (AbstractTreeViewer.java:773) at org.eclipse.jface.viewers.ContentViewer.setInput (ContentViewer.java:238) at org.eclipse.jface.viewers.StructuredViewer.setInput (StructuredViewer.java:972) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.createPartControl (PackageExplorerPart.java:287) at org.eclipse.ui.internal.PartPane$1.run(PartPane.java:93) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.ui.internal.PartPane.createChildControl (PartPane.java:89) at org.eclipse.ui.internal.ViewPane.createChildControl (ViewPane.java:143) at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:276) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.ui.internal.ViewFactory.busyRestoreView (ViewFactory.java:202) at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:454) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView (ViewFactory.java:452) at org.eclipse.ui.internal.ViewFactory$ViewReference.getPart (ViewFactory.java:93) at org.eclipse.ui.internal.WorkbenchPage$1.propertyChange (WorkbenchPage.java:130) at org.eclipse.ui.internal.LayoutPart.setVisible(LayoutPart.java:248) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:259) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:625) at org.eclipse.ui.internal.presentations.PresentableViewPart.setVisible (PresentableViewPart.java:114) at org.eclipse.ui.internal.presentations.DefaultPartPresentation.selectPart (DefaultPartPresentation.java:777) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection (PartStack.java:717) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:315) at org.eclipse.ui.internal.ViewStack.createControl(ViewStack.java:99) at org.eclipse.ui.internal.PartSashContainer.createControl (PartSashContainer.java:392) at org.eclipse.ui.internal.PerspectiveHelper.activate (PerspectiveHelper.java:156) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:718) at org.eclipse.ui.internal.WorkbenchPage.setPerspective (WorkbenchPage.java:2683) at org.eclipse.ui.internal.WorkbenchPage.closePerspective (WorkbenchPage.java:1036) at org.eclipse.ui.internal.WorkbenchPage.closePerspective (WorkbenchPage.java:1006) at org.eclipse.ui.internal.WorkbenchWindow$8.widgetSelected (WorkbenchWindow.java:1971) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:84) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:59) at java.lang.reflect.Method.invoke(Method.java:390) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706) !SUBENTRY 1 org.eclipse.core.resources 4 380 May 11, 2004 21:53:47.897 !MESSAGE The resource tree is locked for modifications. !ENTRY org.eclipse.core.runtime 4 4 May 11, 2004 21:53:47.897 !MESSAGE Exception loading preferences from: E:/eclipse2/e30/XRay/.settings/org.eclipse.core.resources.prefs. !STACK 0 org.osgi.service.prefs.BackingStoreException: Exception occurred while saving project preferences: /XRay/.settings/org.eclipse.core.resources.prefs. at java.lang.Throwable.<init>(Throwable.java) at java.lang.Throwable.<init>(Throwable.java) at org.osgi.service.prefs.BackingStoreException.<init> (BackingStoreException.java:32) at org.eclipse.core.internal.resources.ProjectPreferences.save (ProjectPreferences.java:274) at org.eclipse.core.internal.preferences.EclipsePreferences.flush (EclipsePreferences.java:339) at org.eclipse.core.internal.preferences.EclipsePreferences.create (EclipsePreferences.java:296) at org.eclipse.core.internal.preferences.EclipsePreferences.internalNode (EclipsePreferences.java) at org.eclipse.core.internal.preferences.EclipsePreferences.node (EclipsePreferences.java) at org.eclipse.core.resources.ProjectScope.getNode (ProjectScope.java:66) at org.eclipse.core.internal.resources.CharsetManager.getPreferences (CharsetManager.java:161) at org.eclipse.core.internal.resources.CharsetManager.access$0 (CharsetManager.java:160) at org.eclipse.core.internal.resources.CharsetManager$Listener.processEntryChanges (CharsetManager.java:86) at org.eclipse.core.internal.resources.CharsetManager$Listener.resourceChanged (CharsetManager.java:134) at org.eclipse.core.internal.events.NotificationManager$2.run (NotificationManager.java:319) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.core.internal.events.NotificationManager.notify (NotificationManager.java:313) at org.eclipse.core.internal.events.NotificationManager.broadcastChanges (NotificationManager.java:156) at org.eclipse.core.internal.resources.Workspace.broadcastChanges (Workspace.java:172) at org.eclipse.core.internal.resources.Workspace.endOperation (Workspace.java:902) at org.eclipse.core.internal.resources.Workspace.run (Workspace.java:1683) at org.eclipse.jdt.core.JavaCore.run(JavaCore.java:3241) at org.eclipse.jdt.core.JavaCore.setClasspathContainer (JavaCore.java:3411) at org.eclipse.pde.internal.core.ModelEntry.updateClasspathContainer (ModelEntry.java:109) at org.eclipse.pde.internal.core.RequiredPluginsInitializer.initialize (RequiredPluginsInitializer.java:40) at org.eclipse.jdt.internal.core.JavaModelManager.initializeContainer (JavaModelManager.java:1187) at org.eclipse.jdt.internal.core.JavaModelManager.initializeAllContainers (JavaModelManager.java:1161) at org.eclipse.jdt.internal.core.JavaModelManager.getClasspathContainer (JavaModelManager.java:824) at org.eclipse.jdt.core.JavaCore.getClasspathContainer (JavaCore.java:1191) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath (JavaProject.java:1877) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath (JavaProject.java:1788) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath (JavaProject.java:1739) at org.eclipse.jdt.internal.core.JavaProject.buildStructure (JavaProject.java:266) at org.eclipse.jdt.internal.core.Openable.generateInfos (Openable.java:183) at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed (JavaElement.java:573) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo (JavaElement.java:310) at org.eclipse.jdt.internal.core.JavaElement.getElementInfo (JavaElement.java:296) at org.eclipse.jdt.internal.core.JavaElement.getChildren (JavaElement.java:251) at org.eclipse.jdt.internal.core.JavaProject.getPackageFragmentRoots (JavaProject.java:1569) at org.eclipse.jdt.ui.StandardJavaElementContentProvider.getPackageFragmentRoots (StandardJavaElementContentProvider.java:250) at org.eclipse.jdt.ui.StandardJavaElementContentProvider.getChildren (StandardJavaElementContentProvider.java:168) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerContentProvider.getChild ren(PackageExplorerContentProvider.java:115) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart$5.getFilteredChildr en(PackageExplorerPart.java:345) at org.eclipse.jface.viewers.AbstractTreeViewer.isExpandable (AbstractTreeViewer.java:1138) at org.eclipse.jface.viewers.AbstractTreeViewer.updatePlus (AbstractTreeViewer.java:1585) at org.eclipse.jface.viewers.AbstractTreeViewer.createTreeItem (AbstractTreeViewer.java:378) at org.eclipse.jface.viewers.AbstractTreeViewer$1.run (AbstractTreeViewer.java:357) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren (AbstractTreeViewer.java:343) at org.eclipse.jface.viewers.AbstractTreeViewer$5.run (AbstractTreeViewer.java:783) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection (StructuredViewer.java:788) at org.eclipse.jface.viewers.AbstractTreeViewer.inputChanged (AbstractTreeViewer.java:773) at org.eclipse.jface.viewers.ContentViewer.setInput (ContentViewer.java:238) at org.eclipse.jface.viewers.StructuredViewer.setInput (StructuredViewer.java:972) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart.createPartControl (PackageExplorerPart.java:287) at org.eclipse.ui.internal.PartPane$1.run(PartPane.java:93) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.ui.internal.PartPane.createChildControl (PartPane.java:89) at org.eclipse.ui.internal.ViewPane.createChildControl (ViewPane.java:143) at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:276) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.ui.internal.ViewFactory.busyRestoreView (ViewFactory.java:202) at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:454) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView (ViewFactory.java:452) at org.eclipse.ui.internal.ViewFactory$ViewReference.getPart (ViewFactory.java:93) at org.eclipse.ui.internal.WorkbenchPage$1.propertyChange (WorkbenchPage.java:130) at org.eclipse.ui.internal.LayoutPart.setVisible(LayoutPart.java:248) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:259) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:625) at org.eclipse.ui.internal.presentations.PresentableViewPart.setVisible (PresentableViewPart.java:114) at org.eclipse.ui.internal.presentations.DefaultPartPresentation.selectPart (DefaultPartPresentation.java:777) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection (PartStack.java:717) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:315) at org.eclipse.ui.internal.ViewStack.createControl(ViewStack.java:99) at org.eclipse.ui.internal.PartSashContainer.createControl (PartSashContainer.java:392) at org.eclipse.ui.internal.PerspectiveHelper.activate (PerspectiveHelper.java:156) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:718) at org.eclipse.ui.internal.WorkbenchPage.setPerspective (WorkbenchPage.java:2683) at org.eclipse.ui.internal.WorkbenchPage.closePerspective (WorkbenchPage.java:1036) at org.eclipse.ui.internal.WorkbenchPage.closePerspective (WorkbenchPage.java:1006) at org.eclipse.ui.internal.WorkbenchWindow$8.widgetSelected (WorkbenchWindow.java:1971) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:84) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:59) at java.lang.reflect.Method.invoke(Method.java:390) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bf2'}
61,841
I200405111600 I've seen this before so it's not new in this build. I selected 3 or 4 lines and pressed Control-X (cut) and got a dialog that said "A SWT error has occurred. You are recommended to exit the workbench". The same thing happens if I press Control-C (copy). The text does get into the clipboard but is sometimes not cut from the original source file (Java code). (Note: I saw bugzilla entries with similar but not quite the same traceback so this may or may not be a dup.) Windows XP SP1, JDK1.4.2_04. Error May 11, 2004 21:56:41.728 Cannot set data in clipboard org.eclipse.swt.SWTError: Cannot set data in clipboard at org.eclipse.swt.dnd.DND.error(DND.java:225) at org.eclipse.swt.dnd.DND.error(DND.java:181) at org.eclipse.swt.dnd.Clipboard.setContents(Clipboard.java:289) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.doCutCopyWithIm portsOperation(ClipboardOperationAction.java:301) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.internalDoOpera tion(ClipboardOperationAction.java:245) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction$1.run (ClipboardOperationAction.java:223) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.run (ClipboardOperationAction.java:221) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:141) at org.eclipse.ui.internal.commands.Command.execute(Command.java:132) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand (WorkbenchKeyboard.java:468) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press (WorkbenchKeyboard.java:886) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent (WorkbenchKeyboard.java:927) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings (WorkbenchKeyboard.java:545) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2 (WorkbenchKeyboard.java:493) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent (WorkbenchKeyboard.java:258) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:712) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:795) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1724) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1720) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3048) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2951) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3291) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1466) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2388) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bf3'}
61,842
I200405110800 on WXP Select the Javadoc view and you get: An error has occurred when creating this view org.eclipse.jface.util.Assert$AssertionFailedException: null argument; at java.lang.Throwable.<init>(Throwable.java) at java.lang.Throwable.<init>(Throwable.java) at org.eclipse.jface.util.Assert$AssertionFailedException.<init> (Assert.java:54) at org.eclipse.jface.util.Assert.isNotNull(Assert.java:139) at org.eclipse.jface.util.Assert.isNotNull(Assert.java) at org.eclipse.jdt.internal.ui.infoviews.JavadocView$SelectionProvider.<init> (JavadocView.java:159) at org.eclipse.jdt.internal.ui.infoviews.JavadocView.internalCreatePartControl (JavadocView.java:255) at org.eclipse.jdt.internal.ui.infoviews.AbstractInfoView.createPartControl (AbstractInfoView.java:163) at org.eclipse.ui.internal.PartPane$1.run(PartPane.java:93) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.ui.internal.PartPane.createChildControl (PartPane.java:89) at org.eclipse.ui.internal.ViewPane.createChildControl (ViewPane.java:143) at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:276) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java) at org.eclipse.core.runtime.Platform.run(Platform.java) at org.eclipse.ui.internal.ViewFactory.busyRestoreView (ViewFactory.java:202) at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:454) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView (ViewFactory.java:452) at org.eclipse.ui.internal.ViewFactory$ViewReference.getPart (ViewFactory.java:93) at org.eclipse.ui.internal.WorkbenchPage$1.propertyChange (WorkbenchPage.java:130) at org.eclipse.ui.internal.LayoutPart.setVisible(LayoutPart.java:248) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:259) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:625) at org.eclipse.ui.internal.presentations.PresentableViewPart.setVisible (PresentableViewPart.java:114) at org.eclipse.ui.internal.presentations.DefaultPartPresentation.selectPart (DefaultPartPresentation.java:777) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection (PartStack.java:717) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:692) at org.eclipse.ui.internal.PartStack.presentationSelectionChanged (PartStack.java:497) at org.eclipse.ui.internal.PartStack.access$0(PartStack.java:487) at org.eclipse.ui.internal.PartStack$1.selectPart(PartStack.java:82) at org.eclipse.ui.internal.presentations.DefaultPartPresentation$4.handleEvent (DefaultPartPresentation.java:155) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:613) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2943) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1850) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:288) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:84) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:57) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:59) at java.lang.reflect.Method.invoke(Method.java:390) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
major
VERIFIED
FIXED
{'$oid': '52e9c13b54dc1c25ebdc0bf4'}
61,844
The text in a cheatsheet should be selectable and copy should be possible. Usecase: In the "Standalone SWT Application" cheetsheet in the last section is a long and complicated string the user hast to enter as VM argument in the launch configutarion. It is very unfortunate that the user cannot copy/paste the string.
normal
RESOLVED
WONTFIX
{'$oid': '52e9c13b54dc1c25ebdc0bf5'}
61,845
When running ajc (AspectJ 1.2rc1) with -incremental on a pure java project and pressing enter once or twice (without actually changing anything in the project) I repeatedly get: null java.lang.NullPointerException at org.aspectj.ajdt.internal.core.builder.AjBuildManager.doBuild(AjBuildManager.java:207) at org.aspectj.ajdt.internal.core.builder.AjBuildManager.incrementalBuild(AjBuildManager.java:101) at org.aspectj.ajdt.ajc.AjdtCommand.doCommand(AjdtCommand.java:102) at org.aspectj.ajdt.ajc.AjdtCommand.repeatCommand(AjdtCommand.java:68) at org.aspectj.tools.ajc.Main.run(Main.java:288) at org.aspectj.tools.ajc.Main.runMain(Main.java:217) at org.aspectj.tools.ajc.Main.main(Main.java:79)
major
RESOLVED
DUPLICATE
{'$oid': '52e9c13b54dc1c25ebdc0bf6'}
61,846
in i05111600 on second and subsequent starts the update.configurator, when building the PlatformConfiguration ends up reparsing all/some/many plugin.xmls. In general this can be avoided since you have timestamps etc that you can use for comparison. the offending code seems to be in SiteEntry.detectUnpackedPlugin if (dirTimestamp <= pluginsChangeStamp && pluginFile.lastModified() <= pluginsChangeStamp) return; PluginEntry entry = pluginParser.parse(pluginFile); There may be similar behaviour in detectPackedPlugin(). Note you may want to conditionalize much/all of this testing based on the osgi.checkConfiguration property. If that is false (or non-existant) then you do not need to check the configuration. In scenarios where people are tweaking the install/configuration (this is relatively rare) they should put -clean or set osgi.checkConfiguration=true to tell Eclipse to check.
normal
RESOLVED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0bf7'}
61,847
The registry reader and writer use CheckedIn/OutputStreams to write the content of an extension. This allows us to confirm that the content is consistent when read back. It is however unclear that this is really needed. If we are worried about whole file integrety then we should use something liek a SafeFile*Stream to ensure the whole file is there or not. The FileManager takes care of cases where someone comes along and updates the file while we are using it. Besides, all the Checked approach would do is throw and exception. (a better failure mode but still a failure) Consider removing this altogether.
normal
RESOLVED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0bf8'}
61,851
Found following in .log after working with site aditor: java.lang.NullPointerException at org.eclipse.pde.internal.ui.editor.site.DescriptionSection.dispose (DescriptionSection.java:112) at org.eclipse.ui.forms.ManagedForm.dispose(ManagedForm.java:145) at org.eclipse.ui.forms.editor.FormPage.dispose(FormPage.java:178) at org.eclipse.ui.forms.editor.FormEditor.dispose(FormEditor.java:232) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.dispose (PDEFormEditor.java:331) at org.eclipse.ui.internal.WorkbenchPartReference.dispose (WorkbenchPartReference.java:162) at org.eclipse.ui.internal.EditorManager$Editor.dispose (EditorManager.java:1195) at org.eclipse.ui.internal.WorkbenchPage$5.run(WorkbenchPage.java:1150) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:607) at org.eclipse.core.runtime.Platform.run(Platform.java:668) at org.eclipse.ui.internal.WorkbenchPage.disposePart (WorkbenchPage.java:1148) at org.eclipse.ui.internal.WorkbenchPage.closeEditors (WorkbenchPage.java:889) at org.eclipse.ui.internal.WorkbenchPage.closeAllEditors (WorkbenchPage.java:833) at org.eclipse.ui.internal.CloseAllAction.run(CloseAllAction.java:74) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:899) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:850) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent (ActionContributionItem.java:769) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c13c54dc1c25ebdc0bfa'}
61,848
I200405111600 Two errors Unsure of what triggered this... Unable to access archive C:\j2sdk1.4.2\jre\lib\i18n.jar Unable to access archive C:\j2sdk1.4.2\jre\classes both have similar stack traces java.util.zip.ZipException: The system cannot find the file specified at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.<init>(ZipFile.java:112) at java.util.zip.ZipFile.<init>(ZipFile.java:72) at org.eclipse.debug.internal.core.sourcelookup.SourceLookupUtils.getZipFile (SourceLookupUtils.java:67) at org.eclipse.debug.core.sourcelookup.containers.ExternalArchiveSourceContainer.g etArchive(ExternalArchiveSourceContainer.java:154) at org.eclipse.debug.core.sourcelookup.containers.ExternalArchiveSourceContainer.f indSourceElements(ExternalArchiveSourceContainer.java:72) at org.eclipse.debug.core.sourcelookup.containers.CompositeSourceContainer.findSou rceElements(CompositeSourceContainer.java:55) at org.eclipse.debug.core.sourcelookup.AbstractSourceLookupParticipant.findSourceE lements(AbstractSourceLookupParticipant.java:60) at org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector$SourceLookupQu ery.run(AbstractSourceLookupDirector.java:125) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:607) at org.eclipse.core.runtime.Platform.run(Platform.java:668) at org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector.doSourceLookup (AbstractSourceLookupDirector.java:439) at org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector.getSourceEleme nt(AbstractSourceLookupDirector.java:688) at org.eclipse.debug.core.sourcelookup.AbstractSourceLookupDirector.getSourceEleme nt(AbstractSourceLookupDirector.java:427) at org.eclipse.debug.internal.ui.views.launch.LaunchView.lookupEditorInput (LaunchView.java:696) at org.eclipse.debug.internal.ui.views.launch.LaunchView.openEditorForStackFrame (LaunchView.java:770) at org.eclipse.debug.internal.ui.views.launch.LaunchView.showEditorForCurrentSelec tion(LaunchView.java:674) at org.eclipse.debug.internal.ui.views.launch.LaunchView.selectionChanged (LaunchView.java:481) at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:159) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:607) at org.eclipse.core.runtime.Platform.run(Platform.java:668) at org.eclipse.jface.viewers.Viewer.fireSelectionChanged (Viewer.java:157) at org.eclipse.jface.viewers.StructuredViewer.updateSelection (StructuredViewer.java:1268) at org.eclipse.jface.viewers.StructuredViewer.setSelection (StructuredViewer.java:1001) at org.eclipse.debug.internal.ui.views.launch.LaunchView.autoExpand (LaunchView.java:1036) at org.eclipse.debug.internal.ui.views.launch.LaunchViewEventHandler.doHandleSuspe ndThreadEvent(LaunchViewEventHandler.java:225) at org.eclipse.debug.internal.ui.views.launch.LaunchViewEventHandler.doHandleSuspe ndEvent(LaunchViewEventHandler.java:185) at org.eclipse.debug.internal.ui.views.launch.LaunchViewEventHandler.doHandleDebug Events(LaunchViewEventHandler.java:100) at org.eclipse.debug.internal.ui.views.AbstractDebugEventHandler$1.run (AbstractDebugEventHandler.java:70) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:106) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2702) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2394) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
VERIFIED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0bfb'}
61,850
I use a version 200403261517 (M8). I added SWT library to by project's build path. Then I set the javadoc path and source attachment for the swt.jar. But the source attachment action had no effect. It showed in the dialog normally, but when you press OK and the reopen the project properties dialog, source attachment shows as (None). And when you simply add swt.jar and attach source to it, it works just file, but when you yse the add library feature, source attachment doesn't work.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13c54dc1c25ebdc0bfc'}
61,853
1) Download following zips eclipse-SDK-3.0M8-win32.zip GEF-runtime-I20040330.zip emf-runtime-I200403250631 VE-runtime-1.0M1 2) Extract all of them to c:\tools 3) Start eclipse and then from Welcome Screen select the tutorials 4) Choose Simple Java Aplication and follow the tutorial 5) Third step refered to Open/Create Java Project At this moment no, project is open. Click To Perform button - expect to see new java project dialog. Instead following error message dialog appears on the screen. "The speciefied action could not be run because plugin specified could not be located." Tried twice with the same result.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13c54dc1c25ebdc0bfd'}
61,854
After working with plug-in editors one stopped responding. Found following in the log later. I am not sure if it is for the editor freezing problem. !MESSAGE Failed to execute runnable (java.lang.NullPointerException) !STACK 0 org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) at org.eclipse.swt.SWT.error(SWT.java:2689) at org.eclipse.swt.SWT.error(SWT.java:2614) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:109) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2702) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2394) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block (ModalContext.java:136) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:261) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run (ProgressMonitorDialog.java:397) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run (ProgressMonitorJobsDialog.java:238) at org.eclipse.ui.actions.WorkspaceAction.run(WorkspaceAction.java:286) at org.eclipse.ui.actions.CloseResourceAction.run (CloseResourceAction.java:158) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:899) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:850) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent (ActionContributionItem.java:769) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706) !ENTRY org.eclipse.ui 4 4 May 11, 2004 19:35:46.695 !MESSAGE *** SWT nested exception !ENTRY org.eclipse.ui 4 0 May 11, 2004 19:35:46.706 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.pde.internal.ui.editor.plugin.ExtensionPointsSection$TableContentPr ovider.getElements(ExtensionPointsSection.java:54) at org.eclipse.jface.viewers.StructuredViewer.getRawChildren (StructuredViewer.java:494) at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren (StructuredViewer.java:441) at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren (StructuredViewer.java:545) at org.eclipse.jface.viewers.TableViewer.internalRefresh (TableViewer.java:465) at org.eclipse.jface.viewers.TableViewer.internalRefresh (TableViewer.java:449) at org.eclipse.jface.viewers.StructuredViewer$7.run (StructuredViewer.java:848) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection (StructuredViewer.java:788) at org.eclipse.jface.viewers.StructuredViewer.refresh (StructuredViewer.java:846) at org.eclipse.jface.viewers.StructuredViewer.refresh (StructuredViewer.java:808) at org.eclipse.jface.viewers.TableViewer.inputChanged (TableViewer.java:416) at org.eclipse.jface.viewers.ContentViewer.setInput (ContentViewer.java:238) at org.eclipse.jface.viewers.StructuredViewer.setInput (StructuredViewer.java:972) at org.eclipse.pde.internal.ui.editor.plugin.ExtensionPointsSection.createClient (ExtensionPointsSection.java:76) at org.eclipse.pde.internal.ui.editor.StructuredViewerSection.<init> (StructuredViewerSection.java:37) at org.eclipse.pde.internal.ui.editor.TableSection.<init> (TableSection.java:54) at org.eclipse.pde.internal.ui.editor.plugin.ExtensionPointsSection.<init> (ExtensionPointsSection.java:60) at org.eclipse.pde.internal.ui.editor.plugin.ExtensionPointsPage$ExtensionPointsBl ock.createMasterSection(ExtensionPointsPage.java:30) at org.eclipse.pde.internal.ui.editor.PDEMasterDetailsBlock.createMasterPart (PDEMasterDetailsBlock.java:37) at org.eclipse.ui.forms.MasterDetailsBlock.createContent (MasterDetailsBlock.java:73) at org.eclipse.pde.internal.ui.editor.plugin.ExtensionPointsPage.createFormContent (ExtensionPointsPage.java:61) at org.eclipse.ui.forms.editor.FormPage$1.run(FormPage.java:152) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.forms.editor.FormPage.createPartControl (FormPage.java:150) at org.eclipse.ui.forms.editor.FormEditor.pageChange (FormEditor.java:293) at org.eclipse.pde.internal.ui.editor.PDEFormEditor.pageChange (PDEFormEditor.java:160) at org.eclipse.ui.part.MultiPageEditorPart$2.widgetSelected (MultiPageEditorPart.java:151) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:613) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2916) at org.eclipse.swt.custom.CTabFolder.destroyItem(CTabFolder.java:632) at org.eclipse.swt.custom.CTabItem.dispose(CTabItem.java:135) at org.eclipse.ui.part.MultiPageEditorPart.removePage (MultiPageEditorPart.java:484) at org.eclipse.ui.forms.editor.FormEditor.removePage (FormEditor.java:200) at org.eclipse.pde.internal.ui.editor.MultiSourceEditor.removePage (MultiSourceEditor.java:42) at org.eclipse.pde.internal.ui.editor.plugin.ManifestEditor.contextRemoved (ManifestEditor.java:124) at org.eclipse.pde.internal.ui.editor.context.InputContextManager.fireContextChang e(InputContextManager.java:222) at org.eclipse.pde.internal.ui.editor.plugin.PluginInputContextManager.fireContext Change(PluginInputContextManager.java:53) at org.eclipse.pde.internal.ui.editor.context.InputContextManager.removeContext (InputContextManager.java:201) at org.eclipse.pde.internal.ui.editor.context.InputContextManager.structureChanged (InputContextManager.java:186) at org.eclipse.pde.internal.ui.editor.context.InputContextManager.access$1 (InputContextManager.java:176) at org.eclipse.pde.internal.ui.editor.context.InputContextManager$2.run (InputContextManager.java:171) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages (Synchronizer.java:106) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2702) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2394) at org.eclipse.jface.operation.ModalContext$ModalContextThread.block (ModalContext.java:136) at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:261) at org.eclipse.jface.dialogs.ProgressMonitorDialog.run (ProgressMonitorDialog.java:397) at org.eclipse.ui.internal.progress.ProgressMonitorJobsDialog.run (ProgressMonitorJobsDialog.java:238) at org.eclipse.ui.actions.WorkspaceAction.run(WorkspaceAction.java:286) at org.eclipse.ui.actions.CloseResourceAction.run (CloseResourceAction.java:158) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:899) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:850) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent (ActionContributionItem.java:769) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c13c54dc1c25ebdc0bfe'}
61,855
Create site, add a feature to "Features to build" in the site editor. The entry getst losts upon Eclipse restart and needs to be added again.
normal
RESOLVED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0bff'}
61,857
On the PC I'm working on is Windows XP with SP 2 installed. When Eclipse is started I'm opening a JAVA-Editor. At the time I'm starting to scroll down Eclipse terminates abrupt. A log-file is written. I'll attach it. Regards Bernd Kolb
blocker
RESOLVED
DUPLICATE
{'$oid': '52e9c13c54dc1c25ebdc0c00'}
61,852
VE version - 1.0.0M1. The code is /* * Created on 11.05.2004 To change the template for this generated file go to * Window - Preferences - Java - Code Generation - Code and Comments */ package test; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Point; import org.eclipse.swt.widgets.TreeItem; /** * @author Frolovk */ public class SWTTest { private org.eclipse.swt.widgets.Shell sShell = null; // @jve:visual-info // decl-index=0 // visual-constraint="6,5" private org.eclipse.swt.widgets.Button button = null; private org.eclipse.swt.widgets.Tree tree = null; /** * This method initializes sShell */ private void createSShell() { org.eclipse.swt.layout.GridData ivjTreeGridData = new org.eclipse.swt.layout.GridData(); org.eclipse.swt.layout.GridLayout ivjGridLayout = new org.eclipse.swt.layout.GridLayout(); sShell = new org.eclipse.swt.widgets.Shell(); button = new org.eclipse.swt.widgets.Button(sShell, org.eclipse.swt.SWT.NONE); tree = new org.eclipse.swt.widgets.Tree(sShell, org.eclipse.swt.SWT.NONE); sShell.setSize(new org.eclipse.swt.graphics.Point(600, 278)); sShell.setLayout(ivjGridLayout); sShell.setText("Window Caption"); ivjGridLayout.numColumns = 2; button.setText("Button"); ivjTreeGridData.grabExcessHorizontalSpace = true; ivjTreeGridData.grabExcessVerticalSpace = true; ivjTreeGridData.horizontalAlignment = org.eclipse.swt.layout.GridData.FILL; ivjTreeGridData.verticalAlignment = org.eclipse.swt.layout.GridData.FILL; tree.addMouseTrackListener(new org.eclipse.swt.events.MouseTrackListener() { public void mouseHover (org.eclipse.swt.events.MouseEvent e) { } public void mouseEnter (org.eclipse.swt.events.MouseEvent e) { } public void mouseExit (org.eclipse.swt.events.MouseEvent e) { } }); tree.setLayoutData(ivjTreeGridData); } /* * Temporary main generation */ public static void main(String[] args) { // before you run this, make sure to set up the following in // the launch configuration (Arguments->VM Arguments) for the correct // SWT lib. path // the following is a windows example, // - Djava.library.path="installation_directory\plugins\org.eclipse.swt.win32_3.0.0 \os\win32\x86" SWTTest test = new SWTTest(); test.createSShell(); test.sShell.open(); org.eclipse.swt.widgets.Display display = org.eclipse.swt.widgets.Display.getDefault(); while (!test.sShell.isDisposed()) { if (!display.readAndDispatch()) display.sleep(); } display.dispose(); } } Exception stack trace is: java.lang.NullPointerException at org.eclipse.jem.internal.proxy.swt.JavaStandardSWTBeanConstants.getDisplayPro xy(JavaStandardSWTBeanConstants.java:117) at org.eclipse.jem.internal.proxy.swt.JavaStandardSWTBeanConstants.invokeSyncEx ec(JavaStandardSWTBeanConstants.java:135) at org.eclipse.ve.internal.swt.WidgetProxyAdapter.invokeSyncExec (WidgetProxyAdapter.java:44) at org.eclipse.ve.internal.swt.ShellProxyAdapter.beanProxyAllocation (ShellProxyAdapter.java:20) at org.eclipse.ve.internal.java.core.BeanProxyAdapter.primInstantiateBeanProxy (BeanProxyAdapter.java:822) at org.eclipse.ve.internal.java.core.BeanProxyAdapter.instantiateBeanProxy (BeanProxyAdapter.java:752) at org.eclipse.ve.internal.swt.FreeFormControlHostAdapter.add (FreeFormControlHostAdapter.java:67) at org.eclipse.ve.internal.swt.ControlProxyAdapter.setTarget (ControlProxyAdapter.java:292) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl$EAdapterList.didAdd (BasicNotifierImpl.java:71) at org.eclipse.emf.common.util.BasicEList.addUnique (BasicEList.java:604) at org.eclipse.emf.common.util.BasicEList.add(BasicEList.java:584) at org.eclipse.emf.common.notify.impl.BasicNotifierImpl$EAdapterList.add (BasicNotifierImpl.java:115) at org.eclipse.emf.common.notify.impl.AdapterFactoryImpl.associate (AdapterFactoryImpl.java:161) at org.eclipse.emf.common.notify.impl.AdapterFactoryImpl.adaptNew (AdapterFactoryImpl.java:113) at org.eclipse.emf.ecore.util.EcoreUtil.getRegisteredAdapter (EcoreUtil.java:96) at org.eclipse.ve.internal.java.core.BeanProxyUtilities.getBeanProxyHost (BeanProxyUtilities.java:341) at org.eclipse.ve.internal.java.core.CompositionProxyAdapter.initSetting (CompositionProxyAdapter.java:138) at org.eclipse.ve.internal.java.core.CompositionProxyAdapter.initBeanProxy (CompositionProxyAdapter.java:117) at org.eclipse.ve.internal.java.codegen.editorpart.JavaVisualEditorPart$Setup.run (JavaVisualEditorPart.java:1305) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:62)
normal
CLOSED
WORKSFORME
{'$oid': '52e9c13c54dc1c25ebdc0c01'}
61,859
I just installed eclipse for the first time: 3.0M8 When I tried to install CDT 2.0 M8 (following instructions on the site) I kept hitting a brick wall. The problem: the core files aren't included in the cdt M8 release I had to install the M7 core files, and then install the M8 build files. I think either the installation info should be updated to reflect this, or the core files should be included with the M8 download.
normal
RESOLVED
INVALID
{'$oid': '52e9c13c54dc1c25ebdc0c02'}
61,858
Currently (with Eclipse 3.0 M8) one should explicitly specify -configuration startup option (to a write-enabled location) in order to be able start to Eclipse from a shared read-only installation. Without specifying it Eclipse always tries to create the "configuration" directory in the Eclipse installation/program directory, and fails to start giving me a message box: Eclipse: <eclipse>\configuration\#.log Where <eclipse> is the path of the Eclipse program directory and # stands for a decimal number which seems like the current time milliseconds. Of course there's no such file created because the location mentioned is read-only.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13c54dc1c25ebdc0c03'}
61,856
Right clicking on site.xml and choosing PDE Tools -> Build Site from the context menu does not do anything. No errors noted in the log. On the other hand clicking Build All inside site editor works. I am not sure if these two actions are supposed to do the same, or there is more steps that Build Site needs to do and they cause some failure.
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c13c54dc1c25ebdc0c04'}
61,860
20040512 I currently get a call to acceptPotentialMethodDeclaration on return types of existing methods public Vector foo() {} ^code assist here what leads me to suggest to create 'Vec'. this seems like a bug. there are also no overridden method suggested at such locations.
normal
RESOLVED
INVALID
{'$oid': '52e9c13c54dc1c25ebdc0c05'}
61,861
build I20040511 (4pm?) Declaration view was visible and I positioned the cursor via a mouse click over an interface. The Declaration showed the source. Then I switched to the JavaDoc view and got the error. org.eclipse.jface.util.Assert$AssertionFailedException: null argument; at org.eclipse.jface.util.Assert.isNotNull(Assert.java:139) at org.eclipse.jface.util.Assert.isNotNull(Assert.java:116) at org.eclipse.jdt.internal.ui.infoviews.JavadocView$SelectionProvider.<init> (JavadocView.java:159) at org.eclipse.jdt.internal.ui.infoviews.JavadocView.internalCreatePartControl (JavadocView.java:255) at org.eclipse.jdt.internal.ui.infoviews.AbstractInfoView.createPartControl (AbstractInfoView.java:163) at org.eclipse.ui.internal.PartPane$1.run(PartPane.java:93) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:607) at org.eclipse.core.runtime.Platform.run(Platform.java:668) at org.eclipse.ui.internal.PartPane.createChildControl (PartPane.java:89) at org.eclipse.ui.internal.ViewPane.createChildControl (ViewPane.java:143) at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:276) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:607) at org.eclipse.core.runtime.Platform.run(Platform.java:668) at org.eclipse.ui.internal.ViewFactory.busyRestoreView (ViewFactory.java:202) at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:454) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView (ViewFactory.java:452) at org.eclipse.ui.internal.ViewFactory$ViewReference.getPart (ViewFactory.java:93) at org.eclipse.ui.internal.WorkbenchPage$1.propertyChange (WorkbenchPage.java:130) at org.eclipse.ui.internal.LayoutPart.setVisible(LayoutPart.java:248) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:259) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:625) at org.eclipse.ui.internal.presentations.PresentableViewPart.setVisible (PresentableViewPart.java:114) at org.eclipse.ui.internal.presentations.DefaultPartPresentation.selectPart (DefaultPartPresentation.java:777) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection (PartStack.java:717) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:692) at org.eclipse.ui.internal.PartStack.presentationSelectionChanged (PartStack.java:497) at org.eclipse.ui.internal.PartStack.access$0(PartStack.java:487) at org.eclipse.ui.internal.PartStack$1.selectPart(PartStack.java:82) at org.eclipse.ui.internal.presentations.DefaultPartPresentation$4.handleEvent (DefaultPartPresentation.java:155) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:613) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2916) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:1823) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:287) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0c06'}
61,863
Duplicate mnemonic on Target Platform preferences page: &Location conflicts with Re&load. I suggest to use &Reload.
trivial
RESOLVED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0c07'}
61,865
Hi, Recently i noticed a super slow down in performance when trying to open even a single file. The fact is that I do have a few projects, but i just don't see why it's performance should slow down when trying to open a file? Below are the memory dumps gotten today showing OOM. MESSAGE Bundle update@/m:/eclipse/plugins/org.eclipse.v4all_2.1.1.9/ [128] was not resolved. !SUBENTRY 1 org.eclipse.osgi May 12, 2004 12:33:32.911 !MESSAGE Missing required bundle org.apache.xerces_null,null. !ENTRY org.eclipse.ui 4 4 May 12, 2004 17:49:39.474 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 May 12, 2004 17:49:39.634 !MESSAGE unable to create new native thread !STACK 0 java.lang.OutOfMemoryError: unable to create new native thread at java.lang.Thread.start(Native Method) at org.eclipse.jface.text.reconciler.AbstractReconciler.startReconciling (AbstractReconciler.java:507) at org.eclipse.jface.text.reconciler.AbstractReconciler$Listener.inputDocumentChang ed(AbstractReconciler.java:280) at org.eclipse.jface.text.TextViewer.fireInputDocumentChanged (TextViewer.java:2297) at org.eclipse.jface.text.TextViewer.setDocument(TextViewer.java:2346) at org.eclipse.jface.text.source.SourceViewer.setDocument (SourceViewer.java:454) at org.eclipse.jface.text.source.projection.ProjectionViewer.setDocument (ProjectionViewer.java:258) at org.eclipse.jface.text.source.SourceViewer.setDocument (SourceViewer.java:414) at org.eclipse.ui.texteditor.AbstractTextEditor.initializeSourceViewer (AbstractTextEditor.java:2577) at org.eclipse.ui.texteditor.AbstractTextEditor.createPartControl (AbstractTextEditor.java:2348) at org.eclipse.ui.texteditor.StatusTextEditor.createPartControl (StatusTextEditor.java:53) at org.eclipse.ui.texteditor.AbstractDecoratedTextEditor.createPartControl (AbstractDecoratedTextEditor.java:279) at org.eclipse.jdt.internal.ui.javaeditor.JavaEditor.createPartControl (JavaEditor.java:3257) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor.createPartControl (CompilationUnitEditor.java:1594) at org.eclipse.ui.internal.PartPane$1.run(PartPane.java:93) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:604) at org.eclipse.core.runtime.Platform.run(Platform.java:545) at org.eclipse.ui.internal.PartPane.createChildControl (PartPane.java:89) at org.eclipse.ui.internal.PartPane.createControl(PartPane.java:150) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection (PartStack.java:659) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:649) at org.eclipse.ui.internal.EditorWorkbook.setSelection (EditorWorkbook.java:131) at org.eclipse.ui.internal.EditorWorkbook.setVisibleEditor (EditorWorkbook.java:232) at org.eclipse.ui.internal.EditorPresentation.setVisibleEditor (EditorPresentation.java:287) at org.eclipse.ui.internal.EditorPresentation.openEditor (EditorPresentation.java:227) at org.eclipse.ui.internal.EditorManager$2.run(EditorManager.java:550) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:84) at org.eclipse.ui.internal.EditorManager.createEditorTab (EditorManager.java:539) at org.eclipse.ui.internal.EditorManager.openInternalEditor (EditorManager.java:635) at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor (EditorManager.java:438) at org.eclipse.ui.internal.EditorManager.openEditor (EditorManager.java:426) at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor (WorkbenchPage.java:2146) at org.eclipse.ui.internal.WorkbenchPage.access$6 (WorkbenchPage.java:2089) at org.eclipse.ui.internal.WorkbenchPage$9.run (WorkbenchPage.java:2076) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:84) at org.eclipse.ui.internal.WorkbenchPage.openEditor (WorkbenchPage.java:2071) at org.eclipse.ui.ide.IDE.openEditor(IDE.java:265) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor (EditorUtility.java:137) at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor (EditorUtility.java:115) at org.eclipse.jdt.internal.ui.actions.OpenActionUtil.open (OpenActionUtil.java:49) at org.eclipse.jdt.ui.actions.OpenAction.run(OpenAction.java:161) at org.eclipse.jdt.ui.actions.OpenAction.run(OpenAction.java:147) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun (SelectionDispatchAction.java:212) at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run (SelectionDispatchAction.java:188) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerActionGroup.handleOpen (PackageExplorerActionGroup.java:327) at org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart$4.open (PackageExplorerPart.java:302) at org.eclipse.jface.viewers.StructuredViewer$2.run (StructuredViewer.java:400) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:604) at org.eclipse.core.runtime.Platform.run(Platform.java:545) at org.eclipse.jface.viewers.StructuredViewer.fireOpen (StructuredViewer.java:398) at org.eclipse.jface.viewers.StructuredViewer.handleOpen (StructuredViewer.java:596) at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen (StructuredViewer.java:685) at org.eclipse.jface.util.OpenStrategy.fireOpenEvent (OpenStrategy.java:211) at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:206) at org.eclipse.jface.util.OpenStrategy$1.handleEvent (OpenStrategy.java:238) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents (Display.java:2594) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2272) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench (PlatformUI.java:140) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684) !ENTRY org.eclipse.osgi May 12, 2004 17:49:40.105 !MESSAGE Application error !STACK 1 java.lang.VerifyError: (class: org/eclipse/ui/internal/Workbench$11, method: run signature: ()V) Out Of Memory at org.eclipse.ui.internal.Workbench.saveAllEditors (Workbench.java:472) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:398) at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:389) at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:561) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:84) at org.eclipse.ui.internal.Workbench.close(Workbench.java:559) at org.eclipse.ui.internal.WorkbenchConfigurer.emergencyClose (WorkbenchConfigurer.java:150) at org.eclipse.ui.internal.ide.IDEExceptionHandler.closeWorkbench (IDEExceptionHandler.java:104) at org.eclipse.ui.internal.ide.IDEExceptionHandler.handleException (IDEExceptionHandler.java:84) at org.eclipse.ui.internal.ide.IDEWorkbenchAdvisor.eventLoopException (IDEWorkbenchAdvisor.java:241) at org.eclipse.ui.internal.ExceptionHandler.handleException (ExceptionHandler.java:53) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1357) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench (PlatformUI.java:140) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684) t Thanks
critical
RESOLVED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0c08'}
61,864
I build 200405110010 I copied a file (under version control) to the same package using copy/paste. The file was correctly created but did not show up in the package explorer. I opened a new resource perspective and it showed up there. After eclipse restart it shows correctly in the package explorer. There was nothing in the log file.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13c54dc1c25ebdc0c09'}
61,866
I20040511 (4pm) I found this in the log allthough I didn't notice any problems during editing Java files. I'm not sure if jface.text is Text or UI component. Please reassign if necessary. !ENTRY org.eclipse.ui 4 4 Mai 12, 2004 10:52:27.500 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 Mai 12, 2004 10:52:27.500 !MESSAGE java.util.ConcurrentModificationException !STACK 0 java.util.ConcurrentModificationException at java.util.AbstractList$Itr.checkForComodification (AbstractList.java:448) at java.util.AbstractList$Itr.next(AbstractList.java:419) at java.util.AbstractCollection.remove(AbstractCollection.java:254) at org.eclipse.jface.text.AbstractDocument.removeDocumentListener (AbstractDocument.java:264) at org.eclipse.text.edits.UndoCollector.disconnect (UndoCollector.java:38) at org.eclipse.text.edits.TextEditProcessor.executeDo (TextEditProcessor.java:167) at org.eclipse.text.edits.TextEdit.dispatchPerformEdits (TextEdit.java:664) at org.eclipse.text.edits.TextEditProcessor.performEdits (TextEditProcessor.java:130) at org.eclipse.ltk.core.refactoring.TextChange.perform (TextChange.java:334) at org.eclipse.jdt.internal.ui.text.correction.ChangeCorrectionProposal.performCha nge(ChangeCorrectionProposal.java:101) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.performChange (CUCorrectionProposal.java:259) at org.eclipse.jdt.internal.ui.text.correction.LinkedCorrectionProposal.performCha nge(LinkedCorrectionProposal.java:195) at org.eclipse.jdt.internal.ui.text.correction.CUCorrectionProposal.apply (CUCorrectionProposal.java:289) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.insertProposal (CompletionProposalPopup.java:398) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.selectProposalWith Mask(CompletionProposalPopup.java:361) at org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$19 (CompletionProposalPopup.java:357) at org.eclipse.jface.text.contentassist.CompletionProposalPopup$3.widgetDefaultSel ected(CompletionProposalPopup.java:322) at org.eclipse.swt.widgets.TypedListener.handleEvent (TypedListener.java:96) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
VERIFIED
FIXED
{'$oid': '52e9c13c54dc1c25ebdc0c0a'}
61,867
I20040511 (4pm) I selected some text in a Java editor and pressed Ctrl+X (Cut). !ENTRY org.eclipse.ui 4 4 Mai 12, 2004 11:14:20.328 !MESSAGE The command for the key you pressed failed !ENTRY org.eclipse.ui 4 0 Mai 12, 2004 11:14:20.328 !MESSAGE The command for the key you pressed failed !STACK 0 java.lang.NullPointerException at org.eclipse.text.edits.UndoCollector.documentAboutToBeChanged (UndoCollector.java:62) at org.eclipse.jface.text.AbstractDocument.fireDocumentAboutToBeChanged (AbstractDocument.java:577) at org.eclipse.jface.text.AbstractDocument.replace (AbstractDocument.java:984) at org.eclipse.jdt.internal.ui.javaeditor.PartiallySynchronizedDocument.replace (PartiallySynchronizedDocument.java:92) at org.eclipse.jface.text.source.projection.ProjectionViewer.copyToClipboard (ProjectionViewer.java:1156) at org.eclipse.jface.text.source.projection.ProjectionViewer.doOperation (ProjectionViewer.java:1052) at org.eclipse.jdt.internal.ui.javaeditor.JavaSourceViewer.doOperation (JavaSourceViewer.java:151) at org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$AdaptedSourceViewe r.doOperation(CompilationUnitEditor.java:197) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.doCutCopyWithIm portsOperation(ClipboardOperationAction.java:293) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.internalDoOpera tion(ClipboardOperationAction.java:245) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction$1.run (ClipboardOperationAction.java:223) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.jdt.internal.ui.javaeditor.ClipboardOperationAction.run (ClipboardOperationAction.java:221) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.ui.commands.ActionHandler.execute (ActionHandler.java:141) at org.eclipse.ui.internal.commands.Command.execute(Command.java:132) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand (WorkbenchKeyboard.java:468) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press (WorkbenchKeyboard.java:886) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent (WorkbenchKeyboard.java:927) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings (WorkbenchKeyboard.java:545) at org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2 (WorkbenchKeyboard.java:493) at org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent (WorkbenchKeyboard.java:258) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:712) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:795) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1724) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1720) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3048) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2951) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3291) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1466) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2388) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c0b'}
61,869
The IColorProvider can be implemented by a label provider to provide background and foreground colors to a viewer. This should be changed to set the colors for individual cells, as is possible with the new SWT functionality already implemented in SWT. Changes: 1) IColorProvider - two supplementing methods Color getForeground(Object element, int index); Color getBackground(Object element, int index); 2) References to IColorProvider to the new methods doUpdateItem(Item, Object) - org.eclipse.jface.viewers.TableTreeViewer (3 matches) doUpdateItem(Item, Object) - org.eclipse.jface.viewers.TreeViewer (3 matches) doUpdateItem(Widget, Object, boolean) - org.eclipse.jface.viewers.TableViewer (3 matches)
enhancement
VERIFIED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c0c'}
61,868
I-build 2004-05-11-16:00 I don't know how I got into this state, but I ended up with a debug view that contained two tree viewers. See the attached picture to see what I mean:
major
VERIFIED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c0d'}
61,870
1) I create a Panel 2) Change it to BoxLayout (X_Axis) => This change is ignored anyhow and remains on FlowLayout 3) Put a Button in it 4) Chang it to BoxLayout (X_Axis) => code is generated like jPanel3.setLayout(new BoxLayout(this,javax.swing.BoxLayout.X_AXIS)); causes a Java-Error: java.awt.AWTError: BoxLayout can't be shared the correct code should be: jPanel3.setLayout(new BoxLayout(jPanel3,javax.swing.BoxLayout.X_AXIS));
normal
CLOSED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c0e'}
61,872
I20040511 1. create a library called SWT, add the swt.jar into it 2. create a project, add the SWT library to the build path 3. expand the project in the package explorer, look at the library, the JAR (swt.jar) in it and the content of the JAR 4. select swt.jar, open properties (context menu), set a source attachment (doesn't matter what, e.g. take itself swt.jar), press ok -> the package explorer get updated, source attachment adornment is now visible on JAR image 5. again select swt.jar, open properties and clear the source attachment repeat steps 4. and 5. and observe the package explorer: suddedly the package explorer doesn't show the JAR contents anymore 5. double click the SWT library in the package explorer. Suddly the contents are back in the state wher the JAR has no children, I debugged and found that no classpath entry was found for the package fragment root element. The classpath in that state only consisted of the JRE library.
major
VERIFIED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c0f'}
61,871
Problems view is nice and its content is growing day after day. But when we have to handle a huge amount of Problems we should in some case have to disable in compiler options the problems to view only those you are to take into account. It will be more accurate to give the possibility in sorting, filtering or even in the UI to show some king of "Category" of the problem. This is due to the fact that when we sort on Description some problems mix with another and we could sometime skip some of them. This is worse when we work on localized Eclipse because the description could be completely different May be it will be possible to surface some information from org.eclipse.jdt.core.compiler.IProblem
enhancement
RESOLVED
DUPLICATE
{'$oid': '52e9c13d54dc1c25ebdc0c10'}
61,873
possibility to add * package to "organize imports" preferences so that you could specify the place for unknown imports. eg if you didn't specify "junit" in organize imports preferences presently the according import statements are put after the last (in my case java) import statement, which is wrong according to our policy. If the feature had existed the entries in the preferences would be something like: com.aqris, com, net, org, *, javax, java and the alleged junit imports would go in place of *
enhancement
RESOLVED
WONTFIX
{'$oid': '52e9c13d54dc1c25ebdc0c11'}
61,874
20040512 don't know how I got the first one, but after that I got one every second java.lang.NullPointerException at java.lang.Throwable.<init>(Throwable.java) at java.lang.Throwable.<init>(Throwable.java) at java.lang.NullPointerException.<init>(NullPointerException.java:60) at org.eclipse.ui.internal.progress.AnimationManager$1.runInUIThread(AnimationManager.java:70) at org.eclipse.ui.progress.UIJob$1.run(UIJob.java) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.jface.window.Window.runEventLoop(Window.java) at org.eclipse.jface.window.Window.open(Window.java:648) at org.eclipse.ui.dialogs.PropertyDialogAction.run(PropertyDialogAction.java:177) at org.eclipse.jface.action.Action.runWithEvent(Action.java:881) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:899) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:850) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent(ActionContributionItem.java:769) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41) at java.lang.reflect.Method.invoke(Method.java:386) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13d54dc1c25ebdc0c12'}
61,862
Hi! I have got multiple markers at one line. Markers are highlighted at two places (as always): * overview of all markers behind the vertical scroll bar * detailed view of some markers in source text view Sometimes there are multiple markers at the same word and sometimes each of them may have another color, but the system can only display one color of them. Usually the color red is for "errors" and yellow for warnings and usually i would expect the most seriuous color (e.g. red) to overwrite all other colors (e.g. yellow) in such cases. But maybe you won't. But even if you won't, I would expect the corresponding markers at the scroll bar and the marker in the source view to have the same color. I add a screen shot that prooves, that this is not always true. best regards Thorsten van Ellen
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c13d54dc1c25ebdc0c13'}
61,875
Build 20040506 + JDTCore as off 5/12/2004 In a runtime self-hosting workbench, I selected all projects in package explorer and deleted them all (including corresponding resources). Got lot of exceptions of the form: org.eclipse.core.internal.resources.ResourceException: Resource /org.eclipse.pde.ui does not exist. at org.eclipse.core.internal.resources.Resource.checkExists (Resource.java:309) at org.eclipse.core.internal.resources.Resource.checkAccessible (Resource.java:177) at org.eclipse.core.internal.resources.Project.checkAccessible (Project.java:116) at org.eclipse.core.internal.resources.Resource.createMarker (Resource.java:626) at org.eclipse.jdt.internal.core.JavaProject.createClasspathProblemMarker (JavaProject.java:706) at org.eclipse.jdt.internal.core.JavaProject.getResolvedClasspath (JavaProject.java:1891) at org.eclipse.jdt.internal.core.DeltaProcessingState$ProjectUpdateInfo.updateProj ectReferencesIfNecessary(DeltaProcessingState.java:98) at org.eclipse.jdt.internal.core.DeltaProcessor.resourceChanged (DeltaProcessor.java:1903) at org.eclipse.jdt.internal.core.DeltaProcessingState.resourceChanged (DeltaProcessingState.java:414) at org.eclipse.core.internal.events.NotificationManager$2.run (NotificationManager.java:268) at org.eclipse.core.internal.runtime.InternalPlatform.run (InternalPlatform.java:604) at org.eclipse.core.runtime.Platform.run(Platform.java:545) at org.eclipse.core.internal.events.NotificationManager.notify (NotificationManager.java:260) at org.eclipse.core.internal.events.NotificationManager.broadcastChanges (NotificationManager.java:148) at org.eclipse.core.internal.events.AutoBuildJob.broadcastChanges (AutoBuildJob.java:76) at org.eclipse.core.internal.events.AutoBuildJob.doBuild (AutoBuildJob.java:148) at org.eclipse.core.internal.events.AutoBuildJob.run (AutoBuildJob.java:189) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:66)
normal
RESOLVED
WONTFIX
{'$oid': '52e9c13d54dc1c25ebdc0c15'}
61,877
build I20040511 + jdtcore head add the following test to org.eclipse.jdt.core.tests.dom.ASTConverterTest public void test0XXX() throws JavaModelException { ICompilationUnit sourceUnit = getCompilationUnit("Converter" , "src", "test0XXX", "Test.java"); CompilationUnit result = (CompilationUnit)runConversion(sourceUnit, true); TypeDeclaration declaration = (TypeDeclaration)result.types().get(0); Block body = declaration.getMethods()[0].getBody(); ExpressionStatement expr = (ExpressionStatement)body.statements().get(0); MethodInvocation invocation = (MethodInvocation) expr.getExpression(); InfixExpression node = (InfixExpression)invocation.arguments().get(0); node.resolveTypeBinding(); } Test.java package test0XXX; public class Test { void foo() { "aaa".equals("a" + "a" + "a"); } } When you run the test an ClassCastException occur. This bug cause a failure of a JDT/UI test org.eclipse.jdt.ui.tests.quickfix.AssistQuickFixTest#testInvertEquals21()
normal
VERIFIED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c16'}
61,879
Using build I200405110800. Scenario is still the same than bug 55207, bug 55289...: merge JDK_1_5 branch with HEAD. There's one file which is quite big in jdt-core (223K): org.eclipse.jdt.internal.compiler.parser.Parser.java Unfortunately, this file has many changes in JDK_1_5 branch and when I need to merge it, it takes a long while to compute differences... This is really bad when I got conflict and need to look inside method as it recomputes each time I select a new method in structure pane! Last problem is that it recomputes twice when selecting a method created in JDK_1_5 and which does not exist in HEAD stream. Perhaps are there some optimizaiton in this area which can be done? Set severity to critical as I'm afraid merge would not be possible with this performance problem if during one merge I had lot of conflict in this file.
critical
RESOLVED
DUPLICATE
{'$oid': '52e9c13d54dc1c25ebdc0c17'}
61,878
Build 20040506 When expanding the Plug-in Dependencies container, it is counter-intuitive to hide project dependencies. These are shown in the build path wizard itself, when you expand this container. I would expect to see them all the time.
normal
VERIFIED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c18'}
61,881
When headless ant runs into a failure during our automated tests (we use the same framework as you guys) I notice the following message: Following error occured while executing this line occured is spelled wrong; it should be occurrred.
normal
CLOSED
INVALID
{'$oid': '52e9c13d54dc1c25ebdc0c19'}
61,880
Tested using SUSE SLE ver 9 Beta using build 06, May 2004 Create a new simple project with Arabic name. The Arabic is displayed correctly in the project name text box. But the problem is that the Arabic text is displayed in the navigator without shaping even by setting the fonts from Window -> Preferences -> Workbench -> Colors and Fonts to an Arabic Font. The problem also appear in the tasks panel, Bookmarks view, File menu, Workbench title bar, … etc It seems that those items are using the system default fonts. I tried to set the system default fonts from the Control center to an Arabic font but I failed, any ideas how to do that on SUSE (KDE)? Does DBCS language face the same problem on SUSE? Red Hat is working fine, as we can set the user language, which affects the system fonts as well. Can we add a new user prefrence item for setting the font used by those controls instead of using system default fonts?
normal
RESOLVED
INVALID
{'$oid': '52e9c13d54dc1c25ebdc0c1a'}
61,882
Build 20040506 Using the attached test case (3 projects with one indirectly referencing binary missing on classpath), the editor is not showing the same errors during reconcile as the builder does.
normal
VERIFIED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c1b'}
61,883
I would like to see the last time a Team synchronization happened. I have syncs turned on in the background and because of this I don't always know when a sync is happening. Therefore, every time I go to check in code or update from the repository, I feel that I must sync again. This seems to defeat the purpose of having schedueld syncs happening in the background. If there was a timestamp component to the synchronization view, I would know whether or not a sync has occurred very recently and could save myself a lot of time.
enhancement
RESOLVED
FIXED
{'$oid': '52e9c13d54dc1c25ebdc0c1c'}
61,884
This is a thing I fight with for a long time already and is still present in E3M8 (I should have reported it earlier): My New Java File template looks like this: /* $$Id$$ */ ${package_declaration} ${typecomment} ${type_declaration} /* * $$Log$$ */ and is terminated by a newline. Right after editting the template to look like this, it is applied correctly and my new java files end with a blank line (which is IMHO a nice practice). But as soon as I restart Eclipse, the terminating newline disappears from the template and so any new java files created from the template end right after the "*/" in the footer, which I don't like. I believe that not preserving the terminating newline is a bug. It may also apply to other templates than New Java Files.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13e54dc1c25ebdc0c1d'}
61,887
Steps to reproduce (Eclipse 3.0M8): After fresh start of Eclipse, go to Preferences of Java Code Formatter, open details of a profile and select the Line Wrapping tab. By default, the preview does no wrapping and thus does not preview. As soon as you go to the "Set line width for preview window" field and change the value there (e.g. to anything and then back to forty, which is the prefilled value), it start working correctly.
minor
RESOLVED
DUPLICATE
{'$oid': '52e9c13e54dc1c25ebdc0c1e'}
61,885
The following is an email from the build process about a failed build. The real reason the build failed was because the version of the org.eclipse.webdav plug-in in the map file didn't exist in the repository. We need to have a better message in the builder in order to determine what happened. Build I20040511 (Timestamp: 200405112000): Following error occured while executing this line /builds/I200405112000/eclipseInternalBuildTools/all.xml:173: Following error occured while executing this line /builds/I200405112000/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.0.0/scripts/build.xml:22: Following error occured while executing this line /builds/I200405112000/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.0.0/scripts/build.xml:61: Following error occured while executing this line /builds/I200405112000/org.eclipse.releng.eclipsebuilder/team.extras/customTargets.xml:8: Following error occured while executing this line /builds/I200405112000/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.0.0/scripts/genericTargets.xml:62: org.eclipse.core.runtime.CoreException: Cannot find plug-in: org.eclipse.team.ftp_0.0.0.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13e54dc1c25ebdc0c1f'}
61,886
One thing that seems to be a bug in the Code Formatter profile editting dialog: When "Before package declaration" (page Blank Lines) is set to zero, it is not correctly previewed - one blank line is shown before the package declaration. However it seems to work ok when applying to a java file (by Ctrl+Shift+F, the blank line is not created). Another thing may be considered an enhancement, but I think it's a problem it's missing: Possibility to configure number of blank lines that appear at the end of a file (compilation unit). Currently there is none, which I do not like - my practice to always put a newline after the last closing curly brace. And last thing - inconsistency between the Code Formatter and default New Java File template: Since the blank lines are defined in the Code Formatter, the New Java File template should not include blank lines as it does by default (they should be considered parts of the elements like ${package_declaration} or ${type_declaration}. Now when creating a new java file (with the default settings), it has some blank lines duplicated. It can be fixed by doing Ctrl+Shift+F, but when using the default settings (default formatting and default templates), any new file should already conform to the formatting. I hope these issues are close to each other enough to be covered by a single bug report. If not, I can enter separate ones.
minor
RESOLVED
WONTFIX
{'$oid': '52e9c13e54dc1c25ebdc0c20'}
61,889
Package Explorer view menu already have several items that allows to quickly enable/disable some filters (e.g. referenced libraries and .* files). Please add a menu item to disable/enable pattern filter.
enhancement
RESOLVED
WONTFIX
{'$oid': '52e9c13e54dc1c25ebdc0c21'}
61,888
On page Control Statements, I think that in "Keep 'return' or 'throws' clause on one line", 'throws' is supposed to be 'throw'. (Eclipse version 3.0M8)
trivial
RESOLVED
FIXED
{'$oid': '52e9c13e54dc1c25ebdc0c22'}
61,891
I was trying to access to the /usr/www/htdocs/site.ext/ directory of my server, the common URL is ftp://myserver.ext/usr/www/htdocs/site.ext/. This is accepted by FileZilla, Internet Explorer, and others. Actually the FTP team component tries to go for the ~/usr/www/htdocs/site.ext/ directory, which does not actually exists. I don't know if this is a correct assumption, and if there is a way of indicating in an ftp URL wether the directory is absolute or relative to the home directory. The solution i've found is to put a double slash : ftp://myserver.ext//usr/www/htdocs/site.ext/ ... this works, but is not the same way other ftp clients work. I think a good solution would be to assume the path is always absolute, or to ask the user for server name, port and directory and build the URL prorammatically if needed.
minor
CLOSED
WONTFIX
{'$oid': '52e9c13e54dc1c25ebdc0c23'}
61,892
I'm used to format my code in a way, that even blank lines are "indented" to the current level in their context. Example: class Type { $ method1() {$ int var;$ $ if (expression) {$ statement1;$ $ } else {$ statement2;$ }$ }$ $ abstract method2(); $ } The '$'s are used to ilustrate where a line actually ends. Currently it is not possible to configure the Code Formatter this way. It would always change the blank lines so that they would contain no whitespaces and the '$' would be at the first position. Ideally, there should be a Code Formatter preference that would auto-indent the blank lines exactly like this (rather than just preserve the empty lines as they are), so it would fix cases when there is more whitespaces than desired, i.e. cases like: statement1;$ $ statement2;$
enhancement
RESOLVED
WONTFIX
{'$oid': '52e9c13e54dc1c25ebdc0c24'}
61,895
I displayed 2 instances of same view, then exit the session. The next time I started the RPC workbench, I saw 2 same views, but one view had "empty" content, and the other had right content. And, when I used saveState(), I noticed that .metadata/.plugins/org.eclipse.ui.workbench/workbench.xml had no secondaryIds on its content. So I thought, multiple view instances of same view shouldn't be opened when you exit session, at least on 3.0M8. Are there any ways to preserve multi-views state over sessions?
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13e54dc1c25ebdc0c25'}
61,893
The following test case, when run on Windows, prints the notification that a controlMoved event was produced. But this does not happen when run on Photon. This is significant to us because in our AWT implementation, we need to create the moved event if it is not given to us by SWT, so we need consistent behavior. Right now, our code assumes that the event is produced by SWT (we prefer the behavior that Windows exhibits). import org.eclipse.swt.graphics.*; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; public class SWTImageTest { Display display; Shell shell; Image image; public void run() { display = new Display(); shell = new Shell(display); shell.setSize(300, 300); shell.open(); int depth = 24; image = new Image(display, 200, 200); ImageData myData = image.getImageData(); System.out.println("Depth = " + myData.depth); GC gc = new GC(image); Color[] colors = new Color[8]; colors[0] = new Color(display, 255, 0, 0); colors[1] = new Color(display, 0, 255, 0); colors[2] = new Color(display, 0, 0, 255); colors[3] = new Color(display, 255, 255, 0); colors[4] = new Color(display, 255, 0, 255); colors[5] = new Color(display, 0, 255, 255); colors[6] = new Color(display, 255, 255, 255); colors[7] = new Color(display, 0, 0, 0); GC shellGC = new GC(shell); for (int j = 0; j < 8; j++) { gc.setBackground(colors[j]); gc.fillArc(0, 0, 200, 200, 0, 360); ImageData retrievedData = image.getImageData(); int mainPixel = retrievedData.getPixel(100, 100); int red = mainPixel & 0xff; int blue = (mainPixel & 0xff0000) >> 16; int green = (mainPixel & 0xff00) >> 8; Color finalColor = new Color(display, red, green, blue); System.out.println("red = " + finalColor.getRed() + " green = " + finalColor.getGreen() + " blue = " + finalColor.getBlue()); //shellGC.drawImage(image, 0, 0); //this is the critical line } while (!shell.isDisposed()) { display.readAndDispatch(); display.sleep(); } display.dispose(); } public static void main(String[] args) { new SWTImageTest().run(); } }
normal
RESOLVED
FIXED
{'$oid': '52e9c13e54dc1c25ebdc0c26'}
61,897
When the build fails, it would be interesting to attach the .log file and the console.txt. Even though they may not be easy to read, they'll help people figuring out errors. For example, in the .log one can know what causes a plugin to not be resolved or if some files are missing, and the console.txt (the capture of all the output of ant) can says if files have been fetched.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13e54dc1c25ebdc0c27'}
61,896
I20040512 With the new icon refresh the warning/error icons available via the Dialog class no longer have transparent backgrounds. They used to so I think that this is a regression.
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c13e54dc1c25ebdc0c28'}
61,898
I got this exception. I think it was due to the fact I remove a method in which I had a breakpoint. org.eclipse.debug.core.DebugException: Breakpoint does not have an associated marker. at org.eclipse.debug.core.model.Breakpoint.ensureMarker(Breakpoint.java:264) at org.eclipse.jdt.internal.debug.core.breakpoints.JavaBreakpoint.isInstalled(JavaBreakpoint.java:710) at org.eclipse.jdt.internal.debug.ui.JDIModelPresentation.computeBreakpointAdornmentFlags(JDIModelPresentation.java:868) at org.eclipse.jdt.internal.debug.ui.JDIModelPresentation.getJavaBreakpointImage(JDIModelPresentation.java:691) at org.eclipse.jdt.internal.debug.ui.JDIModelPresentation.getBreakpointImage(JDIModelPresentation.java:663) at org.eclipse.jdt.internal.debug.ui.JDIModelPresentation.getImage(JDIModelPresentation.java:634) at org.eclipse.debug.internal.ui.LazyModelPresentation.getImage(LazyModelPresentation.java:95) at org.eclipse.debug.internal.ui.DelegatingModelPresentation.getImage(DelegatingModelPresentation.java:141) at org.eclipse.jface.viewers.TableViewer.doUpdateItem(TableViewer.java:215) at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:120) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:607) at org.eclipse.core.runtime.Platform.run(Platform.java:668) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:1249) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:506) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:449) at org.eclipse.jface.viewers.StructuredViewer$7.run(StructuredViewer.java:848) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:788) at org.eclipse.jface.viewers.CheckboxTableViewer.preservingSelection(CheckboxTableViewer.java:283) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:846) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:808) at org.eclipse.debug.internal.ui.views.breakpoints.BreakpointsView.becomesVisible(BreakpointsView.java:264) at org.eclipse.debug.ui.AbstractDebugView$DebugViewPartListener.partVisible(AbstractDebugView.java:159) at org.eclipse.ui.internal.PartListenerList2$7.run(PartListenerList2.java:139) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:607) at org.eclipse.core.runtime.Platform.run(Platform.java:668) at org.eclipse.ui.internal.PartListenerList2.firePartVisible(PartListenerList2.java:137) at org.eclipse.ui.internal.WorkbenchPage$1.propertyChange(WorkbenchPage.java:137) at org.eclipse.ui.internal.LayoutPart.setVisible(LayoutPart.java:248) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:259) at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:625) at org.eclipse.ui.internal.presentations.PresentableViewPart.setVisible(PresentableViewPart.java:114) at org.eclipse.ui.internal.presentations.DefaultPartPresentation.selectPart(DefaultPartPresentation.java:777) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:717) at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:315) at org.eclipse.ui.internal.ViewStack.createControl(ViewStack.java:99) at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:392) at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:156) at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:718) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2683) at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:728) at org.eclipse.ui.internal.WorkbenchPage.access$8(WorkbenchPage.java:713) at org.eclipse.ui.internal.WorkbenchPage$12.run(WorkbenchPage.java:2826) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2824) at org.eclipse.ui.internal.PerspectiveBarContributionItem.select(PerspectiveBarContributionItem.java:124) at org.eclipse.ui.internal.PerspectiveBarContributionItem$3.widgetSelected(PerspectiveBarContributionItem.java:114) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
VERIFIED
FIXED
{'$oid': '52e9c13e54dc1c25ebdc0c29'}
61,899
I will attach a stack trace of the startup time of the commands support. Note that it is likely not actually this bad as the profiler causes some performance degredation. I started a workbench with platform-ui loaded from HEAD with no editors open and only the resource perspective (default settings) open.
normal
RESOLVED
FIXED
{'$oid': '52e9c13e54dc1c25ebdc0c2a'}
61,894
In plugin.xml editor, when you add required plugins on the Dependencies tab, they are always presented lexicografically sorted, which is good for readability. I believe it's reasonable to sort them (the <import plugin="..."/> elements) the same way in the plugin.xml source. The same applies for feature content ("Feature Plug-ins and Fragments" in feature.xml editor, corresponding <plugin> elements in source) as well as feature dependencies (the <requires> section in source). The related point is, that even when managing the manifest files using the visual editors only (and not touching the source), one comes across the xml version when synchronizing with repository and doing file comparisons. In these case, having the items sorted improves readability and may also prevent some conflicts (caused by different order only).
enhancement
RESOLVED
FIXED
{'$oid': '52e9c13e54dc1c25ebdc0c2b'}
61,900
I200405111600 Sometimes (most of the time initially) no syntax coloring is seen when comparing Java files either using local history or Sync view. We tracked this down to be a problem where compare tries to find the viewer for a given content type: it first looks for a registered viewer (there was none found for javaSource) and then it looks for matching super content type even before going through backward compatibility code (i.e. use viewers registered for *.java). This results in the normal compare viewer being taken. Since we did not want to mangle with the compare code we added the following definitions to "org.eclipse.compare.contentViewers" in JDT UI's plugin.xml: <contentTypeBinding contentTypeId="org.eclipse.jdt.core.javaSource" contentMergeViewerId="org.eclipse.jdt.internal.ui.compare.JavaTextViewerCreator"> </contentTypeBinding> <contentTypeBinding contentTypeId="org.eclipse.jdt.core.javaSource" contentMergeViewerId="org.eclipse.jdt.internal.ui.compare.JavaContentViewerCreator"> </contentTypeBinding>
normal
RESOLVED
FIXED
{'$oid': '52e9c13e54dc1c25ebdc0c2c'}
61,902
Build id: 200405060200. I don't know how I got to this state, but whenever I tried to open any sort of extra shell or window (such as, the listing of other views, the about screen, preferences, etc.) nothing happened. I found the following in my log. I had to restart the workbench to alleviate the problem. java.lang.NullPointerException at org.eclipse.ui.internal.EditorManager$7.run(EditorManager.java:799) at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:604) at org.eclipse.core.runtime.Platform.run(Platform.java:545) at org.eclipse.ui.internal.EditorManager.busyRestoreEditor(EditorManager.java:773) at org.eclipse.ui.internal.EditorManager$6.run(EditorManager.java:766) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:84) at org.eclipse.ui.internal.EditorManager.restoreEditor(EditorManager.java:762) at org.eclipse.ui.internal.EditorManager$Editor.getEditor(EditorManager.java:1136) at org.eclipse.ui.internal.EditorManager$Editor.getPart(EditorManager.java:1128) at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:261) at org.eclipse.ui.internal.PresentableEditorPart.setVisible(PresentableEditorPart.java:97) at org.eclipse.ui.internal.presentations.BasicStackPresentation.selectPart(BasicStackPresentation.java:797) at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:666) at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:649) at org.eclipse.ui.internal.EditorWorkbook.setSelection(EditorWorkbook.java:131) at org.eclipse.ui.internal.PartStack.presentationSelectionChanged(PartStack.java:457) at org.eclipse.ui.internal.PartStack.access$0(PartStack.java:447) at org.eclipse.ui.internal.PartStack$1.selectPart(PartStack.java:77) at org.eclipse.ui.internal.presentations.BasicStackPresentation$4.handleEvent(BasicStackPresentation.java:148) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:613) at org.eclipse.swt.custom.CTabFolder.setSelection(CTabFolder.java:2966) at org.eclipse.swt.custom.CTabFolder.destroyItem(CTabFolder.java:628) at org.eclipse.swt.custom.CTabItem.dispose(CTabItem.java:135) at org.eclipse.ui.internal.presentations.BasicStackPresentation.removePart(BasicStackPresentation.java:778) at org.eclipse.ui.internal.PartStack.remove(PartStack.java:484) at org.eclipse.ui.internal.EditorArea.removeEditor(EditorArea.java:192) at org.eclipse.ui.internal.EditorPresentation.closeEditor(EditorPresentation.java:75) at org.eclipse.ui.internal.EditorPresentation.closeEditor(EditorPresentation.java:65) at org.eclipse.ui.internal.EditorManager.closeEditor(EditorManager.java:160) at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java:946) at org.eclipse.ui.internal.WorkbenchPage.closeEditor(WorkbenchPage.java:912) at org.eclipse.ui.internal.EditorPane.doHide(EditorPane.java:96) at org.eclipse.ui.internal.PartStack.close(PartStack.java:185) at org.eclipse.ui.internal.PartStack$1.close(PartStack.java:57) at org.eclipse.ui.internal.presentations.BasicStackPresentation$1.closeButtonPressed(BasicStackPresentation.java:98) at org.eclipse.ui.internal.presentations.PaneFolder.notifyCloseListeners(PaneFolder.java:417) at org.eclipse.ui.internal.presentations.PaneFolder$1.close(PaneFolder.java:123) at org.eclipse.swt.custom.CTabFolder.onMouse(CTabFolder.java:2010) at org.eclipse.swt.custom.CTabFolder$1.handleEvent(CTabFolder.java:292) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2594) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2272) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:140) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684) Followed by many: !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchWindow$9.shellActivated(WorkbenchWindow.java:1997) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:163) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:801) at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1473) at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:1327) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2949) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1449) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3160) at org.eclipse.swt.internal.win32.OS.PeekMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.PeekMessage(OS.java:1868) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2266) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:140) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684) !ENTRY org.eclipse.ui 4 4 May 12, 2004 10:12:19.399 !MESSAGE Unhandled event loop exception !ENTRY org.eclipse.ui 4 0 May 12, 2004 10:12:19.409 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.ui.internal.WorkbenchWindow$9.shellDeactivated(WorkbenchWindow.java:2014) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:167) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:801) at org.eclipse.swt.widgets.Decorations.WM_ACTIVATE(Decorations.java:1492) at org.eclipse.swt.widgets.Shell.WM_ACTIVATE(Shell.java:1327) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2949) at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.java:1449) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3160) at org.eclipse.swt.internal.win32.OS.PeekMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.PeekMessage(OS.java:1868) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2266) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:140) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:283) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:242) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:119) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:700) at org.eclipse.core.launcher.Main.main(Main.java:684)
critical
RESOLVED
WORKSFORME
{'$oid': '52e9c13e54dc1c25ebdc0c2d'}
61,890
I200405111200 The debug view content is duplicated. See the attached image.
major
RESOLVED
DUPLICATE
{'$oid': '52e9c13e54dc1c25ebdc0c2e'}
61,901
I will attach a stack trace of the startup time of the fillActionBars method which is taking about 2 seconds. Note that it is likely not actually this bad as the profiler causes some performance degredation. DETAILS 1) Workbench has platform-ui module loaded 2) No editors open 3) Only the resource perspective is opened 4) Default views for the resource perspective
normal
RESOLVED
WONTFIX
{'$oid': '52e9c13f54dc1c25ebdc0c2f'}
61,904
I200405120800 1. Select lots of projects 2. Projec Clean... Observe: dialog takes full screen width
trivial
VERIFIED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c30'}
61,903
Hi, I have a few files *.c and I just started using eclipse for c development. I noticed that when I write a new file from scratch there is no problem with the code completion, but when I import an old file or do cpoy & paste from an old source file the code completion is not working. there is an example code i copy and paste in a new .c file where code completion is not working. #define S_FUNCTION_NAME segmentation #define S_FUNCTION_LEVEL 2 #define TSNOISE(S) ssGetSFcnParam(S, 0) //Schwellwert für Messrauschen #define TSBEAM(S) ssGetSFcnParam(S, 1) //Schwellwert für Abstand innerhalb desselben Beams #define TSANGLE(S) ssGetSFcnParam(S, 2) //Schwellwert maximaler Winkel gegen den Strahl (Bogenmass) enum parameter {paramTsNoise, paramTsBeam, paramTsAngle, NUM_PARAMS}; enum input {inputNumberOfBeams, inputTargetsPerBeam, inputBeamAngle, inputBeamHalfwidth, inputScanData, NUM_INPUTS}; //enum output {outputNumberOfGroups, outputGroup, NUM_OUTPUTS}; enum output {outputNumberOfGroups, outputNumberOfPointsPerGroup, outputAngles, outputDistances, NUM_OUTPUTS}; //***************************************************************************** //WARNING: THIS IS A PROBLEM (SEE THE DOCUMENTAION)! NO GLOBALS SHOULD BE USED!! //***************************************************************************** double tsNoise; double tsBeam; double tsAngle; //const int maxNumberOfBeams = 30; //const int maxTargetsPerBeam = 5; //const int maxNumberOfGroups = 30*5; //maxNumberOfBeams * maxTargetsPerBeam; //Vereinfachung: Maximalanzahl der Punkte ist auch Maximalanzahl der Gruppen //const int threshold = 1.2; static void mdlInitializeSizes(SimStruct *S) { ssSetNumSFcnParams(S, NUM_PARAMS); /* Number of expected parameters */ if (ssGetNumSFcnParams(S) != ssGetSFcnParamsCount(S)) { /* Return if number of expected != number of actual parameters */ return; } ssSetSFcnParamTunable(S, paramTsNoise, false); ssSetSFcnParamTunable(S, paramTsBeam, false); ssSetSFcnParamTunable(S, paramTsAngle, false); ssSetNumContStates(S, 0); //number of continous states ssSetNumDiscStates(S, 0); //number of discrete states //DtypeId id = ssRegisterDataType(S, "Color"); //if(id == INVALID_DTYPE_ID) return; /* * Configure the input ports. First set the number of input ports. */ if (!ssSetNumInputPorts(S, NUM_INPUTS)) return; /* see top */ //ssSetNumInputPorts(S, 5); //ssSetNumOutputPorts(S,2); ssSetInputPortVectorDimension(S, inputNumberOfBeams, 1); ssSetInputPortVectorDimension(S, inputTargetsPerBeam, 1); ssSetInputPortVectorDimension(S, inputBeamAngle, DYNAMICALLY_SIZED); ssSetInputPortVectorDimension(S, inputBeamHalfwidth, DYNAMICALLY_SIZED); ssSetInputPortMatrixDimensions(S, inputScanData, DYNAMICALLY_SIZED, DYNAMICALLY_SIZED); ssSetInputPortDirectFeedThrough(S, inputNumberOfBeams, true); ssSetInputPortDirectFeedThrough(S, inputTargetsPerBeam, true); ssSetInputPortDirectFeedThrough(S, inputBeamAngle, true); ssSetInputPortDirectFeedThrough(S, inputBeamHalfwidth, true); ssSetInputPortDirectFeedThrough(S, inputScanData, true); //ssSetInputPortDirectFeedThrough(S, 0, 1); //ssSetInputPortDirectFeedThrough(S, 1, 1); //ssSetInputPortDirectFeedThrough(S, 2, 1); //ssSetInputPortDirectFeedThrough(S, 3, 1); //ssSetInputPortDirectFeedThrough(S, 4, 1); //ssSetInputPortDimensionInfo (S, 2, DYNAMIC_DIMENSION); //ssSetInputPortDimensionInfo (S, 3, DYNAMIC_DIMENSION); //ssSetInputPortDimensionInfo (S, 4, DYNAMIC_DIMENSION); //if (!ssSetNumInputPorts(S,5)) return; /* * Configure the output ports. First set the number of output ports. */ if (!ssSetNumOutputPorts(S, NUM_OUTPUTS)) return; /* see top */ ssSetOutputPortVectorDimension(S, outputNumberOfGroups, 1); ssSetOutputPortVectorDimension(S, outputNumberOfPointsPerGroup, 30*5); //ssSetOutputPortVectorDimension(S, outputGroup, 30*5);// DYNAMICALLY_SIZED); ssSetOutputPortMatrixDimensions(S, outputAngles, 30*5, 30*5); // 30*5 sind die maximale Beamzahl mal maximale TargetsperBeam (global als Konstanten definiert wird nicht akzeptiert) ssSetOutputPortMatrixDimensions(S, outputDistances, 30*5, 30*5); //ssSetOutputPortDataType(S, outputGroup, ssGetDataTypeId (S, "oneGroup")); //ssSetInputPortWidth(S, 0, 1); //ssSetInputPortWidth(S, 1, 1); //ssSetInputPortWidth(S, 2, DYNAMICALLY_SIZED); //ssSetInputPortWidth(S, 3, DYNAMICALLY_SIZED); //ssSetInputPortWidth(S, 4, DYNAMICALLY_SIZED); //if (!ssSetNumOutputPorts(S,2)) return; //ssSetOutputPortWidth(S, 0,1); //ssSetOutputPortWidth(S, 1,DYNAMICALLY_SIZED); pTsNoise = mxGetPr(ssGetSFcnParam(S, paramTsNoise)); tsNoise=(double) (*pTsNoise); pTsBeam = mxGetPr(ssGetSFcnParam(S, paramTsBeam)); tsBeam=(double) (*pTsBeam); pTsAngle = mxGetPr(ssGetSFcnParam(S, paramTsAngle)); tsAngle=(double) (*pTsAngle); /* * Set the number of sample times. This must be a positive, nonzero * integer indicating the number of sample times or it can be * PORT_BASED_SAMPLE_TIMES. For multi-rate S-functions, the * suggested approach to setting sample times is via the port * based sample times method. When you create a multirate * S-function, care needs to be taking to verify that when * slower tasks are preempted that your S-function correctly * manages data as to avoid race conditions. When port based * sample times are specified, the block cannot inherit a constant * sample time at any port. */ ssSetNumSampleTimes( S, 1); // number of sample times /* * Set size of the work vectors. */ ssSetNumRWork( S, 0); /* number of real work vector elements */ ssSetNumIWork( S, 0); /* number of integer work vector elements*/ ssSetNumPWork( S, 0); /* number of pointer work vector elements*/ ssSetNumModes( S, 0); /* number of mode work vector elements */ ssSetNumNonsampledZCs( S, 0); /* number of nonsampled zero crossings */ /* * All options have the form SS_OPTION_<name> and are documented in * matlabroot/simulink/include/simstruc.h. The options should be * bitwise or'd together as in * ssSetOptions(S, (SS_OPTION_name1 | SS_OPTION_name2)) */ ssSetOptions( S, 0); /* general options (SS_OPTION_xx) */ //ssSetOptions( S, SS_OPTION_EXCEPTION_FREE_CODE); /* general options (SS_OPTION_xx) */ } /* end mdlInitializeSizes */
normal
RESOLVED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c31'}
61,906
(Build M8) A directory in CVS was deleted from the filesystem (outside of eclipse or any other cvs client) and then I tried to synchronize. At the end of the synchronization an error dialog came up with a generic "Error occured during operation" message. I would expect the directory deleted from the filesystem to be shown as deleted in the synchronize view. The following exception was in the logs: !STACK 1 org.eclipse.core.internal.resources.ResourceException: File not found: D:\UVHome\Development\BuildEnvironment\deploy\web\CVS\Root. at org.eclipse.core.internal.localstore.FileSystemResourceManager.read(FileSyst emResourceManager.java:476) at org.eclipse.core.internal.resources.File.getContents(File.java:251) at org.eclipse.core.internal.resources.File.getContents(File.java:241) at org.eclipse.team.internal.ccvs.core.util.SyncFileWriter.readFirstLine(SyncFi leWriter.java:433) at org.eclipse.team.internal.ccvs.core.util.SyncFileWriter.readFolderSync(SyncF ileWriter.java:182) at org.eclipse.team.internal.ccvs.core.resources.EclipseSynchronizer.cacheFolde rSync(EclipseSynchronizer.java:848) at org.eclipse.team.internal.ccvs.core.resources.EclipseSynchronizer.getFolderS ync(EclipseSynchronizer.java:181) at org.eclipse.team.internal.ccvs.core.resources.EclipseFolder.isCVSFolder(Ecli pseFolder.java:206) at org.eclipse.team.internal.ccvs.core.resources.EclipseFolder.isIgnored(Eclips eFolder.java:248) at org.eclipse.team.internal.ccvs.core.resources.EclipseFolder.members(EclipseF older.java:54) at org.eclipse.team.internal.ccvs.core.client.FileStructureVisitor.visitFolder( FileStructureVisitor.java:73) at org.eclipse.team.internal.ccvs.core.resources.EclipseFolder.accept(EclipseFo lder.java:133) at org.eclipse.team.internal.ccvs.core.client.AbstractStructureVisitor.visit(Ab stractStructureVisitor.java:255) at org.eclipse.team.internal.ccvs.core.client.SyncUpdate.sendFileStructure(Sync Update.java:28) at org.eclipse.team.internal.ccvs.core.client.Update.sendLocalResourceState(Upd ate.java:82) at org.eclipse.team.internal.ccvs.core.client.Command.doExecute(Command.java:40 8) at org.eclipse.team.internal.ccvs.core.client.Update.doExecute(Update.java:202) at org.eclipse.team.internal.ccvs.core.client.Command$1.run(Command.java:337) at org.eclipse.team.internal.ccvs.core.resources.EclipseSynchronizer.run(Eclips eSynchronizer.java:1403) at org.eclipse.team.internal.ccvs.core.resources.EclipseResource$2.run(EclipseR esource.java:268) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1559) at org.eclipse.team.internal.ccvs.core.resources.EclipseResource.run(EclipseRes ource.java:265) at org.eclipse.team.internal.ccvs.core.client.Command.execute(Command.java:349) at org.eclipse.team.internal.ccvs.core.resources.RemoteFolderTreeBuilder.fetchD elta(RemoteFolderTreeBuilder.java:627) at org.eclipse.team.internal.ccvs.core.resources.RemoteFolderTreeBuilder.fetchD elta(RemoteFolderTreeBuilder.java:222) at org.eclipse.team.internal.ccvs.core.resources.RemoteFolderTreeBuilder.buildT ree(RemoteFolderTreeBuilder.java:187) at org.eclipse.team.internal.ccvs.core.resources.RemoteFolderTreeBuilder.buildR emoteTree(RemoteFolderTreeBuilder.java:159) at org.eclipse.team.internal.ccvs.core.resources.CVSWorkspaceRoot.getRemoteTree (CVSWorkspaceRoot.java:450) at org.eclipse.team.internal.ccvs.core.syncinfo.CVSResourceVariantTree.fetchVar iant(CVSResourceVariantTree.java:95) at org.eclipse.team.core.variants.AbstractResourceVariantTree.refresh(AbstractR esourceVariantTree.java:107) at org.eclipse.team.core.variants.AbstractResourceVariantTree.refresh(AbstractR esourceVariantTree.java:67) at org.eclipse.team.core.variants.ResourceVariantTreeSubscriber.refresh(Resourc eVariantTreeSubscriber.java:153) at org.eclipse.team.core.variants.ResourceVariantTreeSubscriber.refresh(Resourc eVariantTreeSubscriber.java:123) at org.eclipse.team.ui.synchronize.subscribers.RefreshSubscriberJob.runInWorksp ace(RefreshSubscriberJob.java:185) at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspa ceJob.java:37) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:62) !SUBENTRY 3 org.eclipse.core.resources 4 271 May 12, 2004 09:12:35.739 !MESSAGE File not found: D:\UVHome\Development\BuildEnvironment\deploy\web\CVS\Root.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c32'}
61,905
In order to implement the Restore Defaults button required in bug 61090 we need a way to access the set of defaultEnabled activities. This does not currently exist in the activities API.
normal
VERIFIED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c33'}
61,908
Make a feature project -> add plugins/features to package -> add pre-req's, etc. -> go to source page -> nothing changed :( Was there some big change done to editors recently?
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c34'}
61,907
In EMF we use registrations like this in the org.eclipse.emf.ecore.editor plugin: <extension point = "org.eclipse.ui.editors"> <editor id = "org.eclipse.emf.ecore.presentation.ReflectiveEditorID" name = "%_UI_ReflectiveEcoreEditor_label" icon = "platform:/plugin/org.eclipse.emf.edit/icons/full/obj16/ModelFile.gif" extensions = "xmi" class = "org.eclipse.emf.ecore.presentation.EcoreEditor" contributorClass="org.eclipse.emf.ecore.presentation.EcoreActionBarContributor$R eflective" > </editor> </extension> to reuse icons from another plugin, so that we don't have to make countless copies of them. This has stopped working recently. In fact, it's stopped working so badly that you can't even open the editor anymore, as reported in https://bugs.eclipse.org/bugs/show_bug.cgi?id=61450 This problem is critical, at least until 61450 is fixed, since the editors won't come up at all and the error message provides not a clue about the reason why.
normal
CLOSED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c35'}
61,909
Make a feature project -> add plugins/features to package -> add pre-req's, etc. -> go to source page -> nothing changed :( Was there some big change done to editors recently?
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c36'}
61,910
I am beta testing Windows XP S2 and can not use eclipse M8 with it. Everytime I try and run my application through it I get an access violation from calling the org.eclipse.swt.internal.win32.OS.ScriptTextOut method. I have filed a bug report with Microsoft as it is their code that has changed and caused the problem, however it may be worth investigating from this end? Exception.................. An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x72675F52 Function=ScriptApplyDigitSubstitution+0x12D0 Library=C:\WINNT\system32\USP10.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.ScriptTextOut(Native Method) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:470) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:339) at org.eclipse.swt.custom.StyledTextRenderer.drawLine (StyledTextRenderer.java:133) at org.eclipse.swt.custom.StyledText.performPaint(StyledText.java:5637) at org.eclipse.swt.custom.StyledText.handlePaint(StyledText.java:5041) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4725) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:769) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:793) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:778) at org.eclipse.swt.widgets.Composite.WM_PAINT(Composite.java:781) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2994) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3146) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1374) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java:647) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1450) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2254) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1562) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1536) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:257) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:277) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:239) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:117) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:267) at org.eclipse.core.launcher.Main.run(Main.java:692) at org.eclipse.core.launcher.Main.main(Main.java:676)
major
RESOLVED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c37'}
61,911
I try importing a project using CVS perspective. Here is the CVS settings I use: pserver:[email protected]:/var/lib/mythcvs CVS password: mythtv This is an open source project and is still accessible at this time. One of directories in the project has "G.A.N.T." name. CVS Importer creates "G.A.N.T.dot" directory instead and it cannot import the directories inside "G.A.N.T" complaining that "G.A.N.T." resource does not exist.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c38'}
61,912
I just updated Windows XP to SP2 RC1. ( Beta testing ) I opened a project I was working on I try to scroll down through a java file and it's crashes everytime. I every tried pagedown it crashed it too. here is a log file Eclipse. An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x74785F52 Function=ScriptApplyDigitSubstitution+0x12D0 Library=C:\WINDOWS\system32\USP10.dll Current Java thread: at org.eclipse.swt.internal.win32.OS.ScriptTextOut(Native Method) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:470) at org.eclipse.swt.graphics.TextLayout.draw(TextLayout.java:339) at org.eclipse.swt.custom.StyledTextRenderer.drawLine(StyledTextRenderer.java:133) at org.eclipse.swt.custom.StyledText.performPaint(StyledText.java:5637) at org.eclipse.swt.custom.StyledText.handlePaint(StyledText.java:5041) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4725) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:769) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:793) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:778) at org.eclipse.swt.widgets.Composite.WM_PAINT(Composite.java:781) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2994) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3146) at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method) at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1374) at org.eclipse.swt.internal.BidiUtil.windowProc(BidiUtil.java:647) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1450) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2254) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1562) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1536) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:257) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:277) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:239) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:117) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.eclipse.core.launcher.Main.basicRun(Main.java:267) at org.eclipse.core.launcher.Main.run(Main.java:692) at org.eclipse.core.launcher.Main.main(Main.java:676) Dynamic libraries: 0x00400000 - 0x00407000 C:\WINDOWS\system32\javaw.exe 0x77CC0000 - 0x77D75000 C:\WINDOWS\system32\ntdll.dll 0x77E60000 - 0x77F50000 C:\WINDOWS\system32\kernel32.dll 0x77F50000 - 0x77FEB000 C:\WINDOWS\system32\ADVAPI32.dll 0x77340000 - 0x773D1000 C:\WINDOWS\system32\RPCRT4.dll 0x77D80000 - 0x77E11000 C:\WINDOWS\system32\USER32.dll 0x773E0000 - 0x77425000 C:\WINDOWS\system32\GDI32.dll 0x77C10000 - 0x77C68000 C:\WINDOWS\system32\MSVCRT.dll 0x08000000 - 0x08138000 C:\Program Files\Java\j2re1.4.2_04\bin\client\jvm.dll 0x76B40000 - 0x76B6D000 C:\WINDOWS\system32\WINMM.dll 0x10000000 - 0x10007000 C:\Program Files\Java\j2re1.4.2_04\bin\hpi.dll 0x00820000 - 0x0082E000 C:\Program Files\Java\j2re1.4.2_04\bin\verify.dll 0x00830000 - 0x00849000 C:\Program Files\Java\j2re1.4.2_04\bin\java.dll 0x00850000 - 0x0085D000 C:\Program Files\Java\j2re1.4.2_04\bin\zip.dll 0x032F0000 - 0x0333D000 C:\eclipse\plugins\org.eclipse.swt.win32_3.0.0\os\win32\x86\swt-win32-3044.dll 0x774D0000 - 0x7760D000 C:\WINDOWS\system32\ole32.dll 0x77430000 - 0x774CA000 C:\WINDOWS\system32\COMCTL32.dll 0x763B0000 - 0x763F9000 C:\WINDOWS\system32\comdlg32.dll 0x772D0000 - 0x7731E000 C:\WINDOWS\system32\SHLWAPI.dll 0x7C800000 - 0x7D010000 C:\WINDOWS\system32\SHELL32.dll 0x77120000 - 0x771AC000 C:\WINDOWS\system32\OLEAUT32.dll 0x76390000 - 0x763AD000 C:\WINDOWS\system32\IMM32.dll 0x74770000 - 0x747DB000 C:\WINDOWS\system32\USP10.dll 0x4D6C0000 - 0x4D7AC000 C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2096_x-ww_a7d210bd\comctl32.dll 0x61220000 - 0x61232000 C:\Program Files\Microsoft Hardware\Mouse\MSH_ZWF.dll 0x60300000 - 0x60307000 C:\Program Files\Yahoo!\Messenger\idle.dll 0x7C340000 - 0x7C396000 C:\Program Files\Yahoo!\Messenger\MSVCR71.dll 0x5AD70000 - 0x5ADA7000 C:\WINDOWS\system32\UxTheme.dll 0x77610000 - 0x776BF000 C:\WINDOWS\system32\CLBCATQ.DLL 0x77050000 - 0x77115000 C:\WINDOWS\system32\COMRes.dll 0x77C00000 - 0x77C08000 C:\WINDOWS\system32\VERSION.dll 0x77830000 - 0x77998000 C:\WINDOWS\System32\shdocvw.dll 0x77B00000 - 0x77B95000 C:\WINDOWS\system32\CRYPT32.dll 0x77BA0000 - 0x77BB1000 C:\WINDOWS\system32\MSASN1.dll 0x754D0000 - 0x7554F000 C:\WINDOWS\system32\CRYPTUI.dll 0x76C30000 - 0x76C5E000 C:\WINDOWS\system32\WINTRUST.dll 0x76C90000 - 0x76CB8000 C:\WINDOWS\system32\IMAGEHLP.dll 0x5FE20000 - 0x5FE73000 C:\WINDOWS\system32\NETAPI32.dll 0x771B0000 - 0x77252000 C:\WINDOWS\system32\WININET.dll 0x76F60000 - 0x76F8D000 C:\WINDOWS\system32\WLDAP32.dll 0x77E20000 - 0x77E31000 C:\WINDOWS\system32\Secur32.dll 0x77260000 - 0x77282000 C:\WINDOWS\system32\appHelp.dll 0x03960000 - 0x039B5000 C:\Program Files\TortoiseCVS\TrtseShl.dll 0x75F80000 - 0x76055000 C:\WINDOWS\System32\browseui.dll 0x779A0000 - 0x77A96000 C:\WINDOWS\system32\SETUPAPI.dll 0x76980000 - 0x76988000 C:\WINDOWS\system32\LINKINFO.dll 0x76990000 - 0x769B5000 C:\WINDOWS\system32\ntshrui.dll 0x76B20000 - 0x76B3D000 C:\WINDOWS\system32\ATL.DLL 0x76620000 - 0x766D2000 C:\WINDOWS\system32\USERENV.dll 0x71B20000 - 0x71B32000 C:\WINDOWS\system32\MPR.dll 0x75F60000 - 0x75F67000 C:\WINDOWS\System32\drprov.dll 0x71C10000 - 0x71C1E000 C:\WINDOWS\System32\ntlanman.dll 0x71CD0000 - 0x71CE7000 C:\WINDOWS\System32\NETUI0.dll 0x71C90000 - 0x71CCF000 C:\WINDOWS\System32\NETUI1.dll 0x71C80000 - 0x71C86000 C:\WINDOWS\System32\NETRAP.dll 0x71BF0000 - 0x71C03000 C:\WINDOWS\System32\SAMLIB.dll 0x75F70000 - 0x75F79000 C:\WINDOWS\System32\davclnt.dll 0x75970000 - 0x75A67000 C:\WINDOWS\system32\MSGINA.dll 0x76360000 - 0x76370000 C:\WINDOWS\system32\WINSTA.dll 0x04120000 - 0x04158000 C:\WINDOWS\system32\ODBC32.dll 0x040E0000 - 0x040F7000 C:\WINDOWS\system32\odbcint.dll 0x04300000 - 0x0458F000 C:\WINDOWS\system32\xpsp2res.dll 0x03680000 - 0x0368F000 C:\Program Files\Java\j2re1.4.2_04\bin\net.dll 0x71AB0000 - 0x71AC7000 C:\WINDOWS\system32\WS2_32.dll 0x71AA0000 - 0x71AA8000 C:\WINDOWS\system32\WS2HELP.dll 0x04100000 - 0x04108000 C:\Program Files\Java\j2re1.4.2_04\bin\nio.dll 0x042F0000 - 0x042F8000 C:\eclipse\plugins\org.eclipse.core.resources.win32_3.0.0\os\win32\x86\core_2_1_0b.dll 0x61210000 - 0x6121F000 C:\Program Files\Microsoft Hardware\Mouse\POINT32.dll 0x74C80000 - 0x74CAC000 C:\WINDOWS\system32\oleacc.dll 0x76080000 - 0x760E6000 C:\WINDOWS\system32\MSVCP60.dll 0x76380000 - 0x76385000 C:\WINDOWS\system32\msimg32.dll 0x71A50000 - 0x71A8E000 C:\WINDOWS\System32\mswsock.dll 0x76F20000 - 0x76F47000 C:\WINDOWS\system32\DNSAPI.dll 0x76FB0000 - 0x76FB7000 C:\WINDOWS\System32\winrnr.dll 0x76FC0000 - 0x76FC5000 C:\WINDOWS\system32\rasadhlp.dll 0x662B0000 - 0x66304000 C:\WINDOWS\system32\hnetcfg.dll 0x76EE0000 - 0x76F1C000 C:\WINDOWS\system32\RASAPI32.dll 0x76E90000 - 0x76EA2000 C:\WINDOWS\system32\rasman.dll 0x76EB0000 - 0x76EDF000 C:\WINDOWS\system32\TAPI32.dll 0x76E80000 - 0x76E8E000 C:\WINDOWS\system32\rtutils.dll 0x76400000 - 0x765A0000 C:\WINDOWS\system32\netshell.dll 0x76C00000 - 0x76C2E000 C:\WINDOWS\system32\credui.dll 0x76D60000 - 0x76D79000 C:\WINDOWS\system32\iphlpapi.dll 0x76BF0000 - 0x76BFB000 C:\WINDOWS\system32\PSAPI.DLL 0x76D80000 - 0x76D9D000 C:\WINDOWS\system32\DHCPCSVC.DLL 0x71A90000 - 0x71A98000 C:\WINDOWS\System32\wshtcpip.dll 0x5D090000 - 0x5D131000 C:\WINDOWS\system32\DBGHELP.dll Heap at VM Abort: Heap def new generation total 1984K, used 1816K [0x10010000, 0x10230000, 0x104f0000) eden space 1792K, 96% used [0x10010000, 0x101bfa50, 0x101d0000) from space 192K, 46% used [0x10200000, 0x10216820, 0x10230000) to space 192K, 0% used [0x101d0000, 0x101d0000, 0x10200000) tenured generation total 25348K, used 21964K [0x104f0000, 0x11db1000, 0x14010000) the space 25348K, 86% used [0x104f0000, 0x11a632a0, 0x11a63400, 0x11db1000) compacting perm gen total 23040K, used 22875K [0x14010000, 0x15690000, 0x18010000) the space 23040K, 99% used [0x14010000, 0x15666c78, 0x15666e00, 0x15690000) Local Time = Wed May 12 10:35:01 2004 Elapsed Time = 86 # # The exception above was detected in native code outside the VM # # Java VM: Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode) #
critical
RESOLVED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c39'}
61,913
The test suite from I20040511 has debug failures (on linux), all with the same NPE: junit: [echo] Running org.eclipse.jdt.debug.tests.AutomatedSuite [java] org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) [java] at org.eclipse.swt.SWT.error(SWT.java:2689) [java] at org.eclipse.swt.SWT.error(SWT.java:2614) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:109) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages (Display.java:2515) [java] at org.eclipse.swt.widgets.Display.readAndDispatch (Display.java:2252) [java] at org.eclipse.jdt.debug.tests.AutomatedSuite.run (AutomatedSuite.java:190) [java] at org.eclipse.test.EclipseTestRunner.run (EclipseTestRunner.java:322) [java] at org.eclipse.test.EclipseTestRunner.run (EclipseTestRunner.java:198) [java] at org.eclipse.test.EclipseTestRunner.main (EclipseTestRunner.java:133) [java] at org.eclipse.test.UITestApplication$3.run (UITestApplication.java:180) [java] at org.eclipse.swt.widgets.RunnableLock.run (RunnableLock.java:35) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:106) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages (Display.java:2515) [java] at org.eclipse.swt.widgets.Display.readAndDispatch (Display.java:2252) [java] at org.eclipse.ui.internal.Workbench.runEventLoop (Workbench.java:1353) [java] at org.eclipse.ui.internal.Workbench.runUI (Workbench.java:1324) [java] at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) [java] at org.eclipse.ui.PlatformUI.createAndRunWorkbench (PlatformUI.java:141) [java] at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) [java] at org.eclipse.test.UITestApplication.runApplication (UITestApplication.java:123) [java] at org.eclipse.test.UITestApplication.run (UITestApplication.java:55) [java] at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) [java] at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method) [java] at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) [java] at java.lang.reflect.Method.invoke(Method.java:324) [java] at org.eclipse.core.launcher.Main.basicRun (Main.java:269) [java] at org.eclipse.core.launcher.Main.run(Main.java:722) [java] at org.eclipse.core.launcher.Main.main(Main.java:706) [java] *** Stack trace of contained exception *** [java] java.lang.NullPointerException [java] at org.eclipse.ui.internal.PartStack.setActive (PartStack.java:670) [java] at org.eclipse.ui.internal.ViewPane.setContainer (ViewPane.java:583) [java] at org.eclipse.ui.internal.PartStack.dispose (PartStack.java:333) [java] at org.eclipse.ui.internal.PartSashContainer.dispose (PartSashContainer.java:429) [java] at org.eclipse.ui.internal.PerspectiveHelper.deactivate (PerspectiveHelper.java:486) [java] at org.eclipse.ui.internal.Perspective.onDeactivate (Perspective.java:731) [java] at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2676) [java] at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective (WorkbenchPage.java:728) [java] at org.eclipse.ui.internal.WorkbenchPage.access$8 (WorkbenchPage.java:713) [java] at org.eclipse.ui.internal.WorkbenchPage$12.run (WorkbenchPage.java:2826) [java] at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) [java] at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:2824) [java] at org.eclipse.ui.internal.Workbench.showPerspective (Workbench.java:1488) [java] at org.eclipse.debug.internal.ui.launchConfigurations.PerspectiveManager.switchToP erspective(PerspectiveManager.java:171) [java] at org.eclipse.debug.internal.ui.launchConfigurations.PerspectiveManager$1.run (PerspectiveManager.java:156) [java] at org.eclipse.swt.widgets.RunnableLock.run (RunnableLock.java:35) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:106) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages (Display.java:2515) [java] at org.eclipse.swt.widgets.Display.readAndDispatch (Display.java:2252) [java] at org.eclipse.jdt.debug.tests.AutomatedSuite.run (AutomatedSuite.java:190) [java] at org.eclipse.test.EclipseTestRunner.run (EclipseTestRunner.java:322) [java] at org.eclipse.test.EclipseTestRunner.run (EclipseTestRunner.java:198) [java] at org.eclipse.test.EclipseTestRunner.main (EclipseTestRunner.java:133) [java] at org.eclipse.test.UITestApplication$3.run (UITestApplication.java:180) [java] at org.eclipse.swt.widgets.RunnableLock.run (RunnableLock.java:35) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:106) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages (Display.java:2515) [java] at org.eclipse.swt.widgets.Display.readAndDispatch (Display.java:2252) [java] at org.eclipse.ui.internal.Workbench.runEventLoop (Workbench.java:1353) [java] at org.eclipse.ui.internal.Workbench.runUI (Workbench.java:1324) [java] at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) [java] at org.eclipse.ui.PlatformUI.createAndRunWorkbench (PlatformUI.java:141) [java] at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) [java] at org.eclipse.test.UITestApplication.runApplication (UITestApplication.java:123) [java] at org.eclipse.test.UITestApplication.run (UITestApplication.java:55) [java] at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) [java] at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method) [java] at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) [java] at java.lang.reflect.Method.invoke(Method.java:324) [java] at org.eclipse.core.launcher.Main.basicRun (Main.java:269) [java] at org.eclipse.core.launcher.Main.run(Main.java:722) [java] at org.eclipse.core.launcher.Main.main(Main.java:706) [java] org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.NullPointerException) [java] at org.eclipse.swt.SWT.error(SWT.java:2689) [java] at org.eclipse.swt.SWT.error(SWT.java:2614) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:109) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages (Display.java:2515) [java] at org.eclipse.swt.widgets.Display.readAndDispatch (Display.java:2252) [java] at org.eclipse.jdt.debug.tests.AutomatedSuite.run (AutomatedSuite.java:190) [java] at org.eclipse.test.EclipseTestRunner.run (EclipseTestRunner.java:322) [java] at org.eclipse.test.EclipseTestRunner.run (EclipseTestRunner.java:198) [java] at org.eclipse.test.EclipseTestRunner.main (EclipseTestRunner.java:133) [java] at org.eclipse.test.UITestApplication$3.run (UITestApplication.java:180) [java] at org.eclipse.swt.widgets.RunnableLock.run (RunnableLock.java:35) [java] at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:106) [java] at org.eclipse.swt.widgets.Display.runAsyncMessages (Display.java:2515) [java] at org.eclipse.swt.widgets.Display.readAndDispatch (Display.java:2252) [java] at org.eclipse.ui.internal.Workbench.runEventLoop (Workbench.java:1353) [java] at org.eclipse.ui.internal.Workbench.runUI (Workbench.java:1324) [java] at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) [java] at org.eclipse.ui.PlatformUI.createAndRunWorkbench (PlatformUI.java:141) [java] at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) [java] at org.eclipse.test.UITestApplication.runApplication (UITestApplication.java:123) [java] at org.eclipse.test.UITestApplication.run (UITestApplication.java:55) [java] at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) [java] at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) [java] at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method) [java] at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) [java] at java.lang.reflect.Method.invoke(Method.java:324) [java] at org.eclipse.core.launcher.Main.basicRun (Main.java:269) [java] at org.eclipse.core.launcher.Main.run(Main.java:722) [java] at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c13f54dc1c25ebdc0c3a'}
61,914
normal
CLOSED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c3b'}
61,915
CDT 200405071349 Eclipse 200405060200 Platform: SLES 9 Beta 4 JRE: J2RE 1.4.2 IBM build cxia32dev-20040414 Selection search and project import have caused eclipse to crash with the following error dumped to the .log file: !SESSION May 11, 2004 14:54:16.661 --------------------------------------------- java.fullversion=J2RE 1.4.2 IBM build cxia32dev-20040414 (JIT enabled: jitc) BootLoader constants: OS=linux, ARCH=x86, WS=gtk, NL=en_US !ENTRY org.eclipse.update.configurator May 11, 2004 14:54:16.663 !MESSAGE ConfigurationParser.parse() error: !STACK 0 java.lang.IllegalArgumentException at java.util.Date.parse(Date.java:582) at java.util.Date.<init>(Date.java:264) at org.eclipse.update.internal.configurator.ConfigurationParser.processConfig(ConfigurationParser.java:277) at org.eclipse.update.internal.configurator.ConfigurationParser.startElement(ConfigurationParser.java:102) at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl$NSContentDispatcher.scanRootElementHook(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) at javax.xml.parsers.SAXParser.parse(Unknown Source) at org.eclipse.update.internal.configurator.ConfigurationParser.parse(ConfigurationParser.java:68) at org.eclipse.update.internal.configurator.PlatformConfiguration.loadConfig(PlatformConfiguration.java:1140) at org.eclipse.update.internal.configurator.PlatformConfiguration.initializeCurrent(PlatformConfiguration.java:701) at org.eclipse.update.internal.configurator.PlatformConfiguration.<init>(PlatformConfiguration.java:83) at org.eclipse.update.internal.configurator.PlatformConfiguration.startup(PlatformConfiguration.java:642) at org.eclipse.update.internal.configurator.ConfigurationActivator.getPlatformConfiguration(ConfigurationActivator.java:296) at org.eclipse.update.internal.configurator.ConfigurationActivator.initialize(ConfigurationActivator.java:114) at org.eclipse.update.internal.configurator.ConfigurationActivator.start(ConfigurationActivator.java:68) at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:973) at java.security.AccessController.doPrivileged1(Native Method) at java.security.AccessController.doPrivileged(AccessController.java:350) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:969) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:952) at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:408) at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:373) at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:999) at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:571) at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:482) at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:272) at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:442) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:153) at org.eclipse.osgi.framework.eventmgr.EventThread$Queued.dispatchEvent(EventThread.java:56) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:107) !ENTRY org.eclipse.update.configurator May 11, 2004 14:54:16.890 !MESSAGE ConfigurationParser.parse() error: !STACK 0 java.lang.IllegalArgumentException at java.util.Date.parse(Date.java:582) at java.util.Date.<init>(Date.java:264) at org.eclipse.update.internal.configurator.ConfigurationParser.processConfig(ConfigurationParser.java:277) at org.eclipse.update.internal.configurator.ConfigurationParser.startElement(ConfigurationParser.java:102) at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl$NSContentDispatcher.scanRootElementHook(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source) at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) at org.apache.xerces.parsers.XMLParser.parse(Unknown Source) at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) at javax.xml.parsers.SAXParser.parse(Unknown Source) at org.eclipse.update.internal.configurator.ConfigurationParser.parse(ConfigurationParser.java:68) at org.eclipse.update.internal.configurator.PlatformConfiguration.loadConfig(PlatformConfiguration.java:1166) at org.eclipse.update.internal.configurator.PlatformConfiguration.initializeCurrent(PlatformConfiguration.java:701) at org.eclipse.update.internal.configurator.PlatformConfiguration.<init>(PlatformConfiguration.java:83) at org.eclipse.update.internal.configurator.PlatformConfiguration.startup(PlatformConfiguration.java:642) at org.eclipse.update.internal.configurator.ConfigurationActivator.getPlatformConfiguration(ConfigurationActivator.java:296) at org.eclipse.update.internal.configurator.ConfigurationActivator.initialize(ConfigurationActivator.java:114) at org.eclipse.update.internal.configurator.ConfigurationActivator.start(ConfigurationActivator.java:68) at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:973) at java.security.AccessController.doPrivileged1(Native Method) at java.security.AccessController.doPrivileged(AccessController.java:350) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:969) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:952) at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:408) at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:373) at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:999) at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:571) at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:482) at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:272) at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:442) at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:153) at org.eclipse.osgi.framework.eventmgr.EventThread$Queued.dispatchEvent(EventThread.java:56) at org.eclipse.osgi.framework.eventmgr.EventThread.run(EventThread.java:107)
normal
RESOLVED
INVALID
{'$oid': '52e9c13f54dc1c25ebdc0c3c'}
61,916
I20040512 If you attempt to draw a gradient from white to COLOR_WIDGET_BACKGROUND (or COLOR_WIDGET_BACKGROUND to white) in the CTabFolder the tab is drawn solid white.
normal
RESOLVED
INVALID
{'$oid': '52e9c13f54dc1c25ebdc0c3d'}
61,917
Build I20040512 o.e.debug.ui has a schema that includes schema://org.eclipse.core.expressions/schema/expressionLanguage.mxsd All extension points schemas should be ".exsd" files.
normal
VERIFIED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c3e'}
61,920
Build I20040512 o.e.help.appserver has a ".mxsd" schema. Dejan says all ext pt schemas should be ".exsd" files.
normal
RESOLVED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c3f'}
61,918
Build I20040512 o.e.core.runtime and core.resources have ".mxsd" schemas. Dejan says all ext pt schema should be ".exsd" files.
normal
RESOLVED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c40'}
61,921
I20040511 TextFileDocumentProvider.executeOperation converts an interrupted exception into a core exception which was then logged. Interrupted exceptions shouldn't be logged since they can easily occur if the user cancels the user operation via the new "User Operation is Waiting" dialog. To reproduce this scenario start a long build then open a file that requires a validateEdit. Then edit the file to force the "user operation is waiting' dialog to appear. from this dialog cancel the user operation. the following will be shown in the log: java.lang.InterruptedException at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:109) at org.eclipse.ui.internal.editors.text.WorkspaceOperationRunner.run(WorkspaceOperationRunner.java:73) at org.eclipse.ui.internal.editors.text.WorkspaceOperationRunner.run(WorkspaceOperationRunner.java:63) at org.eclipse.ui.editors.text.TextFileDocumentProvider.executeOperation(TextFileDocumentProvider.java:397) at org.eclipse.ui.editors.text.TextFileDocumentProvider.validateState(TextFileDocumentProvider.java:843) at org.eclipse.ui.texteditor.AbstractTextEditor.validateState(AbstractTextEditor.java:3236) at org.eclipse.ui.texteditor.AbstractTextEditor$16.run(AbstractTextEditor.java:3285) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.texteditor.AbstractTextEditor.validateEditorInputState(AbstractTextEditor.java:3280) at org.eclipse.ui.texteditor.AbstractTextEditor$ElementStateListener$Validator.verifyText(AbstractTextEditor.java:223) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:193) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:613) at org.eclipse.swt.custom.StyledText.modifyContent(StyledText.java:5555) at org.eclipse.swt.custom.StyledText.sendKeyEvent(StyledText.java:6405) at org.eclipse.swt.custom.StyledText.doContent(StyledText.java:2535) at org.eclipse.swt.custom.StyledText.handleKey(StyledText.java:4963) at org.eclipse.swt.custom.StyledText.handleKeyDown(StyledText.java:4986) at org.eclipse.swt.custom.StyledText$7.handleEvent(StyledText.java:4731) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1724) at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1720) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:3048) at org.eclipse.swt.widgets.Control.windowProc(Control.java:2951) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3291) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1466) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2388) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
RESOLVED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c41'}
61,922
feature.xml editor does not save License, Description, Copyright. After closing editor they are lost.
normal
RESOLVED
FIXED
{'$oid': '52e9c13f54dc1c25ebdc0c42'}
61,923
From Philippe (see bug 59542, comment #46): Using 20040511, it is getting worse. I cannot even open the update manager. !ENTRY org.eclipse.ui 4 4 May 12, 2004 11:35:53.381 !MESSAGE Unhandled event loop exception Unhandled event loop exception Reason: !ENTRY org.eclipse.ui 4 0 May 12, 2004 11:35:53.396 !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.jface.wizard.WizardDialog.saveUIState (WizardDialog.java:795) at org.eclipse.jface.wizard.WizardDialog.aboutToStart (WizardDialog.java:259) at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:744) at org.eclipse.update.internal.ui.wizards.SitePage.getSiteCatalogWithIndicator (SitePage.java:553) at org.eclipse.update.internal.ui.wizards.SitePage.access$1 (SitePage.java:525) at org.eclipse.update.internal.ui.wizards.SitePage$TreeContentProvider.getChildren (SitePage.java:51) at org.eclipse.jface.viewers.AbstractTreeViewer.getRawChildren (AbstractTreeViewer.java:704) at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren (StructuredViewer.java:441) at org.eclipse.jface.viewers.AbstractTreeViewer.isExpandable (AbstractTreeViewer.java:1138) at org.eclipse.jface.viewers.AbstractTreeViewer.updatePlus (AbstractTreeViewer.java:1585) at org.eclipse.jface.viewers.AbstractTreeViewer.updateChildren (AbstractTreeViewer.java:1533) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefreshStruct (AbstractTreeViewer.java:1039) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh (AbstractTreeViewer.java:1014) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh (AbstractTreeViewer.java:977) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh (AbstractTreeViewer.java:965) at org.eclipse.jface.viewers.StructuredViewer$7.run (StructuredViewer.java:848) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection (StructuredViewer.java:788) at org.eclipse.jface.viewers.CheckboxTreeViewer.preservingSelection (CheckboxTreeViewer.java:346) at org.eclipse.jface.viewers.StructuredViewer.refresh (StructuredViewer.java:846) at org.eclipse.jface.viewers.StructuredViewer.refresh (StructuredViewer.java:808) at org.eclipse.jface.viewers.StructuredViewer.addFilter (StructuredViewer.java:203) at org.eclipse.update.internal.ui.wizards.SitePage.createTreeViewer (SitePage.java:294) at org.eclipse.update.internal.ui.wizards.SitePage.createContents (SitePage.java:179) at org.eclipse.update.internal.ui.wizards.BannerPage.createControl (BannerPage.java:41) at org.eclipse.jface.wizard.Wizard.createPageControls(Wizard.java:161) at org.eclipse.jface.wizard.WizardDialog.createPageControls (WizardDialog.java:546) at org.eclipse.jface.wizard.WizardDialog.createContents (WizardDialog.java:451) at org.eclipse.jface.window.Window.create(Window.java:348) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:924) at org.eclipse.update.internal.ui.InstallWizardAction.openNewUpdatesWizard (InstallWizardAction.java:58) at org.eclipse.update.internal.ui.InstallWizardAction.doRun (InstallWizardAction.java:52) at org.eclipse.update.internal.ui.InstallWizardAction.access$0 (InstallWizardAction.java:51) at org.eclipse.update.internal.ui.InstallWizardAction$1.run (InstallWizardAction.java:46) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.update.internal.ui.InstallWizardAction.run (InstallWizardAction.java:44) at org.eclipse.ui.internal.PluginAction.runWithEvent (PluginAction.java:276) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent (WWinPluginAction.java:206) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:899) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:850) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent (ActionContributionItem.java:769) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706) java.lang.NullPointerException
major
RESOLVED
DUPLICATE
{'$oid': '52e9c13f54dc1c25ebdc0c43'}
61,919
CDT 200405071349 Eclipse 200405060200 Though logged against Solaris, this bug has been observed on Windows and Linux. Please see the attached screen capture.
normal
RESOLVED
WORKSFORME
{'$oid': '52e9c14054dc1c25ebdc0c44'}
61,925
20040511 1600 Help -> Software Updates -> Find and Install does nothing Following in the log: !MESSAGE java.lang.NullPointerException !STACK 0 java.lang.NullPointerException at org.eclipse.jface.wizard.WizardDialog.saveUIState (WizardDialog.java:795) at org.eclipse.jface.wizard.WizardDialog.aboutToStart (WizardDialog.java:259) at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:744) at org.eclipse.update.internal.ui.wizards.SitePage.getSiteCatalogWithIndicator (SitePage.java:553) at org.eclipse.update.internal.ui.wizards.SitePage.access$1 (SitePage.java:525) at org.eclipse.update.internal.ui.wizards.SitePage$TreeContentProvider.getChildren (SitePage.java:51) at org.eclipse.jface.viewers.AbstractTreeViewer.getRawChildren (AbstractTreeViewer.java:704) at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren (StructuredViewer.java:441) at org.eclipse.jface.viewers.AbstractTreeViewer.isExpandable (AbstractTreeViewer.java:1138) at org.eclipse.jface.viewers.AbstractTreeViewer.updatePlus (AbstractTreeViewer.java:1585) at org.eclipse.jface.viewers.AbstractTreeViewer.updateChildren (AbstractTreeViewer.java:1533) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefreshStruct (AbstractTreeViewer.java:1039) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh (AbstractTreeViewer.java:1014) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh (AbstractTreeViewer.java:977) at org.eclipse.jface.viewers.AbstractTreeViewer.internalRefresh (AbstractTreeViewer.java:965) at org.eclipse.jface.viewers.StructuredViewer$7.run (StructuredViewer.java:848) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection (StructuredViewer.java:788) at org.eclipse.jface.viewers.CheckboxTreeViewer.preservingSelection (CheckboxTreeViewer.java:346) at org.eclipse.jface.viewers.StructuredViewer.refresh (StructuredViewer.java:846) at org.eclipse.jface.viewers.StructuredViewer.refresh (StructuredViewer.java:808) at org.eclipse.jface.viewers.StructuredViewer.addFilter (StructuredViewer.java:203) at org.eclipse.update.internal.ui.wizards.SitePage.createTreeViewer (SitePage.java:294) at org.eclipse.update.internal.ui.wizards.SitePage.createContents (SitePage.java:179) at org.eclipse.update.internal.ui.wizards.BannerPage.createControl (BannerPage.java:41) at org.eclipse.jface.wizard.Wizard.createPageControls(Wizard.java:161) at org.eclipse.jface.wizard.WizardDialog.createPageControls (WizardDialog.java:546) at org.eclipse.jface.wizard.WizardDialog.createContents (WizardDialog.java:451) at org.eclipse.jface.window.Window.create(Window.java:348) at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:924) at org.eclipse.update.internal.ui.InstallWizardAction.openNewUpdatesWizard (InstallWizardAction.java:58) at org.eclipse.update.internal.ui.InstallWizardAction.doRun (InstallWizardAction.java:52) at org.eclipse.update.internal.ui.InstallWizardAction.access$0 (InstallWizardAction.java:51) at org.eclipse.update.internal.ui.InstallWizardAction$1.run (InstallWizardAction.java:46) at org.eclipse.swt.custom.BusyIndicator.showWhile (BusyIndicator.java:69) at org.eclipse.update.internal.ui.InstallWizardAction.run (InstallWizardAction.java:44) at org.eclipse.ui.internal.PluginAction.runWithEvent (PluginAction.java:276) at org.eclipse.ui.internal.WWinPluginAction.runWithEvent (WWinPluginAction.java:206) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection (ActionContributionItem.java:899) at org.eclipse.jface.action.ActionContributionItem.access$2 (ActionContributionItem.java:850) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent (ActionContributionItem.java:769) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:796) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2725) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2390) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1353) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1324) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench (Workbench.java:243) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141) at org.eclipse.ui.internal.ide.IDEApplication.run (IDEApplication.java:90) at org.eclipse.core.internal.runtime.PlatformActivator$1.run (PlatformActivator.java:298) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:249) at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:126) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at org.eclipse.core.launcher.Main.basicRun(Main.java:269) at org.eclipse.core.launcher.Main.run(Main.java:722) at org.eclipse.core.launcher.Main.main(Main.java:706)
normal
VERIFIED
FIXED
{'$oid': '52e9c14054dc1c25ebdc0c46'}
61,926
The resources plugin currently requires org.eclipse.osgi.services. I believe this is not really required since the package that resources was likely interested in from services was moved to runtime (org.osgi.service.prefs)
normal
RESOLVED
FIXED