id
int64 1
6.5k
| bug_id
int64 2.03k
426k
| summary
stringlengths 9
251
| description
stringlengths 1
32.8k
⌀ | report_time
stringlengths 19
19
| report_timestamp
int64 1B
1.39B
| status
stringclasses 6
values | commit
stringlengths 7
9
| commit_timestamp
int64 1B
1.39B
| files
stringlengths 25
32.8k
| project_name
stringclasses 6
values |
---|---|---|---|---|---|---|---|---|---|---|
1,530 | 297,054 |
Bug 297054 [Contributions] extension of org.eclipse.jface.action.StatusLineContributionItem that should not "guess" contribution width
|
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 (.NET CLR 3.5.30729) Build Identifier: 20090920-1017 Current implementation of org.eclipse.jface.action.StatusLineContributionItem uses a DEFAULT_CHAR_WIDTH to "guess" the needed size (which will fail e.g. if many uppercase letters are used). Also, the size is fix once the instance is created. A much better and more dynamic implementation, however, would be a Contribution item that calculates its needed size based on the actual text contained (thus, grabbing exactly the size it needs for the text). This can be easily achieved by creating a new Contribution Item class that differs from StatusLineContributionItem in just the fill method. Below is a suggestion for the new method: public void fill(Composite parent) { statusLine = parent; Label sep = new Label(parent, SWT.SEPARATOR); label = new CLabel(statusLine, SWT.SHADOW_NONE); label.setText(text); // compute the size of the label to get the width hint for the contribution int widthHint = label.computeSize(SWT.DEFAULT, SWT.DEFAULT).x; StatusLineLayoutData data = new StatusLineLayoutData(); data.widthHint = widthHint; label.setLayoutData(data); data = new StatusLineLayoutData(); data.heightHint = heightHint; sep.setLayoutData(data); } Reproducible: Always
|
2009-12-07 05:37:28
| 1,260,180,000 |
verified fixed
|
02c8e85
| 1,265,660,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLineContributionItem.java
|
Eclipse_Platform_UI
|
1,531 | 301,717 |
Bug 301717 Renderer prematurely instantiates client objects when a part is added to a stack that's already showing another part
|
1. Have a window with a part stack that's showing a part. 2. Add another part to that stack without changing its selected element. 3. The new part's client object is prematurely instantiated. ------------ ### Eclipse Workspace Patch 1.0 #P org.eclipse.e4.ui.tests Index: src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java =================================================================== RCS file: /cvsroot/eclipse/e4/org.eclipse.e4.ui/tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java,v retrieving revision 1.10 diff -u -r1.10 PartRenderingEngineTests.java --- src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java 3 Feb 2010 15:09:37 -0000 1.10 +++ src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java 3 Feb 2010 16:52:39 -0000 @@ -301,6 +323,8 @@ assertEquals( "Adding a part to a stack should not cause the stack's active child to change", partA, stack.getSelectedElement()); + assertNull("The object should not have been instantiated", partB + .getObject()); } public void testCreateGuiBug301021() throws Exception { ------------ Thread [main] (Suspended) SampleView.<init>(Composite, IEclipseContext, IExtensionRegistry) line: 45 NativeConstructorAccessorImpl.newInstance0(Constructor, Object[]) line: not available [native method] NativeConstructorAccessorImpl.newInstance(Object[]) line: 67 DelegatingConstructorAccessorImpl.newInstance(Object[]) line: 45 Constructor<T>.newInstance(Object...) line: 522 ContextInjector.callConstructor(Constructor, Object[]) line: 708 ContextInjector.make(Class) line: 590 Injector.make(Class) line: 48 ContextInjectionFactory.make(Class, IEclipseContext) line: 170 ReflectionContributionFactory.createFromBundle(Bundle, IEclipseContext, URI) line: 196 ReflectionContributionFactory.create(String, IEclipseContext) line: 172 ContributedPartRenderer.createWidget(MUIElement, Object) line: 87 PartRenderingEngine.createWidget(MUIElement, Object) line: 393 PartRenderingEngine.createGui(MUIElement, Object) line: 293 PartRenderingEngine.createGui(MUIElement) line: 355 PartRenderingEngine$2.handleEvent(Event) line: 125 UIEventHandler.handleEvent(Event) line: 41 EventHandlerWrapper.handleEvent(Event, Permission) line: 188 EventHandlerTracker.dispatchEvent(Object, Object, int, Object) line: 198 EventManager.dispatchEvent(Set, EventDispatcher, int, Object) line: 227 ListenerQueue.dispatchEventSynchronous(int, Object) line: 149 EventAdminImpl.dispatchEvent(Event, boolean) line: 139 EventAdminImpl.sendEvent(Event) line: 78 EventComponent.sendEvent(Event) line: 39 EventBroker.send(String, Object) line: 73 UIEventPublisher.notifyChanged(Notification) line: 58 PartStackImpl(BasicNotifierImpl).eNotify(Notification) line: 280 EObjectContainmentWithInverseEList<E>(EcoreEList<E>).dispatchNotification(Notification) line: 255 EObjectContainmentWithInverseEList<E>(NotifyingListImpl<E>).addUnique(E) line: 300 EObjectContainmentWithInverseEList<E>(AbstractEList<E>).add(E) line: 307 PartRenderingEngineTests.testPartStack_SetActiveChild6Bug295250() line: 321
|
2010-02-03 11:53:11
| 1,265,220,000 |
resolved fixed
|
20cc2b8
| 1,265,650,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java
|
Eclipse_Platform_UI
|
1,532 | 300,758 |
Bug 300758 Bring Eclipse window to the front when opening file from command line
|
With the new support for opening a file in Eclipse from the command line (or through associating file types with Eclipse), we should bring the Eclipse window to the front when opening a file.
|
2010-01-25 21:33:37
| 1,264,470,000 |
verified fixed
|
74a4d66
| 1,265,640,000 |
bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/DelayedEventsProcessor.java
|
Eclipse_Platform_UI
|
1,533 | 301,976 |
Bug 301976 [WorkingSets] Test failure on Cocoa, N20100204-2000
| null |
2010-02-05 10:55:16
| 1,265,390,000 |
resolved fixed
|
34d5ca1
| 1,265,640,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceWorkingSetPage.java
|
Eclipse_Platform_UI
|
1,534 | 301,895 |
Bug 301895 TrimmedPartLayout miscalculates the left boundary
|
Build Identifier: UI HEAD, XWT HEAD, on I20100129 TrimmedPartLayout forgets to remove the new offset when calculating the new bounds for left-trim, resulting in the trim being placed under the content. === modified file 'bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/TrimmedPartLayout.java' --- bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/TrimmedPartLayout.java 2010-02-04 18:11:21 +0000 +++ bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/TrimmedPartLayout.java 2010-02-04 22:25:17 +0000 @@ -118,8 +118,8 @@ caRect.width -= leftSize.x; // Don't layout unless we've changed - Rectangle newBounds = new Rectangle(caRect.x, caRect.y, - leftSize.x, caRect.height); + Rectangle newBounds = new Rectangle(caRect.x - leftSize.x, + caRect.y, leftSize.x, caRect.height); if (!newBounds.equals(left.getBounds())) { left.setBounds(newBounds); } @@ -135,8 +135,7 @@ Rectangle newBounds = new Rectangle(caRect.x + caRect.width, caRect.y, rightSize.x, caRect.height); if (!newBounds.equals(right.getBounds())) { - right.setBounds(caRect.x + caRect.width, caRect.y, - rightSize.x, caRect.height); + right.setBounds(newBounds); } } Reproducible: Always
|
2010-02-04 17:30:46
| 1,265,320,000 |
resolved fixed
|
f4cfb39
| 1,265,400,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/TrimmedPartLayout.java
|
Eclipse_Platform_UI
|
1,535 | 300,502 |
Bug 300502 Add UI for finer grained file permissions
| null |
2010-01-22 10:30:56
| 1,264,170,000 |
resolved fixed
|
f473cf4
| 1,265,370,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java
|
Eclipse_Platform_UI
|
1,536 | 300,846 |
Bug 300846 Add "Resolve Values" switch to Path Variables property page
|
HEAD Table showing path variables for a resource has 3 columns: Name, Value and Resolved Value. Given the fact that values are rather long the third column is hardly visible. My suggestion is to remove the third column and add a switch to resolve variables in the second column. I'll put up a mockup in a minute...
|
2010-01-26 10:54:37
| 1,264,520,000 |
verified fixed
|
77ad8c1
| 1,265,290,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariablesGroup.java
|
Eclipse_Platform_UI
|
1,537 | 301,133 |
Bug 301133 Unhide the linked resources locations tab in the Linked Resources property page
|
The mentioned tab was hidden in M5 since it needed polishing. There are new icons in the page, so when this bug is fixed, I will raise another one to track creating new icons by our UI designers.
|
2010-01-28 09:55:33
| 1,264,690,000 |
verified fixed
|
e098e04
| 1,265,290,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/LinkedResourceEditor.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ProjectLinkedResourcePage.java
|
Eclipse_Platform_UI
|
1,538 | 122,772 |
Bug 122772 [Wizards] NewWizardAction would be able to customize the title and description of the opened wizard
|
At the moment, it possible to restrict the content of the New wizard to a given category of elements using the org.eclipse.ui.actions.NewWizardAction. Nevertheless, it is impossible to change the title neither the description of the wizard that is open by the action. It would be much more user friendly that instances of NewWizardAction that are usually displayed in the New sub menu like "XXXX..." open a wizard with a title such as "New XXXX". This the case for projects where an action "Project..." pops up a wizard titled "New Project". It has not be implemented using NewWizardAction due to this limitation (I guess). The solution has been to put the setting of the correct wizard title in NewWizard.init() according to an internal flag that is set in the NewProjectAction.run() method. This enhancement is required in TPTP (see #110714).
|
2006-01-05 11:30:57
| 1,136,480,000 |
verified fixed
|
2639a7e
| 1,265,280,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/actions/NewWizardAction.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/NewWizard.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/dialogs/UIWizardsAuto.java
|
Eclipse_Platform_UI
|
1,539 | 161,693 |
Bug 161693 [Contributions] Cannot show the items defined in "contributeToCoolBar" function of the ActionBarContributor
|
I am trying to add a few items on the WorkbenchWindow toolbar. I try to do this by define an ActionBarContributor class and configurer it in the plugin.xml. In my ActionBarContributor class, I write the following test code, but nothing happened. =============================================================================== @Override public void contributeToCoolBar(ICoolBarManager coolBarManager) { // TODO Auto-generated method stub super.contributeToCoolBar(coolBarManager); IToolBarManager sqlEditorBar = new ToolBarManager(SWT.FLAT | SWT.RIGHT); { sqlEditorBar.add(ActionFactory.SAVE_ALL.create(this.getPage().getWorkbenchWindow())); } coolBarManager.add(new ToolBarContributionItem(sqlEditorBar, "SQLEditorBar")); } =============================================================================== I also tried to override the contributeToToolBar(IToolBarManager toolBarManager) function, it seems work well. By tracking the code, I think that the "private void setVisible(boolean visible, boolean forceVisibility)" in the "EditorActionBars.java" would less control to the coolBarMgr. I am not totaly clear the complex mechanism of the control to the contributeItem of the coolbarManager and the difference between "contributeToToolBar" and "contributeToCoolBar". Can anybody tell me when to use "contributeToToolBar" and when to user "contributeToCoolBar"?
|
2006-10-20 03:54:24
| 1,161,330,000 |
resolved fixed
|
3a26657
| 1,265,180,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorActionBars.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/internal/EditorActionBarsTest.java
|
Eclipse_Platform_UI
|
1,540 | 301,583 |
Bug 301583 Reconciler chokes on changes of transient features
|
This has never happened before...but it's happening now. java.lang.RuntimeException: java.lang.IllegalArgumentException: The datatype 'IEclipseContext' is not a valid classifier at org.eclipse.e4.workbench.ui.internal.ResourceHandler.save(ResourceHandler.java:140) at org.eclipse.e4.ui.workbench.swt.internal.E4Application.saveModel(E4Application.java:116) at org.eclipse.e4.ui.workbench.swt.internal.E4Application.start(E4Application.java:107) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:48) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37) at java.lang.reflect.Method.invoke(Method.java:600) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) Caused by: java.lang.IllegalArgumentException: The datatype 'IEclipseContext' is not a valid classifier at org.eclipse.e4.ui.model.application.impl.ApplicationFactoryImpl.createFromString(ApplicationFactoryImpl.java:117) at org.eclipse.emf.ecore.util.EcoreUtil.createFromString(EcoreUtil.java:3259) at org.eclipse.emf.ecore.change.impl.FeatureChangeImpl.getValue(FeatureChangeImpl.java:432) at org.eclipse.emf.ecore.change.util.BasicChangeRecorder.eliminateEmptyChanges(BasicChangeRecorder.java:152) at org.eclipse.emf.ecore.change.util.BasicChangeRecorder.consolidateChanges(BasicChangeRecorder.java:132) at org.eclipse.emf.ecore.change.util.ChangeRecorder.consolidateChanges(ChangeRecorder.java:224) at org.eclipse.emf.ecore.change.util.BasicChangeRecorder.endRecording(BasicChangeRecorder.java:106) at org.eclipse.e4.workbench.ui.internal.XMLModelReconciler.calculateDeltas(XMLModelReconciler.java:717) at org.eclipse.e4.workbench.ui.internal.XMLModelReconciler.serialize(XMLModelReconciler.java:723) at org.eclipse.e4.workbench.ui.internal.ResourceHandler.save(ResourceHandler.java:128) ... 16 more
|
2010-02-02 14:36:37
| 1,265,140,000 |
resolved fixed
|
0f3374f
| 1,265,140,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java
|
Eclipse_Platform_UI
|
1,541 | 301,193 |
Bug 301193 Restoring editor with inputURI from deltas.xml leads to an NPE in XMLModelReconciler.getValue()
|
Build Identifier: as of 2010-01-27 I have an MEditor instance configured with a valid inputURI. But running the app again leads to an NPE (below). The problem is that XMLModelReconciler.getStructuralFeature() for an EditorImpl and attributeName "inputURI" returns null. As I wasn't sure how the long list was populated, I hacked the getStructuralFeature() to do EMF introspection. I'm sure this isn't efficient, but it works for now. === modified file 'bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java' --- bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java 2010-01-25 18:42:27 +0000 +++ bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java 2010-01-28 23:10:38 +0000 @@ -214,6 +214,12 @@ return MApplicationPackage.eINSTANCE.getPartDescriptor_AllowMultiple(); } else if (featureName.equals(PARTDESCRIPTOR_CATEGORY_ATTNAME)) { return MApplicationPackage.eINSTANCE.getPartDescriptor_Category(); + } else { + for (EStructuralFeature sf : object.eClass().getEAllStructuralFeatures()) { + if (sf.getName().equals(featureName)) { + return sf; + } + } } return null; } Exception is as follows: Daemon Thread [Thread-0] (Suspended (exception NullPointerException)) XMLModelReconciler.getValue(EStructuralFeature, String) line: 222 XMLModelReconciler.createObject(Collection<ModelDelta>, String, Element, List<Object>) line: 673 XMLModelReconciler.createObject(Collection<ModelDelta>, Element, List<Object>) line: 685 XMLModelReconciler.createMultiReferenceDelta(Collection<ModelDelta>, List<Object>, EObject, EStructuralFeature, Element) line: 535 XMLModelReconciler.constructObjectDeltas(Collection<ModelDelta>, List<Object>, EObject, Element) line: 337 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 251 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Collection<ModelDelta>, List<Object>, EObject, Element, String) line: 258 XMLModelReconciler.constructDeltas(Object, Object) line: 129 ResourceHandler.loadMostRecentModel() line: 168 E4Application.loadApplicationModel(IApplicationContext, IEclipseContext) line: 176 E4Application.start(IApplicationContext) line: 72 EclipseAppHandle.run(Object) line: 194 EclipseAppLauncher.runApplication(Object) line: 110 EclipseAppLauncher.start(Object) line: 79 EclipseStarter.run(Object) line: 367 EclipseStarter.run(String[], Runnable) line: 179 NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method] NativeMethodAccessorImpl.invoke(Object, Object[]) line: 39 DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 25 Method.invoke(Object, Object...) line: 597 Main.invokeFramework(String[], URL[]) line: 611 Main.basicRun(String[]) line: 566 Main.run(String[]) line: 1363 Main.main(String[]) line: 1339 Reproducible: Always Steps to Reproduce: 1. Setup an MEditor with an inputURI 2. Quit the app 3. Restart the app.
|
2010-01-28 18:14:22
| 1,264,720,000 |
resolved fixed
|
f086bb1
| 1,265,040,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/XMLModelReconciler.java
|
Eclipse_Platform_UI
|
1,542 | 300,862 |
Bug 300862 Change buttons order in PathVariableDialog
|
IMHO more intuitive order for buttons in PathVariableDialog would be [File...][Folder...][Variable...] instead of [File...][Variable...][Folder...]. I can provide a patch if the swap makes sense to you too ;)
|
2010-01-26 11:32:17
| 1,264,520,000 |
verified fixed
|
9a3d18e
| 1,265,040,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariableDialog.java
|
Eclipse_Platform_UI
|
1,543 | 243,742 |
Bug 243742 [Contributions] Registering a PRIVATE popup menu
|
Build ID: I20080617-2000 Steps To Reproduce: This is an enhancement request. The "org.eclipse.ui.popup.any" allows to add a menuitem to ALL registered popup menus in the system. Some plugins (debug, team) misuse this possibility and register actions which are too wide and appear everywhere. This leads to popup menu pollution. More information: It would be great to be able to register a popup menu privately in a way that only the menuitems directly specifing the id woul only be added to it (but not those that specify org.eclipse.ui.popup.any) For example, contributions to a menu with an ID: org.example.editor.popup#private would be added only if the contributor specifies exactly the ID (org.example.editor.popup#private). Contributions specifying the org.eclipse.ui.popup.any would be ignored for this popup.
|
2008-08-11 08:36:57
| 1,218,460,000 |
verified fixed
|
b340bcc
| 1,265,020,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/MenuAdditionCacheEntry.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/menus/MenuPopulationTest.java
|
Eclipse_Platform_UI
|
1,544 | 301,362 |
Bug 301362 ReflectionContributionFactory is not reusable
|
There are several "private" methods in the class ReflectionContributionFactory, such as getBundle() and createFromBundle(). They prevent to reuse this class in e4 Designer. We need just to change them to protected
|
2010-01-31 13:24:18
| 1,264,960,000 |
resolved fixed
|
4e972f7
| 1,264,960,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ReflectionContributionFactory.java
|
Eclipse_Platform_UI
|
1,545 | 300,173 |
Bug 300173 Reorder of items in ToolBar and Menu doesn't reflect in Renderer
|
When we DnD of ToolItem or MenuItem in outline of e4 Designer, the designer refreshes with a wrong result. For example, if we have two items: Open and Save in order. When we change the order to Save and Open by moving Save, in Renderer we have only Open.
|
2010-01-20 07:03:22
| 1,263,990,000 |
resolved fixed
|
425ffcf
| 1,264,710,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SWTPartRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ToolBarRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ToolItemRenderer.java
|
Eclipse_Platform_UI
|
1,546 | 301,101 |
Bug 301101 TrimmedPartLayout does not respect origin of client area
|
Currently the TrimmedPartLayout only respects width and height of the client area to layout the composites. The layout cannot expect that the client area is always located at 0,0 (even though in SWT most of the time it is). We should respect the location of the clientarea while computing the layout.
|
2010-01-28 05:26:55
| 1,264,670,000 |
verified fixed
|
9446b65
| 1,264,700,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/TrimmedPartLayout.java
|
Eclipse_Platform_UI
|
1,547 | 300,899 |
Bug 300899 Endless OpenDoc events
|
When we changed the code to send OpenDoc instead of post it, it seems that we broke carbon. If you open an associated file Eclipse becomes unusable because of many OpenDoc events.
|
2010-01-26 14:22:46
| 1,264,530,000 |
verified fixed
|
b0435fe
| 1,264,630,000 |
bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/DelayedEventsProcessor.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDE.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java
|
Eclipse_Platform_UI
|
1,548 | 298,835 |
Bug 298835 Merge e4 Project Path Variable back into the 3.6 stream
|
The virtual folder and filters changes are already in 3.6, the project path variable changes in e4 still remains to be merged.
|
2010-01-05 06:54:37
| 1,262,690,000 |
verified fixed
|
967371b
| 1,264,500,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariableDialog.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/PathVariablesGroup.java
|
Eclipse_Platform_UI
|
1,549 | 295,250 |
Bug 295250 ContributedPartRenderer eagerly activates constructed parts in createWidget
|
I was wondering why my part was becoming active when I noticed the two lines of code below in CPR... parentContext.set(IContextConstants.ACTIVE_CHILD, localContext); activate(element); This eager activation is in direct conflict with the 3.x IWorkbenchPage's showView method with a IWorkbenchPage.VIEW_CREATE mode passed in.
|
2009-11-16 09:13:19
| 1,258,380,000 |
resolved fixed
|
24666a1
| 1,264,440,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/ContributedPartRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/PartServiceImpl.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java
|
Eclipse_Platform_UI
|
1,550 | 4,922 |
Bug 4922 [EditorMgmt] Need ability to open a file in eclipse from the command line
|
We need to be able to register eclipse as the default editor for a file type with the OS. This will allow double clicking on a file and opening it in eclipse. This is important for being able to view a .java file in a zip etc. I don't think it should be a problem to get the file name from the command line through to the workbech application which will be able to determine what editor to use. The question is where to put it in the workspace. I think the easiest answer is to just create a "miscellaneous" project mapped to the file's location. Remember this is not a project for "real work", its just a way of allowing the file to be viewed/edited using an eclipse editor.
|
2001-10-12 08:33:31
| 1,002,890,000 |
verified fixed
|
0193c20
| 1,264,190,000 |
bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/DelayedEventsProcessor.java bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEApplication.java bundles/org.eclipse.ui.ide.application/src/org/eclipse/ui/internal/ide/application/IDEWorkbenchAdvisor.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java
|
Eclipse_Platform_UI
|
1,551 | 299,152 |
Bug 299152 [Forms] FormEditor isDirty() should consider FormEditor pages
|
Build Identifier: M20090917-0800 FormEditor's isDirty() method checks all of the IFormPage children and returns dirty if any of them are dirty. Since a FormEditor can contain other FormEditors as pages the isDirty method should return dirty if a child FormEditor is dirty. Reproducible: Always
|
2010-01-08 12:35:28
| 1,262,970,000 |
resolved fixed
|
55ebe35
| 1,264,110,000 |
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/editor/FormEditor.java
|
Eclipse_Platform_UI
|
1,552 | 291,069 |
Bug 291069 [Commands] IWorkbenchCommandConstants should also define command parameter ids
|
HEAD IWorkbenchCommandConstants should also define the parameter ids that are used by commands. E.g. the NAVIGATE_SHOW_IN command defines a <commandParameter> with id 'org.eclipse.ui.navigate.showIn.targetId' in the plugin.xml, but I didn't find a constant for that (only two internal constants: ShowInHandler.TARGET_ID, ShowInMenu.SHOW_IN_PARM_ID).
|
2009-10-01 13:23:13
| 1,254,420,000 |
verified fixed
|
8e5acc5
| 1,264,100,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchCommandConstants.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/ShowPerspectiveHandler.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/handlers/ShowViewHandler.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ChangeToPerspectiveMenu.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/PerspectiveSwitcher.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowInHandler.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowInMenu.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ShowViewMenu.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/CustomizePerspectiveDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ClosePerspectiveHandler.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/ShowPreferencePageHandler.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/handlers/WizardHandler.java tests/org.eclipse.ui.tests.performance/src/org/eclipse/ui/tests/performance/OpenClosePerspectiveTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/api/IWorkbenchPageTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/dynamicplugins/BindingsExtensionDynamicTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/stress/OpenCloseTest.java
|
Eclipse_Platform_UI
|
1,553 | 288,624 |
Bug 288624 [EditorMgmt] Mac: Error when browsing to external editor and then launching
|
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.11) Gecko/2009060214 Firefox/3.0.11 Build Identifier: 3.5 Launch an external editor from the Project Explorer as follows. Reproducible: Always Steps to Reproduce: 1.Right click on the file in Project Explorer 2.Select Open With --> Other... 3.In the Editor selection dialog that opens up, select external editors radio button. 4.Instead of selecting the application from the list here, browse to the application using the Browse button, click on open 5.Click on OK in the Editor Selection dialog. Error dialog shows up with the message "Unable to open external editor". Note that selecting the application from the list doesn't works fine. The error, because the code to open the ExternalEditor tries to execute(exec) the .app and not the executable. It is reproducible in both Carbon and Cocoa.
|
2009-09-04 07:24:12
| 1,252,060,000 |
verified fixed
|
2917fc9
| 1,264,080,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/misc/ExternalEditor.java
|
Eclipse_Platform_UI
|
1,554 | 296,466 |
Bug 296466 [GlobalActions] Can't remove 'Build All' from toolbar
|
R3.5.1 and I20091125-2200. There's no way (e.g. via Customize Perspective) to remove the 'Build All' action from the toolbar.
|
2009-11-30 08:41:59
| 1,259,590,000 |
verified fixed
|
18c9869
| 1,264,010,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/IDEActionFactory.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java
|
Eclipse_Platform_UI
|
1,555 | 296,691 |
Bug 296691 Change new Groups API to Virtual Resource API
|
If we decide that 'virtual' is the right naming for new resources concept, I will make the following changes. Add IResource#VIRTUAL flag to use in #create methods Add IResource#isVirtual indicating that a resource is virtual Remove IResource#isGroup Remove IFolder#createGroup
|
2009-12-02 07:51:04
| 1,259,760,000 |
resolved fixed
|
b475298
| 1,264,010,000 |
bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/actions/CopyFilesAndFoldersOperation.java bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/ResourceDescription.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/WorkspaceUndoUtil.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/LinkedResourceDecorator.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/VirtualResourceDecorator.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceInfoPage.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/undo/GroupDescription.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/views/navigator/NavigatorDropAdapter.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/datatransfer/ImportOperation.java bundles/org.eclipse.ui.navigator.resources/src/org/eclipse/ui/navigator/resources/ResourceDropAdapterAssistant.java
|
Eclipse_Platform_UI
|
1,556 | 300,032 |
Bug 300032 [Markers] NPE in MarkerFieldFilterGroup.selectByScope
|
I20100115-1100 I had a Java editor open and dirty. The Problems view was NOT visible (topmost in that view stack was Progress). I pressed 'Alt+Shift+W, P, Return' to reveal the file in the Package Explorer. The stored file had no compile problems, but the the working copy in the editor had a problem which I fixed shortly before I started the Show In action. java.lang.NullPointerException at org.eclipse.ui.internal.views.markers.MarkerFieldFilterGroup.selectByScope(MarkerFieldFilterGroup.java:693) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.select(MarkerContentGenerator.java:781) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.internalGatherMarkers(MarkerContentGenerator.java:1073) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.gatherMarkers(MarkerContentGenerator.java:1013) at org.eclipse.ui.internal.views.markers.MarkerContentGenerator.generateMarkerEntries(MarkerContentGenerator.java:991) at org.eclipse.ui.internal.views.markers.MarkerUpdateJob.clean(MarkerUpdateJob.java:117) at org.eclipse.ui.internal.views.markers.MarkerUpdateJob.buildMarkers(MarkerUpdateJob.java:77) at org.eclipse.ui.internal.views.markers.MarkerUpdateJob.run(MarkerUpdateJob.java:57) at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
|
2010-01-19 04:51:26
| 1,263,890,000 |
closed fixed
|
920e82d
| 1,263,980,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java
|
Eclipse_Platform_UI
|
1,557 | 299,335 |
Bug 299335 [Progress] Finished Tasks Still Show In Progress View
| null |
2010-01-12 00:03:04
| 1,263,270,000 |
verified fixed
|
5277aba
| 1,263,970,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/BlockedJobsDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ErrorInfo.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/GroupInfo.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/JobInfo.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/JobTreeElement.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/ProgressInfoItem.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/SubTaskInfo.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/progress/ProgressContantsTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/progress/ProgressTestCase.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/progress/ProgressTestSuite.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/progress/ProgressViewTests.java
|
Eclipse_Platform_UI
|
1,558 | 296,728 |
Bug 296728 [CommonNavigator] Problem with enablement on navigatorContent extension point
|
If I use the enablement node with the expression "WITH", no variable was found because no real context is given. example : <extension point="org.eclipse.ui.navigator.navigatorContent"> <commonWizard type="new" wizardId="com.mywizard"> <enablement> <with variable="activeWorkbenchWindow.activePerspective"> <equals value="com.myperpective"> </equals> </with> </enablement> </commonWizard> make this error : org.eclipse.core.runtime.CoreException: The variable activeWorkbenchWindow.activePerspective is not defined at org.eclipse.core.internal.expressions.WithExpression.evaluate(WithExpression.java:65) at org.eclipse.core.internal.expressions.CompositeExpression.evaluateAnd(CompositeExpression.java:53) at org.eclipse.core.internal.expressions.EnablementExpression.evaluate(EnablementExpression.java:53) at org.eclipse.ui.internal.navigator.wizards.CommonWizardDescriptor.isEnabledFor(CommonWizardDescriptor.java:145) at org.eclipse.ui.internal.navigator.wizards.CommonWizardDescriptorManager.getEnabledCommonWizardDescriptors(CommonWizardDescriptorManager.java:158) at org.eclipse.ui.navigator.WizardActionGroup.setContext(WizardActionGroup.java:193) at org.eclipse.ui.internal.navigator.resources.actions.NewActionProvider.fillContextMenu(NewActionProvider.java:107) You could do use the currentState of the IEvaluationService. (see WorkbenchWindow line 3035)
|
2009-12-02 13:05:21
| 1,259,780,000 |
resolved fixed
|
af460a2
| 1,263,950,000 |
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPlugin.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/actions/CommonActionProviderDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/dnd/CommonDropAdapterDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/LinkHelperDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/filters/CoreExpressionFilter.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/sorters/CommonSorterDescriptor.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/wizards/CommonWizardDescriptor.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java
|
Eclipse_Platform_UI
|
1,559 | 295,803 |
Bug 295803 [CommonNavigator] Source of Contribution set to lowest priority NCE, not the NCE providing the children
|
If two NCEs are triggered on the same object they are processed in order of priority, both NCEs are asked to contribute children for a given parent. In the case where they both contribute the same object, the second one will be recorded as the "source of contribution" for the object. This happens for example for a resource where there are two NCEs defined, the resource (or perhaps Java NCE that overrides the resource NCE) and another one possibly related to an RCP app. The source of the contribution is important because it is used first to determine which NCE is going to be selected to provide the label. The first NCE that provides a label wins. In 3.4 the behavior was the opposite, the higher priority NCE provided the label. There was no mechanism for overriding the label provider in 3.4, and the label was also not provided with regard to the source of contribution, it just picked the highest priority NCE to start with (which is what you would expect, in the absence of overrides). There is a benefit of using the source of contribution to provide the label, but then the source of contribution should be set to the NCE that actually provide the objects, not a subsequent NCE. We should consider fixing this for 3.5.2, and of course we need to make sure and test all of the usual things that depend on the CNF. (DTP, WST, CDT)
|
2009-11-22 03:08:44
| 1,258,880,000 |
resolved fixed
|
6ff93ff
| 1,263,940,000 |
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/ContributorTrackingSet.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentService.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceContentProvider.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPipelineService.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentExtension.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/SafeDelegateTreeContentProvider.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/StructuredViewerManager.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java
|
Eclipse_Platform_UI
|
1,560 | 299,438 |
Bug 299438 [CommonNavigator] CNF viewer state non properly reset when NCEs are activated or deactivated
|
The map of the objects to the NCEs should be reset whenever the NCEs associated with the viewer to change to avoid having stale label information. This has shown up when looking at the CNF tests that change the viewer.
|
2010-01-12 17:16:06
| 1,263,330,000 |
resolved fixed
|
da50d1f
| 1,263,930,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/StructuredViewer.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentService.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/StructuredViewerManager.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java
|
Eclipse_Platform_UI
|
1,561 | 298,747 |
Bug 298747 [EditorMgmt] Bidi Incorrect file type direction in mirrored "Editor Selection" dialog
| null |
2010-01-04 06:53:53
| 1,262,610,000 |
verified fixed
|
2ee9402
| 1,263,920,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/dialogs/EditorSelectionDialog.java
|
Eclipse_Platform_UI
|
1,562 | 296,748 |
Bug 296748 [FieldAssist] remove the deprecated SimpleContentProposal
| null |
2009-12-02 15:57:36
| 1,259,790,000 |
verified fixed
|
bf4e6b9
| 1,263,920,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/SimpleContentProposal.java
|
Eclipse_Platform_UI
|
1,563 | 94,796 |
Bug 94796 [EditorMgmt] 'Save All Modified Resources' job is unnamed
| null |
2005-05-11 13:36:18
| 1,115,830,000 |
verified fixed
|
f0d6531
| 1,263,910,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/EditorManager.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/SaveablesList.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchMessages.java
|
Eclipse_Platform_UI
|
1,564 | 300,012 |
Bug 300012 [CommonNavigator] CNF test improvements
|
Various improvements and corrections.
|
2010-01-18 21:59:47
| 1,263,870,000 |
resolved fixed
|
7b9fb7f
| 1,263,870,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/M12Tests.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineChainTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestPipelineProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M1ContentProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M2ContentProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2Resource.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/ResourceWrapper.java
|
Eclipse_Platform_UI
|
1,565 | 299,990 |
Bug 299990 Example project for an Eclipse 4 Editor
| null |
2010-01-18 16:32:42
| 1,263,850,000 |
resolved fixed
|
b1962a9
| 1,263,850,000 |
examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/AddNoteHandler.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/ExifTable.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/NoteEditor.java
|
Eclipse_Platform_UI
|
1,566 | 299,685 |
Bug 299685 Empty iconURI's cause 'MalformedURLException' failures rather than being ignored
|
One of the issues Lars' found is that if you fill in a field (i.e. iconURI) and subsequently clear it you don't end up in the same model state. Once the value has been set in the editor it will never be 'null' again, clearing the field just sets it to an empty string.
|
2010-01-14 14:16:20
| 1,263,500,000 |
resolved fixed
|
722b24d
| 1,263,500,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SWTPartRenderer.java bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/ResourceUtility.java
|
Eclipse_Platform_UI
|
1,567 | 299,588 |
Bug 299588 [Forms] Widget disposed exception when closing shell from a FormText selection
| null |
2010-01-13 21:07:28
| 1,263,430,000 |
resolved fixed
|
7d76a8f
| 1,263,500,000 |
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/FormText.java
|
Eclipse_Platform_UI
|
1,568 | 299,680 |
Bug 299680 Loading model deltas should properly process exception and fallback to the base model
| null |
2010-01-14 13:59:28
| 1,263,500,000 |
resolved fixed
|
11be391
| 1,263,500,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ResourceHandler.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/Workbench.java
|
Eclipse_Platform_UI
|
1,569 | 280,665 |
Bug 280665 [Forms] Widget is disposed exception caused by FormToolkit$KeyboardHandler.keyPressed(FormToolki t.java:179)
|
I have a PopupDialog with a form inside it. The form holds a FormText control with a link in it. The link handler does some stuff and then closes the dialog. When I activate the link with a mouse, there is no problem. When I activate the link with keyboard, I see the following exception in the log. It looks like the key listener registered by the form toolkit is not checking if the widget has already been disposed by the time that listener is called. I put in a temporary workaround which involves calling asyncExec inside my link handler, but I would like to see this fixed. Should be pretty trivial. org.eclipse.swt.SWTException: Widget is disposed at org.eclipse.swt.SWT.error(SWT.java:3884) at org.eclipse.swt.SWT.error(SWT.java:3799) at org.eclipse.swt.SWT.error(SWT.java:3770) at org.eclipse.swt.widgets.Widget.error(Widget.java:463) at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java:336) at org.eclipse.swt.widgets.Control.getParent(Control.java:1355) at org.eclipse.ui.internal.forms.widgets.FormUtil.getScrolledComposite(FormUtil.j ava:204) at org.eclipse.ui.internal.forms.widgets.FormUtil.processKey(FormUtil.java:377) at org.eclipse.ui.forms.widgets.FormToolkit$KeyboardHandler.keyPressed(FormToolki t.java:179) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:155) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1027) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1012) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1040) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1036) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1368) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:4053) at org.eclipse.swt.widgets.Canvas.WM_CHAR(Canvas.java:346) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3946) at org.eclipse.swt.widgets.Canvas.windowProc(Canvas.java:342) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4589) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2409) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3471) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2405) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2369) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2221) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.ja va:113) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:19 4) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(Ec lipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppL auncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:368) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.j ava:25) at java.lang.reflect.Method.invoke(Method.java:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:559) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:514) at org.eclipse.equinox.launcher.Main.run(Main.java:1311) at org.eclipse.equinox.launcher.Main.main(Main.java:1287)
|
2009-06-17 15:11:43
| 1,245,270,000 |
verified fixed
|
c6b1ac7
| 1,263,500,000 |
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/FormUtil.java
|
Eclipse_Platform_UI
|
1,570 | 299,624 |
Bug 299624 CCE in testCreateView in I20100113-2100
|
A test error in last night's integration build. org.eclipse.swt.widgets.Composite incompatible with org.eclipse.e4.ui.widgets.ETabFolder java.lang.ClassCastException: org.eclipse.swt.widgets.Composite incompatible with org.eclipse.e4.ui.widgets.ETabFolder at org.eclipse.e4.ui.tests.workbench.MWindowTest.testCreateView(MWindowTest.java:181) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354) at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206) at org.eclipse.test.CoreTestApplication.runTests(CoreTestApplication.java:35) at org.eclipse.test.CoreTestApplication.run(CoreTestApplication.java:31) at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:586) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) at org.eclipse.core.launcher.Main.main(Main.java:34)
|
2010-01-14 07:40:57
| 1,263,470,000 |
resolved fixed
|
45e9467
| 1,263,490,000 |
tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MPartTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MSaveablePartTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MWindowTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/NewMWindowTest.java
|
Eclipse_Platform_UI
|
1,571 | 299,083 |
Bug 299083 Renderer does not do layout after a child view has been added
| null |
2010-01-07 16:28:23
| 1,262,900,000 |
resolved fixed
|
03f9d09
| 1,263,440,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java
|
Eclipse_Platform_UI
|
1,572 | 299,410 |
Bug 299410 Keybinding is interfering with character input
|
To Reproduce: Runt the contacts demo, select a person and try adding an '(' to any field in the Details view. I'm getting the following stack (and no character): java.lang.IllegalArgumentException: unexpected InvalidSyntaxException: Invalid value at "()" at org.osgi.util.tracker.ServiceTracker.<init>(ServiceTracker.java:207) at org.eclipse.e4.internal.core.services.osgi.OSGiContextStrategy.lookup(OSGiContextStrategy.java:121) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:347) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:371) at org.eclipse.e4.core.services.internal.context.EclipseContext.get(EclipseContext.java:316) at org.eclipse.e4.ui.bindings.internal.BindingPrefixLookupFunction.compute(BindingPrefixLookupFunction.java:42) at org.eclipse.e4.core.services.internal.context.ValueComputation.get(ValueComputation.java:134) at org.eclipse.e4.core.services.internal.context.EclipseContext.internalGet(EclipseContext.java:339) at org.eclipse.e4.core.services.internal.context.EclipseContext.get(EclipseContext.java:320) at org.eclipse.e4.ui.bindings.internal.BindingServiceImpl.isPartialMatch(BindingServiceImpl.java:274) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.isPartialMatch(KeyBindingDispatcher.java:420) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.press(KeyBindingDispatcher.java:442) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.processKeyEvent(KeyBindingDispatcher.java:499) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.filterKeySequenceBindings(KeyBindingDispatcher.java:333) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher.access$0(KeyBindingDispatcher.java:279) at org.eclipse.e4.ui.bindings.keys.KeyBindingDispatcher$KeyDownFilter.handleEvent(KeyBindingDispatcher.java:68) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84) at org.eclipse.swt.widgets.Display.filterEvent(Display.java:1240) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1049) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1074) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1059) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1100) at org.eclipse.swt.widgets.Text.sendKeyEvent(Text.java:1427) at org.eclipse.swt.widgets.Widget.sendKeyEvent(Widget.java:1096) at org.eclipse.swt.widgets.Widget.wmChar(Widget.java:1505) at org.eclipse.swt.widgets.Control.WM_CHAR(Control.java:4060) at org.eclipse.swt.widgets.Text.WM_CHAR(Text.java:2175) at org.eclipse.swt.widgets.Control.windowProc(Control.java:3952) at org.eclipse.swt.widgets.Text.windowProc(Text.java:2170) at org.eclipse.swt.widgets.Display.windowProc(Display.java:4678) at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method) at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:2437) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3522) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$4.run(PartRenderingEngine.java:555) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.run(PartRenderingEngine.java:478) at org.eclipse.e4.workbench.ui.internal.E4Workbench.createAndRunUI(E4Workbench.java:81) at org.eclipse.e4.ui.workbench.swt.internal.E4Application.start(E4Application.java:103) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:615) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) Caused by: org.osgi.framework.InvalidSyntaxException: Invalid value at "()" at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_substring(FilterImpl.java:1560) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_item(FilterImpl.java:1467) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_filtercomp(FilterImpl.java:1373) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse_filter(FilterImpl.java:1339) at org.eclipse.osgi.framework.internal.core.FilterImpl$Parser.parse(FilterImpl.java:1318) at org.eclipse.osgi.framework.internal.core.FilterImpl.newInstance(FilterImpl.java:142) at org.eclipse.osgi.framework.internal.core.BundleContextImpl.createFilter(BundleContextImpl.java:991) at org.osgi.util.tracker.ServiceTracker.<init>(ServiceTracker.java:200) ... 53 more
|
2010-01-12 13:41:20
| 1,263,320,000 |
resolved fixed
|
6becae0
| 1,263,420,000 |
tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/KeyDispatcherTest.java
|
Eclipse_Platform_UI
|
1,573 | 299,554 |
Bug 299554 Application.xmi without Window
| null |
2010-01-13 15:25:11
| 1,263,410,000 |
resolved fixed
|
9a60041
| 1,263,410,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java
|
Eclipse_Platform_UI
|
1,574 | 299,435 |
Bug 299435 NPE closing contacts demo with a dirty part
| null |
2010-01-12 16:30:16
| 1,263,330,000 |
resolved fixed
|
befb11a
| 1,263,330,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java
|
Eclipse_Platform_UI
|
1,575 | 299,340 |
Bug 299340 [CommonNavigator] Enable new CNF tests
|
Enable the contributed CNF tests, make minor test improvements.
|
2010-01-12 01:29:54
| 1,263,280,000 |
resolved fixed
|
a325a1e
| 1,263,280,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/FirstClassM1Tests.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/M12Tests.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestSuite.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineChainTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/ProgrammaticOpenTest.java
|
Eclipse_Platform_UI
|
1,576 | 299,331 |
Bug 299331 [CommonNavigator] Compile errors in new CNF tests
| null |
2010-01-11 21:40:16
| 1,263,260,000 |
resolved fixed
|
6f5608c
| 1,263,260,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestPipelineProvider.java
|
Eclipse_Platform_UI
|
1,577 | 299,326 |
Bug 299326 [CommonNavigator] Add new test for CNF pipelining
| null |
2010-01-11 17:44:27
| 1,263,250,000 |
resolved fixed
|
02a5c36
| 1,263,250,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineChainTest.java
|
Eclipse_Platform_UI
|
1,578 | 299,325 |
Bug 299325 [CommonNavigator] Add plugin.xml configuration for new pipeline tests
| null |
2010-01-11 17:43:13
| 1,263,250,000 |
resolved fixed
|
31de14e
| 1,263,250,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestEmptyContentProvider.java
|
Eclipse_Platform_UI
|
1,579 | 299,324 |
Bug 299324 [CommonNavigator] Add new test Pipeline content provider
| null |
2010-01-11 17:42:41
| 1,263,250,000 |
resolved fixed
|
48f870c
| 1,263,250,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestPipelineProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/ResourceWrapperContentProvider.java
|
Eclipse_Platform_UI
|
1,580 | 299,322 |
Bug 299322 [CommonNavigator] Test contribution for CNF
| null |
2010-01-11 17:25:30
| 1,263,250,000 |
resolved fixed
|
def22bb
| 1,263,250,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/FirstClassM1Tests.java
|
Eclipse_Platform_UI
|
1,581 | 298,851 |
Bug 298851 The change on containerData doesn't reflect on UI
|
During the development of e4 designer on the part layout, we have noticed a problem of synchronizatin of EMF with SWT. The change of containerData via API is not reflected on UI. I suppose it is in working progress.
|
2010-01-05 09:01:10
| 1,262,700,000 |
resolved fixed
|
c991780
| 1,263,240,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SashRenderer.java
|
Eclipse_Platform_UI
|
1,582 | 299,304 |
Bug 299304 [CommonNavigator] Test contribution for CNF
| null |
2010-01-11 13:24:10
| 1,263,230,000 |
resolved fixed
|
8e85922
| 1,263,240,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/M12Tests.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java
|
Eclipse_Platform_UI
|
1,583 | 299,272 |
Bug 299272 Renderer cannot handle an MPart with a null label
|
java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:4049) at org.eclipse.swt.SWT.error(SWT.java:3983) at org.eclipse.swt.SWT.error(SWT.java:3954) at org.eclipse.e4.ui.widgets.CTabItem.setText(CTabItem.java:1013) at org.eclipse.e4.workbench.ui.renderers.swt.StackRenderer.showChild(StackRenderer.java:296) at org.eclipse.e4.workbench.ui.renderers.swt.LazyStackRenderer.processContents(LazyStackRenderer.java:92) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:54) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:54) at org.eclipse.e4.workbench.ui.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:369) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine$4.run(PartRenderingEngine.java:510)
|
2010-01-11 08:12:46
| 1,263,220,000 |
resolved fixed
|
21c5e1a
| 1,263,220,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MPartTest.java
|
Eclipse_Platform_UI
|
1,584 | 299,255 |
Bug 299255 [CommonNavigator] Hook new CNF tests to plugin.xml
| null |
2010-01-11 05:14:03
| 1,263,200,000 |
resolved fixed
|
1fa9ceb
| 1,263,210,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M1AdapterFactory.java
|
Eclipse_Platform_UI
|
1,585 | 299,249 |
Bug 299249 [CommonNavigator] Add ResourceWrapperContent/Label provider for new CNF tests
| null |
2010-01-11 04:44:44
| 1,263,200,000 |
resolved fixed
|
2d67e0d
| 1,263,200,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M1ContentProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/M2ContentProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/ResourceWrapperContentProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/ResourceWrapperLabelProvider.java
|
Eclipse_Platform_UI
|
1,586 | 299,246 |
Bug 299246 [CommonNavigator] Add model objects for new CNF tests
| null |
2010-01-11 04:32:52
| 1,263,200,000 |
resolved fixed
|
0cfed52
| 1,263,200,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Container.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Core.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1File.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Folder.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Project.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M1Resource.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2Core.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2File.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/M2Resource.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/m12/model/ResourceWrapper.java
|
Eclipse_Platform_UI
|
1,587 | 299,210 |
Bug 299210 [CommonNavigator] Test improvements
| null |
2010-01-10 05:52:44
| 1,263,120,000 |
resolved fixed
|
81dff57
| 1,263,120,000 |
tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/NavigatorTestBase.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestContentProviderPipelined.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/TestLabelProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/jst/JstPipelineTest.java
|
Eclipse_Platform_UI
|
1,588 | 299,209 |
Bug 299209 [CommonNavigator] Clean up error reporting for pipelined extensions
|
A catch block was missing for one of them, and the error report does not provide the extension Id that had the problem.
|
2010-01-10 05:48:50
| 1,263,120,000 |
resolved fixed
|
52d9eef
| 1,263,120,000 |
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/CommonNavigatorMessages.java bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorPipelineService.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/PipelineTest.java
|
Eclipse_Platform_UI
|
1,589 | 299,208 |
Bug 299208 [CommonNavigator] More helpful error message when an invalid suppressedExtensionId is referenced
|
The current error message does not show the if of the NCE that had the bad reference.
|
2010-01-10 05:37:49
| 1,263,120,000 |
resolved fixed
|
fec5cbf
| 1,263,120,000 |
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/extensions/NavigatorContentDescriptorManager.java
|
Eclipse_Platform_UI
|
1,590 | 299,207 |
Bug 299207 [CommonNavigator] Refactor NavigatorContentServiceContentProvider
|
There are a number of things about this code that make it less clear that it needs to be: 1) The internalGetChildren() and getElements() are largely duplicated. 2) The pipelinedChildren() private method returns the localSet which is never modified. 3) A ContributorTrackingSet is used in internalGetChildren() and getElements() when it is not necessary (setContribution() is never called on this, it should be just a LinkedHashSet) 4) The synchronization of methods is inconsistent 5) There are obsolete and unnecessary Javadoc comments 6) The order of the methods makes it hard to understand This refactoring (to be attached) cleans up these issues making the code easier to understand. No functionality change nor bug fix is intended here (except possibly by making the synchronization consistent).
|
2010-01-10 04:01:01
| 1,263,110,000 |
resolved fixed
|
e1ba6c6
| 1,263,120,000 |
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceContentProvider.java
|
Eclipse_Platform_UI
|
1,591 | 299,172 |
Bug 299172 e4.ui.services dependency on org.eclipse.core.runtime
|
The bundle org.eclipse.e4.ui.services uses the core.runtime bundle and the Platform class. This is a global singleton so it should be avoided.
|
2010-01-08 17:36:25
| 1,262,990,000 |
resolved fixed
|
0970810
| 1,262,990,000 |
bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/internal/services/Activator.java bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/EventBroker.java
|
Eclipse_Platform_UI
|
1,592 | 299,166 |
Bug 299166 Remove the dependency on core.runtime from e4.ui.workbench.swt
|
org.eclipse.e4.ui.workbench.swt This bundle uses org.eclipse.core.runtime to get IProduct. This can easily be replaced by using the IApplicationContext. I will attach a patch.
|
2010-01-08 15:50:19
| 1,262,980,000 |
resolved fixed
|
3134e48
| 1,262,990,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java
|
Eclipse_Platform_UI
|
1,593 | 296,253 |
Bug 296253 [CommonNavigator] An empty label is not properly shown when it is the only contributed label
| null |
2009-11-26 10:48:00
| 1,259,250,000 |
resolved fixed
|
b01cb60
| 1,262,940,000 |
bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/internal/navigator/NavigatorContentServiceLabelProvider.java tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/LabelProviderTest.java
|
Eclipse_Platform_UI
|
1,594 | 199,923 |
Bug 199923 [Contributions] Widget disposed too early!
|
Happens when I start Eclipse -- Error Log -- Date: Tue Aug 14 10:44:36 PDT 2007 Message: Widget disposed too early! Severity: Error Plugin ID: org.eclipse.ui.workbench Stack Trace: java.lang.RuntimeException: Widget disposed too early! at org.eclipse.ui.internal.WorkbenchPartReference$1.widgetDisposed(WorkbenchPartReference.java:169) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:116) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1101) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1125) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1106) at org.eclipse.swt.widgets.Widget.release(Widget.java:970) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:1098) at org.eclipse.swt.widgets.Widget.release(Widget.java:973) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:1098) at org.eclipse.swt.widgets.Widget.release(Widget.java:973) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Composite.releaseChildren(Composite.java:1098) at org.eclipse.swt.widgets.Canvas.releaseChildren(Canvas.java:162) at org.eclipse.swt.widgets.Decorations.releaseChildren(Decorations.java:465) at org.eclipse.swt.widgets.Shell.releaseChildren(Shell.java:1704) at org.eclipse.swt.widgets.Widget.release(Widget.java:973) at org.eclipse.swt.widgets.Control.release(Control.java:2984) at org.eclipse.swt.widgets.Widget.dispose(Widget.java:434) at org.eclipse.swt.widgets.Shell.dispose(Shell.java:1649) at org.eclipse.jface.window.Window.close(Window.java:330) at org.eclipse.jface.window.ApplicationWindow.close(ApplicationWindow.java:306) at org.eclipse.ui.internal.WorkbenchWindow.hardClose(WorkbenchWindow.java:1600) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:699) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:675) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:790) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:788) at org.eclipse.jface.window.WindowManager.close(WindowManager.java:109) at org.eclipse.ui.internal.Workbench$15.run(Workbench.java:908) at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37) at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:905) at org.eclipse.ui.internal.Workbench.access$15(Workbench.java:834) at org.eclipse.ui.internal.Workbench$22.run(Workbench.java:1078) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1076) at org.eclipse.ui.internal.Workbench.close(Workbench.java:1048) at org.eclipse.ui.internal.WorkbenchWindow.busyClose(WorkbenchWindow.java:696) at org.eclipse.ui.internal.WorkbenchWindow.access$0(WorkbenchWindow.java:675) at org.eclipse.ui.internal.WorkbenchWindow$2.run(WorkbenchWindow.java:790) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67) at org.eclipse.ui.internal.WorkbenchWindow.close(WorkbenchWindow.java:788) at org.eclipse.jface.window.Window.handleShellCloseEvent(Window.java:736) at org.eclipse.jface.window.Window$3.shellClosed(Window.java:682) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:91) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1101) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1125) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1110) at org.eclipse.swt.widgets.Shell.closeWidget(Shell.java:542) at org.eclipse.swt.widgets.Shell.gtk_delete_event(Shell.java:922) at org.eclipse.swt.widgets.Widget.windowProc(Widget.java:1478) at org.eclipse.swt.widgets.Control.windowProc(Control.java:4234) at org.eclipse.swt.widgets.Display.windowProc(Display.java:3973) at org.eclipse.swt.internal.gtk.OS._gtk_main_do_event(Native Method) at org.eclipse.swt.internal.gtk.OS.gtk_main_do_event(OS.java:5593) at org.eclipse.swt.widgets.Display.eventProc(Display.java:1192) at org.eclipse.swt.internal.gtk.OS._g_main_context_iteration(Native Method) at org.eclipse.swt.internal.gtk.OS.g_main_context_iteration(OS.java:1487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2969) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219) at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176) 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:597) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443) at org.eclipse.equinox.launcher.Main.run(Main.java:1169) at org.eclipse.equinox.launcher.Main.main(Main.java:1144)
|
2007-08-14 13:49:08
| 1,187,110,000 |
resolved fixed
|
4b7de9a
| 1,262,770,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/menus/WorkbenchMenuService.java
|
Eclipse_Platform_UI
|
1,595 | 298,900 |
Bug 298900 Renderer cannot handle an MMenuItem with a null label
|
java.lang.IllegalArgumentException: Argument cannot be null at org.eclipse.swt.SWT.error(SWT.java:4049) at org.eclipse.swt.SWT.error(SWT.java:3983) at org.eclipse.swt.SWT.error(SWT.java:3954) at org.eclipse.swt.widgets.Widget.error(Widget.java:467) at org.eclipse.swt.widgets.MenuItem.setText(MenuItem.java:1023) at org.eclipse.e4.workbench.ui.renderers.swt.MenuItemRenderer.setItemText(MenuItemRenderer.java:132) at org.eclipse.e4.workbench.ui.renderers.swt.MenuItemRenderer.createWidget(MenuItemRenderer.java:108) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createWidget(PartRenderingEngine.java:406) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:272) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349) at org.eclipse.e4.workbench.ui.renderers.swt.SWTPartRenderer.processContents(SWTPartRenderer.java:54) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.workbench.ui.renderers.swt.WBWRenderer.processContents(WBWRenderer.java:375) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:300) at org.eclipse.e4.ui.workbench.swt.internal.PartRenderingEngine.createGui(PartRenderingEngine.java:349)
|
2010-01-05 15:56:39
| 1,262,720,000 |
resolved fixed
|
ca0a6b3
| 1,262,730,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/MenuItemRenderer.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/UIAllTests.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MMenuItemTest.java
|
Eclipse_Platform_UI
|
1,596 | 298,850 |
Bug 298850 [ErrorHandling] 1 error/9 failures in StatusHandlingTestSuite
|
When I run the UITestSuite or the StatusHandlingTestSuite by itself I get 1 error and 9 failures. We need to get this fixed, we didn't submit to the I build this week. StatusHandlingTestSuite org.eclipse.ui.tests.statushandlers.StatusHandlingTestSuite org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest testModalitySwitch2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNotNull(Assert.java:217) at junit.framework.Assert.assertNotNull(Assert.java:210) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testModalitySwitch2(StatusDialogManagerTest.java:169) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testModalitySwitch4(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Label should be disposed when the dialog is closed. at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testModalitySwitch4(StatusDialogManagerTest.java:234) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testWithStatusAdapter2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNull(Assert.java:230) at junit.framework.Assert.assertNull(Assert.java:223) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testWithStatusAdapter2(StatusDialogManagerTest.java:319) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testDetails1(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.ComparisonFailure: expected:<[&Details >>]> but was:<[OK]> at junit.framework.Assert.assertEquals(Assert.java:81) at junit.framework.Assert.assertEquals(Assert.java:87) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testDetails1(StatusDialogManagerTest.java:453) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testList2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at junit.framework.Assert.assertNotNull(Assert.java:217) at junit.framework.Assert.assertNotNull(Assert.java:210) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testList2(StatusDialogManagerTest.java:566) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_1(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_1(StatusDialogManagerTest.java:781) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_2(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_2(StatusDialogManagerTest.java:800) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_3(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_3(StatusDialogManagerTest.java:819) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at junit.framework.TestCase.runTest(TestCase.java:164) at junit.framework.TestCase.runBare(TestCase.java:130) at junit.framework.TestResult$1.protect(TestResult.java:106) at junit.framework.TestResult.runProtected(TestResult.java:124) at junit.framework.TestResult.run(TestResult.java:109) at junit.framework.TestCase.run(TestCase.java:120) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at junit.framework.TestSuite.runTest(TestSuite.java:230) at junit.framework.TestSuite.run(TestSuite.java:225) at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390) at org.eclipse.pde.internal.junit.runtime.RemotePluginTestRunner.main(RemotePluginTestRunner.java:61) at org.eclipse.pde.internal.junit.runtime.UITestApplication$1.run(UITestApplication.java:116) at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35) at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:134) at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3487) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3134) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2407) at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2371) at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2220) at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:500) at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332) at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:493) at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149) at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113) at org.eclipse.pde.internal.junit.runtime.UITestApplication.start(UITestApplication.java:47) at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:194) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110) at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:367) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60) at java.lang.reflect.Method.invoke(Method.java:391) at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:611) at org.eclipse.equinox.launcher.Main.basicRun(Main.java:566) at org.eclipse.equinox.launcher.Main.run(Main.java:1363) at org.eclipse.equinox.launcher.Main.main(Main.java:1339) testBug288770_4(org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest) junit.framework.AssertionFailedError: Details should be closed initially at junit.framework.Assert.fail(Assert.java:47) at junit.framework.Assert.assertTrue(Assert.java:20) at org.eclipse.ui.tests.statushandlers.StatusDialogManagerTest.testBug288770_4(StatusDialogManagerTest.java:836) at sun.reflect.NativeMethodAccessorImpl.invoke0
|
2010-01-05 08:51:19
| 1,262,700,000 |
resolved fixed
|
8b83fbb
| 1,262,720,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/WorkbenchStatusDialogManagerImpl.java
|
Eclipse_Platform_UI
|
1,597 | 298,857 |
Bug 298857 Change on the property horizontal of PartSashContainer has no effect
|
The modification of property horizontal in PartSashContainer by API is not synchronized with SWT/JFace.
|
2010-01-05 09:35:26
| 1,262,700,000 |
resolved fixed
|
3b9669b
| 1,262,710,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/SashRenderer.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/UIAllTests.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MPartSashContainerTest.java
|
Eclipse_Platform_UI
|
1,598 | 298,848 |
Bug 298848 Reusability of the class PartRenderingEngine is limited by the FactoryId
| null |
2010-01-05 08:39:33
| 1,262,700,000 |
resolved fixed
|
17cf7ab
| 1,262,700,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java
|
Eclipse_Platform_UI
|
1,599 | 298,748 |
Bug 298748 [ErrorHandling] Support tray should be visible only if there is something to display
| null |
2010-01-04 07:05:08
| 1,262,610,000 |
resolved fixed
|
c742264
| 1,262,610,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/IStatusDialogConstants.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/StackTraceSupportArea.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/SupportTray.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/WorkbenchStatusDialogManagerImpl.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/AbstractStatusAreaProvider.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/SupportTrayTest.java
|
Eclipse_Platform_UI
|
1,600 | 298,415 |
Bug 298415 StackRenderer assumes the shell has not been disposed when forcing a re-layout
| null |
2009-12-22 10:49:57
| 1,261,500,000 |
resolved fixed
|
c5ae162
| 1,262,110,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/StackRenderer.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/UIAllTests.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/PartRenderingEngineTests.java
|
Eclipse_Platform_UI
|
1,601 | 255,629 |
Bug 255629 [StatusHandling]WorkbenchStatusDialog needs refactoring
|
Currently the dialog is first displayed, and then populated with values. It is necessary to set all UI controls before displaying the dialog.
|
2008-11-18 07:13:27
| 1,227,010,000 |
resolved fixed
|
feae74d
| 1,262,010,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/DefaultDetailsArea.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/DetailsAreaManager.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/IStatusDialogConstants.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/InternalDialog.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/LabelProviderWrapper.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/SupportTray.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/statushandlers/WorkbenchStatusDialogManagerImpl.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/statushandlers/WorkbenchStatusDialogManager.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/LabelProviderWrapperTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/StatusDialogManagerTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/StatusHandlingTestSuite.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/SupportTrayTest.java tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/statushandlers/WorkbenchStatusDialogManagerImplTest.java
|
Eclipse_Platform_UI
|
1,602 | 297,728 |
Bug 297728 [Filters] IFileInfoMatcherDescription and FileInfoMatcherDescription cleanup
|
Users should not be allowed to modify matcher descriptions once they are used in any resource filter. Right now IFileInfoMatcherDescription has setters what is not right, since setting new id or arguments on the matcher doesn't affect the filter. We can either create kind of a factory for creating IFileInfoMatcherDescription objects, remove setters from IFileInfoMatcherDescription and make the default implementation FileInfoMatcherDescription non-API, or get rid of IFileInfoMatcherDescription and use immutable FileInfoMatcherDescription objects (initialization in constructor and getters only).
|
2009-12-14 07:49:28
| 1,260,800,000 |
resolved fixed
|
f782014
| 1,261,390,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/ResourceFilterGroup.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/UIResourceFilterDescription.java
|
Eclipse_Platform_UI
|
1,603 | 271,530 |
Bug 271530 [Wizards] Wizard progress label not cleared between runnables
|
I have a wizard that has multiple p2 IUs in a list, and when the user selects one I need to call p2 to get a provisioning plan (a semi-long-running operation) to determine if Finish should be disabled. To do this, I call WizardPage.getContainer().run() and fork an IRunnableWithProgress to call a p2 method with a progress monitor. I noticed several times that when I made a selection in the list the progress monitor label would flash before progress would start to appear. I clicked quickly several times and was able to read that the label was actually an error message from p2. I then set a breakpoint, and found that the error is visible *before* entry into my IRunnableWithProgress. It was actually a failure from the last time that p2 was called, i.e. in a separate runnable the last time I clicked. I tried to narrow this down, but the best I could find is that the wizard dialog never calls through to ProgressMonitorPart.updateLabel() before running - so when a new runnable starts, the monitor will display text from the previous monitor before calling the new one. If the new monitor isn't updated immediately, the old text will appear until the new monitor does something. You can reproduce with the following code. The second time you call it, the progress label will say "Testing!" immediately even though the monitor hasn't been called yet. getContainer().run(true, true, new IRunnableWithProgress() { public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { try { Thread.sleep(5000); } catch (Exception e) { // ignore } monitor.beginTask("Testing!", 100); } });
|
2009-04-07 17:53:20
| 1,239,140,000 |
verified fixed
|
75ff174
| 1,261,380,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/ProgressMonitorPart.java bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/WizardDialog.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/wizards/WizardProgressMonitorTest.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/wizards/WizardTestSuite.java
|
Eclipse_Platform_UI
|
1,604 | 158,642 |
Bug 158642 [Workbench] Hide toolbar not persisted
|
Build: 3.2 M2 1) Window > Hide Toolbar 2) Shutdown and restart the workbench -> The toolbar is back. This should be persisted as part of my workbench state.
|
2006-09-25 15:27:16
| 1,159,210,000 |
verified fixed
|
d988d97
| 1,261,170,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/IPreferenceConstants.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/ViewIntroAdapterPart.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchPreferenceInitializer.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindow.java bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/WorkbenchWindowConfigurer.java
|
Eclipse_Platform_UI
|
1,605 | 298,130 |
Bug 298130 Cannot add parameters to commands through Ecore editor
|
Build Identifier: I20091210-2100 [Apologies for mangling terminology: I'm not very familiar with EMF.] The definitions in UIElements.ecore of HandledItems and KeyBinding don't mark their "parameters" field as being contained. Since there's no other container for parameters, you cannot define parameters from the Ecore editor. Reproducible: Always Steps to Reproduce: 1. Open up an Application.xmi 2. Create a command that takes a parameter. 3. Add a handled item (e.g., a toolbar item). Set its command to to the command defined in step #2. 4. Right click on the handled item and ask to add a child. See that Command Parameter does not appear.
|
2009-12-17 17:38:13
| 1,261,090,000 |
resolved fixed
|
4e6428e
| 1,261,150,000 |
bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MApplicationPackage.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MHandledItem.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/MKeyBinding.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/ApplicationPackageImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/HandledItemImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/HandledMenuItemImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/HandledToolItemImpl.java bundles/org.eclipse.e4.ui.model.workbench/src/org/eclipse/e4/ui/model/application/impl/KeyBindingImpl.java
|
Eclipse_Platform_UI
|
1,606 | 243,381 |
Bug 243381 [Markers] Problems list needs a tooltip for description field
| null |
2008-08-07 02:16:59
| 1,218,090,000 |
verified fixed
|
8b9c007
| 1,261,040,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkersPropertyPage.java
|
Eclipse_Platform_UI
|
1,607 | 259,955 |
Bug 259955 [Commands] Can't add "Save All" command to main toolbar
|
Build ID: 3.4 Steps To Reproduce: It doesn't seem possible to add the Save All command to the main toolbar. Window > Customize Perspective > Commands doesn't appear to show the command; it would be good if Save, Save All, Print, behaved like other ISV contributed commands.
|
2009-01-05 10:04:31
| 1,231,170,000 |
verified fixed
|
027f4be
| 1,261,040,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/WorkbenchActionBuilder.java
|
Eclipse_Platform_UI
|
1,608 | 297,486 |
Bug 297486 [Progress] Uncompleted monitor in class DummyJob
| null |
2009-12-10 09:32:34
| 1,260,460,000 |
verified fixed
|
af820c8
| 1,260,990,000 |
tests/org.eclipse.ui.tests/Eclipse UI Tests/org/eclipse/ui/tests/progress/DummyJob.java
|
Eclipse_Platform_UI
|
1,609 | 296,159 |
Bug 296159 [Progress] WorkbenchSiteProgressService keeps showing CURSOR_APPSTARTING when Job canceled before it is started
|
I20091124-0800 - new workspace - check out a project from CVS - open a .java file - choose context menu > Team > Show Annotation - confirm using CV as quick diff provider => in the end, the History view still shows the CURSOR_APPSTARTING cursor. I can reproduce when I close the History view (must be closed in all perspectives) and choose 'Revisions > Hide Revision Information' from the change ruler context menu.
|
2009-11-25 12:47:06
| 1,259,170,000 |
resolved fixed
|
8e8e4f3
| 1,260,910,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/WorkbenchSiteProgressService.java
|
Eclipse_Platform_UI
|
1,610 | 297,608 |
Bug 297608 [UI] testCreateMenu fails
|
The 'testCreateMenu' test in the UI Test suite is now failing because of a regression introduced by the ui model refactoring.
|
2009-12-11 13:11:12
| 1,260,560,000 |
resolved fixed
|
222fcb8
| 1,260,560,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/PartRenderingEngine.java
|
Eclipse_Platform_UI
|
1,611 | 297,400 |
Bug 297400 Create an E4 base application
| null |
2009-12-09 15:58:33
| 1,260,390,000 |
resolved fixed
|
064a3ac
| 1,260,470,000 |
bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/E4Workbench.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/ModelExtensionProcessor.java
|
Eclipse_Platform_UI
|
1,612 | 297,459 |
Bug 297459 Properties dialog for Virtual Folder shows Type: Group
|
The dialog should show Type: Virtual Folder.
|
2009-12-10 05:12:32
| 1,260,440,000 |
verified fixed
|
d1f594c
| 1,260,440,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/IDEResourceInfoUtils.java
|
Eclipse_Platform_UI
|
1,613 | 297,440 |
Bug 297440 NLS warnings logged on startup
|
I20091209-1800. !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupMainPage_groupName in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupMainPage_groupLabel in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupMainPage_description in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_progress in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_errorTitle in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_internalErrorTitle in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroupCreationPage_title in: org.eclipse.ui.internal.ide.messages !ENTRY org.eclipse.osgi 2 1 2009-12-10 08:28:48.687 !MESSAGE NLS missing message: WizardNewGroup_internalError in: org.eclipse.ui.internal.ide.messages
|
2009-12-10 02:28:31
| 1,260,430,000 |
verified fixed
|
142e240
| 1,260,440,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/wizards/newresource/ResourceMessages.java
|
Eclipse_Platform_UI
|
1,614 | 296,565 |
Bug 296565 Make group creation an advanced option in the folder
| null |
2009-12-01 08:15:42
| 1,259,670,000 |
verified fixed
|
d1054b3
| 1,260,400,000 |
bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFolderMainPage.java bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewGroupMainPage.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/undo/CreateGroupOperation.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/IDEWorkbenchMessages.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/CreateLinkedResourceGroup.java bundles/org.eclipse.ui.ide/src/org/eclipse/ui/wizards/newresource/BasicNewGroupResourceWizard.java
|
Eclipse_Platform_UI
|
1,615 | 296,646 |
Bug 296646 Creating regular file under group gives wrong warning in wizard
|
Build id: I20091125-2200 1) Create a new group folder 2) Select the group, and do File > New > File 3) Type "a.txt" The wizard now says: 'a.' is an invalid name on this platform It looks like the error message is not being updated correctly as the user types.
|
2009-12-01 16:47:23
| 1,259,700,000 |
verified fixed
|
2804c1c
| 1,260,280,000 |
bundles/org.eclipse.ui.ide/extensions/org/eclipse/ui/dialogs/WizardNewFileCreationPage.java
|
Eclipse_Platform_UI
|
1,616 | 229,340 |
Bug 229340 [forms] TextSegment wrapping issue
| null |
2008-04-29 10:49:09
| 1,209,480,000 |
resolved fixed
|
5f3967a
| 1,259,880,000 |
bundles/org.eclipse.ui.forms/src/org/eclipse/ui/internal/forms/widgets/TextSegment.java
|
Eclipse_Platform_UI
|
1,617 | 296,822 |
Bug 296822 NullProgressMonitor is not thread safe for expected usage
|
NullProgressMonitor.setCanceled and isCanceled access the cancelled field, but there's no synchronization. The expected use is that setCanceled is called from a thread other than the one doing the work, which polls isCanceled(), so this needs to be thread safe. Could either make these two methods synchronized or make the field volatile. Should check other progress monitor implementations too.
|
2009-12-03 10:47:18
| 1,259,860,000 |
resolved fixed
|
a4254f6
| 1,259,870,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/action/StatusLine.java bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/ProgressMonitorDialog.java bundles/org.eclipse.jface/src/org/eclipse/jface/wizard/ProgressMonitorPart.java
|
Eclipse_Platform_UI
|
1,618 | 296,796 |
Bug 296796 MWindow name changes are not reflected in a shell
| null |
2009-12-03 07:51:46
| 1,259,840,000 |
resolved fixed
|
2954eae
| 1,259,840,000 |
bundles/org.eclipse.e4.ui.workbench.renderers.swt/src/org/eclipse/e4/workbench/ui/renderers/swt/WBWRenderer.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/MWindowTest.java
|
Eclipse_Platform_UI
|
1,619 | 296,695 |
Bug 296695 [Markers] Problems view does not update on selection change
|
I20091201-1600 Problems view does not update any more on selection change. I have a 'Warnings on Selection' filter, but I always see the same warnings, even after I opened an editor or selected something in the Package Explorer.
|
2009-12-02 08:17:59
| 1,259,760,000 |
verified fixed
|
ce5f718
| 1,259,840,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/views/markers/MarkerContentGenerator.java
|
Eclipse_Platform_UI
|
1,620 | 284,265 |
Bug 284265 [JFace] DialogSettings.save() silently ignores IOException
|
Build ID: M20090211-1700 (Problem still in HEAD) STEPS TO REPRODUCE Call DialogSettings.save() on a Writer that produced a IOException or with a file which causes trouble during output (e.g. full drive). EXPECTED The original exception thrown by the underlying output should be propagated to the caller -- as "save() throws IOException" suggests. ACTUAL The IOException is silently ignored. ANALYSIS The internal DialogSettings.XMLWriter is based in a java.io.PrintWriter, which catches all IOExceptions.
|
2009-07-22 09:35:16
| 1,248,270,000 |
verified fixed
|
afc0034
| 1,259,790,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/DialogSettings.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/dialogs/DialogSettingsTest.java
|
Eclipse_Platform_UI
|
1,621 | 293,658 |
Bug 293658 [About] About dialog's installation details does not honour dialog font settings
|
Build id: I20091028-0100 1. Window > Preferences > General > Appearance > Colors and Fonts 2. Basic > Dialog Font > Edit... 3. Increase the font size a bit. 4. Click 'OK'. 5. Help > About Eclipse SDK 6. So far so good. Click the 'Installation Details' button. 7. The 'Close' button is the correct size but other buttons are not. The tabs are not right and the tabs' contents are not right. Strangely enough, the 'Configuration' tab's buttons are right. The font for that tab's content should stay since that's a "log".
|
2009-10-29 08:17:48
| 1,256,820,000 |
verified fixed
|
493c7a8
| 1,259,790,000 |
bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/InstallationDialog.java
|
Eclipse_Platform_UI
|
1,622 | 295,386 |
Bug 295386 [FieldAssist] ControlDecoration#showHoverText doesn't check if the widget is visible
| null |
2009-11-17 15:02:55
| 1,258,490,000 |
verified fixed
|
4d0e0ac
| 1,259,780,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/AllTests.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/fieldassist/AbstractFieldAssistWindow.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/fieldassist/ControlDecorationTests.java tests/org.eclipse.ui.tests/Eclipse JFace Tests/org/eclipse/jface/tests/fieldassist/FieldAssistTestSuite.java
|
Eclipse_Platform_UI
|
1,623 | 296,473 |
Bug 296473 [Filters] Replace #getProject and #getPath with #getResource in IResourceFilterDescription
|
I think that just #getResource method is fine. Javadoc has to state that only IFolder and IProject objects can be returned.
|
2009-11-30 09:18:42
| 1,259,590,000 |
resolved fixed
|
ca60199
| 1,259,750,000 |
bundles/org.eclipse.ui.ide/src/org/eclipse/ui/internal/ide/dialogs/UIResourceFilterDescription.java
|
Eclipse_Platform_UI
|
1,624 | 294,462 |
Bug 294462 [FieldAssist] ControlDecoration#showHoverText doesn't check if the widget is visible
|
If the HOVER-Text is set on decoration of a widget which is invisible the Hover-Shell is still poping up because it doesn't check if the control is invisible make the Hover appearing somewhere on the screen.
|
2009-11-06 09:38:41
| 1,257,520,000 |
verified fixed
|
f9d3e49
| 1,259,700,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/fieldassist/ControlDecoration.java
|
Eclipse_Platform_UI
|
1,625 | 296,364 |
Bug 296364 [context] The constructors used by the injection mechanism should have @Inject
| null |
2009-11-27 13:45:39
| 1,259,350,000 |
resolved fixed
|
68011a0
| 1,259,350,000 |
bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/EventBroker.java examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/DetailComposite.java examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/DetailsView.java examples/org.eclipse.e4.demo.contacts/src/org/eclipse/e4/demo/contacts/views/ListView.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Library.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Location.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Preview.java examples/org.eclipse.e4.demo.e4photo/src/org/eclipse/e4/demo/e4photo/Thumbnails.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/SampleView.java
|
Eclipse_Platform_UI
|
1,626 | 296,356 |
Bug 296356 We shouldn't create more than one e4 OSGi context per BundleContext
| null |
2009-11-27 11:18:49
| 1,259,340,000 |
resolved fixed
|
589364e
| 1,259,340,000 |
bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/WorkbenchApplication.java tests/org.eclipse.e4.core.commands.tests/src/org/eclipse/e4/core/commands/tests/TestActivator.java tests/org.eclipse.e4.ui.bindings.tests/src/org/eclipse/e4/ui/bindings/tests/Activator.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessStartupTest.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/RenderingTestCase.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/workbench/RunApplicationTest.java
|
Eclipse_Platform_UI
|
1,627 | 295,391 |
Bug 295391 [UI] EventBroker should clean up listeners that were subscribed to it
|
It would be really handy if the IEventBroker that exists in the appContext could cache up all the currently subscribed listeners and unsubscribe them when the appContext goes away. While you can say that the person who subscribed should be responsible for unsubscribing this is a fragile way to do it (i.e. Users don't RTFM and the unsubscribe pattern is not obvious). If it's not managed properly the OSGI context gets polluted with stale subscriptions which may cause very odd defects (hard to track down). Perhaps we should be looking to see if we can create these types of services using DI (so that they can have @PreDestroy injection). I also hope to do this with the SWT ResourceManager service, allowing it to clear its caches when its 'owning' appContext gets disposed.
|
2009-11-17 16:02:19
| 1,258,490,000 |
resolved fixed
|
5ba3578
| 1,259,340,000 |
bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/events/EventBrokerFactory.java bundles/org.eclipse.e4.ui.services/src/org/eclipse/e4/ui/services/internal/events/EventBroker.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/E4Application.java bundles/org.eclipse.e4.ui.workbench.swt/src/org/eclipse/e4/ui/workbench/swt/internal/WorkbenchApplication.java bundles/org.eclipse.e4.ui.workbench/src/org/eclipse/e4/workbench/ui/internal/Workbench.java tests/org.eclipse.e4.ui.tests/src/org/eclipse/e4/ui/tests/application/HeadlessStartupTest.java
|
Eclipse_Platform_UI
|
1,628 | 292,322 |
Bug 292322 [Viewers] Tree view is removing + indicator when one of multiple children is removed.
| null |
2009-10-14 17:38:05
| 1,255,560,000 |
resolved fixed
|
4ebedca
| 1,259,260,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/TreeViewer.java
|
Eclipse_Platform_UI
|
1,629 | 126,705 |
Bug 126705 [Preferences] FileFieldEditor does not call doCheckState
|
org.eclipse.jface.preference.FileFieldEditor does not call doCheckSate() during checkState() which makes it difficult to subclass this editor to perform additional checks like it is possible with StringFieldEditor
|
2006-02-07 04:53:11
| 1,139,310,000 |
verified fixed
|
e7ea6c7
| 1,259,260,000 |
bundles/org.eclipse.jface/src/org/eclipse/jface/preference/FileFieldEditor.java
|
Eclipse_Platform_UI
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.