_id
stringlengths 36
36
| bug_id
int64 1
425k
| description
stringlengths 1
373k
⌀ | bug_severity
stringclasses 7
values | bug_status
stringclasses 3
values | resolution
stringclasses 8
values |
---|---|---|---|---|---|
{'$oid': '52e9c16754dc1c25ebdc0f1f'} | 62,655 | In IntelliJ IDEA, you can type an expression (e.g. myarray.length)
and then without:
- typing semicolon
- selecting the expression
use the 'create local variable' shortcut and after the simple dialog
you end up with complete line, e.g.
int length = myarray.length;
including semicolon at the end.
This type of behavior is VERY useful, fast and quite addictive once you get
used to that. | enhancement | RESOLVED | WONTFIX |
{'$oid': '52e9c16854dc1c25ebdc0f20'} | 62,658 | There seems to be no way to cancel a menu from a TrayItem unless at least one of
the MenuItem's is selected. Other menus from other system tray items seem to
cancel when the user clicks anywhere else except the menu. A work-around would
be much appreciated if available. | normal | RESOLVED | WORKSFORME |
{'$oid': '52e9c16854dc1c25ebdc0f21'} | 62,657 | I'm going to start tracking these. If you can't complete printf, you ain't
done.
Here's the code (Ctrl-Space after the 'pr'):
#include <stdio.h>
int main()
{
pr
} | major | RESOLVED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f22'} | 62,659 | Added this setting to plugin_customization.ini to get default register format
as hexadecimal
org.eclipse.cdt.debug.core/org.eclipse.cdt.debug.corecDebug.default_register_for
mat=4
This has no effect on the setting in Eclipse. Other C/C++ settings can be set
in this way, but none of the register format ones | normal | VERIFIED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f23'} | 62,656 | CDT 200405170943 Eclipse 200405140800
Copy a function, paste it in front of the constructor and rename it. Now, save
the file. Eclipse will lock up.
Steps:
1) In Eclipse, create a Managed Project, call it "MgdCpp"
2) Extract the BubbleSort zip file into the MgdCpp directory in Windows Explorer
3) In Eclipse and refresh the MgdCpp project in order to see the BubbleSort
subdirectory
4) Open MgdCpp/BubbleSort/SD_01.cpp. The editor will show:
#include "SD_01.h"
#include <cstdio>
#include <cstddef>
#include <iostream>
using namespace std;
using namespace B;
SD_01::SD_01()
{
next = new SD_02();
};
SD_01::~SD_01(){};
void SD_01::f_SD_01()
{
next->f_SD_02();
};
void SD_01::goBubbleSort()
{
time_t now;
now=time(NULL);
cout << "Start bubblesort: " << ctime(&now) << endl;
f_SD_01();
now=time(NULL);
cout << "End bubblesort: " << ctime(&now) << endl;
};
5) Now copy the SD_01::goBubbleSort function, copy it in front of SD_01::SD_01
and rename it to SD_01::goBubbleSort2. SD_01.cpp will look like this:
#include "SD_01.h"
#include <cstdio>
#include <cstddef>
#include <iostream>
using namespace std;
using namespace B;
void SD_01::goBubbleSort2()
{
time_t now;
now=time(NULL);
cout << "Start bubblesort: " << ctime(&now) << endl;
f_SD_01();
now=time(NULL);
cout << "End bubblesort: " << ctime(&now) << endl;
};
SD_01::SD_01()
{
next = new SD_02();
};
SD_01::~SD_01(){};
void SD_01::f_SD_01()
{
next->f_SD_02();
};
void SD_01::goBubbleSort()
{
time_t now;
now=time(NULL);
cout << "Start bubblesort: " << ctime(&now) << endl;
f_SD_01();
now=time(NULL);
cout << "End bubblesort: " << ctime(&now) << endl;
};
6) Save SD_01.cpp
Eclipse/CDT locks up. | major | VERIFIED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f24'} | 62,661 | Here is the scenario:
1. Create a test suite either manually or via HTTP recording
2. Launch the test
Result: nothing happens, no notification of nonexistent code for the test
This wasn't as much of an issue, but it was still a problem, prior to the
addition of launch configuration because a user couldn't select a deployment
until the test had code generated for it. | normal | CLOSED | DUPLICATE |
{'$oid': '52e9c16854dc1c25ebdc0f25'} | 62,660 | There are one of two problems here, depending on your perspective.
1) You usually install MSYS when installing MinGW. In this case, you should be
using MSYS's 'make' to build. Which whould then make this target identicial to
Cygwin, no?
2) If you don't install MSYS, you don't have the 'rm' command so clean doesn't
work.
The word on the street was that the MinGW version of 'make' was crap. However,
you seem to be working with it fine. If we do not assume MSYS, which I think
would be reasonable, we should remove the dependency on 'rm' for clean. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f26'} | 62,664 | Try to close eclipse with Problem view does not have any items
Get this:
java.lang.NullPointerException
at org.eclipse.ui.views.markers.internal.MarkerView.dispose
(MarkerView.java:304)
at org.eclipse.ui.views.markers.internal.ProblemView.dispose
(ProblemView.java:106)
at org.eclipse.ui.internal.WorkbenchPartReference.dispose
(WorkbenchPartReference.java:162)
at org.eclipse.ui.internal.ViewFactory$ViewReference.dispose
(ViewFactory.java:73)
at org.eclipse.ui.internal.WorkbenchPage$6.run(WorkbenchPage.java:1189)
at org.eclipse.core.internal.runtime.InternalPlatform.run
(InternalPlatform.java(Inlined Compiled Code))
at org.eclipse.core.runtime.Platform.run(Platform.java(Compiled Code))
at org.eclipse.ui.internal.WorkbenchPage.dispose
(WorkbenchPage.java:1187)
at org.eclipse.ui.internal.WorkbenchWindow.closeAllPages
(WorkbenchWindow.java:588)
at org.eclipse.ui.internal.WorkbenchWindow.hardClose
(WorkbenchWindow.java:1066)
at org.eclipse.ui.internal.WorkbenchWindow.busyClose
(WorkbenchWindow.java:485)
at org.eclipse.ui.internal.WorkbenchWindow.access$0
(WorkbenchWindow.java:467)
at org.eclipse.ui.internal.WorkbenchWindow$1.run
(WorkbenchWindow.java:555)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at org.eclipse.ui.internal.WorkbenchWindow.close
(WorkbenchWindow.java:553)
at org.eclipse.jface.window.WindowManager.close(WindowManager.java:101)
at org.eclipse.ui.internal.Workbench$10.run(Workbench.java:450)
at org.eclipse.core.internal.runtime.InternalPlatform.run
(InternalPlatform.java(Inlined Compiled Code))
at org.eclipse.core.runtime.Platform.run(Platform.java(Compiled Code))
at org.eclipse.ui.internal.Workbench.busyClose(Workbench.java:447)
at org.eclipse.ui.internal.Workbench.access$8(Workbench.java:389)
at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:561)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at org.eclipse.ui.internal.Workbench.close(Workbench.java:559)
at org.eclipse.ui.internal.Workbench.close(Workbench.java:535) | normal | VERIFIED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f27'} | 62,663 | summary says it all, I will uploaded an image showing it happen | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16854dc1c25ebdc0f28'} | 62,665 | 20040518
If you try to synchronize with the repository from the package explorer you
can never get your content into the sychronize view.
STEPS
1) Modify a class
2) Select it in the package explorer
3) Select Team-> Synchronize With Repository
4) Compare browser comes up in Java perspective
5) Select Team Syncronizing perspective.
6) No content in the sync view | normal | RESOLVED | WONTFIX |
{'$oid': '52e9c16854dc1c25ebdc0f29'} | 62,666 | I200405171219
I am renaming a package due to a conflict between a package name and a class
name. When the SearchPattern is created in
RenamePackageProcessor.getReferencesToTypesInNamesakes(), a null is returned
because there are no typesToSearch, ie, IType[0].
java.lang.reflect.InvocationTargetException
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.reflect.InvocationTargetException.<init>
(InvocationTargetException.java:66)
at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:283)
at org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.run
(RefactoringWizardDialog2.java:282)
at
org.eclipse.ltk.ui.refactoring.RefactoringWizard.internalPerformFinish
(RefactoringWizard.java:533)
at org.eclipse.ltk.ui.refactoring.UserInputWizardPage.performFinish
(UserInputWizardPage.java:153)
at org.eclipse.ltk.ui.refactoring.RefactoringWizard.performFinish
(RefactoringWizard.java:599)
at
org.eclipse.ltk.internal.ui.refactoring.RefactoringWizardDialog2.okPressed
(RefactoringWizardDialog2.java:406)
at org.eclipse.jface.dialogs.Dialog.buttonPressed(Dialog.java:365)
at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:505)
at org.eclipse.swt.widgets.TypedListener.handleEvent
(TypedListener.java)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java)
at org.eclipse.jface.window.Window.runEventLoop(Window.java)
at org.eclipse.jface.window.Window.open(Window.java:648)
at org.eclipse.ltk.ui.refactoring.RefactoringWizardOpenOperation.run
(RefactoringWizardOpenOperation.java:121)
at
org.eclipse.jdt.internal.ui.refactoring.actions.RefactoringStarter.activate
(RefactoringStarter.java:40)
at
org.eclipse.jdt.internal.ui.refactoring.UserInterfaceStarter.activate
(UserInterfaceStarter.java:54)
at
org.eclipse.jdt.internal.ui.refactoring.reorg.RenameUserInterfaceStarter.activa
te(RenameUserInterfaceStarter.java:113)
at org.eclipse.jdt.ui.refactoring.RenameSupport.openDialog
(RenameSupport.java:108)
at
org.eclipse.jdt.internal.ui.refactoring.actions.RenameJavaElementAction.run
(RenameJavaElementAction.java:175)
at
org.eclipse.jdt.internal.ui.refactoring.actions.RenameJavaElementAction.run
(RenameJavaElementAction.java:96)
at org.eclipse.jdt.ui.actions.RenameAction.run(RenameAction.java:116)
at org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchRun
(SelectionDispatchAction.java:212)
at org.eclipse.jdt.ui.actions.SelectionDispatchAction.run
(SelectionDispatchAction.java:188)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:881)
at org.eclipse.ui.actions.RetargetAction.runWithEvent
(RetargetAction.java:212)
at
org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection
(ActionContributionItem.java:899)
at org.eclipse.jface.action.ActionContributionItem.access$2
(ActionContributionItem.java:850)
at org.eclipse.jface.action.ActionContributionItem$7.handleEvent
(ActionContributionItem.java:769)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench
(Workbench.java:253)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at org.eclipse.ui.internal.ide.IDEApplication.run
(IDEApplication.java:97)
at org.eclipse.core.internal.runtime.PlatformActivator$1.run
(PlatformActivator.java:299)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run
(EclipseStarter.java:256)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run
(EclipseStarter.java:127)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:84)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:59)
at java.lang.reflect.Method.invoke(Method.java:390)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621)
Caused by: java.lang.NullPointerException
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.NullPointerException.<init>(NullPointerException.java:60)
at
org.eclipse.jdt.internal.core.search.matching.MatchLocator.findIndexMatches
(MatchLocator.java:266)
at org.eclipse.jdt.internal.core.search.PatternSearchJob.search
(PatternSearchJob.java:107)
at org.eclipse.jdt.internal.core.search.PatternSearchJob.execute
(PatternSearchJob.java:64)
at
org.eclipse.jdt.internal.core.search.processing.JobManager.performConcurrentJob
(JobManager.java:259)
at org.eclipse.jdt.core.search.SearchEngine.findMatches
(SearchEngine.java:455)
at org.eclipse.jdt.core.search.SearchEngine.search
(SearchEngine.java:756)
at
org.eclipse.jdt.internal.corext.refactoring.RefactoringSearchEngine.internalSea
rch(RefactoringSearchEngine.java:119)
at
org.eclipse.jdt.internal.corext.refactoring.RefactoringSearchEngine.search
(RefactoringSearchEngine.java:93)
at
org.eclipse.jdt.internal.corext.refactoring.rename.RenamePackageProcessor.getRe
ferencesToTypesInNamesakes(RenamePackageProcessor.java:350)
at
org.eclipse.jdt.internal.corext.refactoring.rename.RenamePackageProcessor.check
FinalConditions(RenamePackageProcessor.java:289)
at
org.eclipse.ltk.core.refactoring.participants.ProcessorBasedRefactoring.checkFi
nalConditions(ProcessorBasedRefactoring.java:134)
at org.eclipse.ltk.core.refactoring.CheckConditionsOperation.run
(CheckConditionsOperation.java:84)
at org.eclipse.ltk.core.refactoring.CreateChangeOperation.run
(CreateChangeOperation.java:114)
at org.eclipse.ltk.core.refactoring.PerformChangeOperation.run
(PerformChangeOperation.java:182)
at org.eclipse.core.internal.resources.Workspace.run
(Workspace.java:1674)
at org.eclipse.ltk.internal.ui.refactoring.WorkbenchRunnableAdapter.run
(WorkbenchRunnableAdapter.java:58)
at org.eclipse.jface.operation.ModalContext$ModalContextThread.run
(ModalContext.java:101) | normal | VERIFIED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f2a'} | 62,669 | no title when adding a date tag | normal | RESOLVED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f2b'} | 62,668 | CDT 200405170943
Eclipse 200405140800
Test case:
1. Create a managed project, call it MgdCpp
2. Add main.cpp and FOO.H
3. Insert the following code into FOO.H:
class FOO {
public:
FOO() {};
};
4. Insert the following code into main.cpp:
#include "foo.h"
int
main(int argc, char **argv) {
FOO f;
}
5. Execute the following search:
Search For: Class/Struct
Limit To: Declaractions
Scope: Selected Resource (MgdCpp)
RESULT: 1 result is found, but when I double click on it, I get an error telling
me that "Could not find the editor for the current match"
Note: The path in the Search view is /MgdCpp/foo.h, but the file is named FOO.H | major | VERIFIED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f2c'} | 62,667 | to reproduce;
1) Copy a line from your ant file
2) Paste the line multiple times
The first time it works fine the second it indents too far. 6 and 7 are indented the most, 8 is back to
normal. I'll attach a screen shot of the indenting after pasting 9 times. | normal | RESOLVED | WONTFIX |
{'$oid': '52e9c16854dc1c25ebdc0f2d'} | 62,671 | In the sharing wizard if the list of enabled wizards is empty then we should
automatially select the "show all wizards" button. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f2e'} | 62,670 | build i0518-0816
- I have a perspective with only the editors and the outline showing.
- I ran a JUnit plug-in test and the Junit view appeared on top of the Outline
view.
- After the test finished, i closed the JUnit view.
- the outline view was completely greyed out and not updating when I switched
editors
- Closing and re-opening the outline view brought it back to a normal state. | critical | RESOLVED | DUPLICATE |
{'$oid': '52e9c16854dc1c25ebdc0f2f'} | 62,674 | During a recent reorganization of code a couple of weeks ago, SSL recording no
longer works (unless you have a C:\testkeys file on your disk). | major | CLOSED | FIXED |
{'$oid': '52e9c16854dc1c25ebdc0f30'} | 62,675 | I20040518-0816
Error Mai 18, 2004 17:31:51.468 An internal error occurred during: "CVS
QuickDiff: fetching remote contents".
java.lang.NullPointerException
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.NullPointerException.<init>(NullPointerException.java:60)
at
org.eclipse.team.internal.ccvs.ui.RemoteRevisionQuickDiffProvider.computeChange(RemoteRevisionQuickDiffProvider.java:208)
at
org.eclipse.team.internal.ccvs.ui.RemoteRevisionQuickDiffProvider.readDocument(RemoteRevisionQuickDiffProvider.java:244)
at
org.eclipse.team.internal.ccvs.ui.RemoteRevisionQuickDiffProvider.access$4(RemoteRevisionQuickDiffProvider.java:240)
at
org.eclipse.team.internal.ccvs.ui.RemoteRevisionQuickDiffProvider$3.run(RemoteRevisionQuickDiffProvider.java:344)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java) | normal | RESOLVED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f31'} | 62,662 | I20040517-1219
1) Checkout org.eclipse.swt and whatever native fragment for the given platform
2) Open StyledText.java
3) Ctrl+A (select all)
4) Ctrl+/ (toggle comment)
-> OutOfMemoryError
If you allocate a very big Java heap, it might only occur after step 5)
5) Ctrl+/ (toggle comment again)
According to Windows taskmanager, memory usage before step 4) is 145MB. At the
time of OutOfMemoryError Windows is reporting 570MB used. It seems to require
over 300MB of RAM to comment this file.
Reproducible on Windows with Sidecar and Sun 1.4.1, and on MacOSX with latest
Sun VM. | critical | VERIFIED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f32'} | 62,676 | Eclipse 200405140800 CDT 200405170943
Offsetting the refactored items (after a refactor operation) creates problems
when refactoring is done again on the same item.
Steps:
1) In Eclipse, create a Managed Project, call it "MgdCpp"
2) Extract the BubbleSort zip file into the MgdCpp directory in Windows Explorer
3) In Eclipse and refresh the MgdCpp project in order to see the BubbleSort
subdirectory
4) Open MgdCpp/BubbleSort/SD_01.h.
5) Go into the Outline Viewer, right click on the class SD_01 and
select "Refactor->Rename..."
6) Rename to SD_02 and press OK.
The refactor changes SD_01.h and SD_01.cpp correctly.
7)Insert a line (int temp;) in SD_01.h like this:
#include "SD_02.h"
namespace B19 {
class SD_01 {
public:
SD_02 *next;
SD_01();
int temp;
~SD_01();
void f_SD_01();
};
}
8) Save it.
9) (Having SD_01.h still displayed) Go into the Outline Viewer, right click on
the class SD_02 and select "Refactor->Rename..."
10) Rename it to SD_01 and press OK.
The changes were made in SD_01.cpp but not in SD_01.h. (Expected that SD_01.cpp
and SD_01.h would change)
Note: SD_02 is an existing class in the project when I renamed SD_01. If I
rename SD_01 to blah, the bug does not occur. | major | CLOSED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f34'} | 62,677 | I have a launch configuration that uses SourceLookupTab to display and edit the
source lookup path.
I tried adding a working set in the source lookup tab. Then I selected the
working set, and click remove. The working set does not get removed from the
source look up tab. It would remain as one of the source look up paths.
The only way to remove the working set is to restore defaults.
I tried adding another working set, and then dismissed the launch configuration
dialog. Then I bring up the launch configuration dialog again, looking at the
same launch config. There will be an error message "Unable to initialize
source container." I then looked at the source tab. The tab becomes empty.
This is reproducible on IES/WSWB 5-06. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f35'} | 62,679 | It is not possible to cancel just one job in a group - the one button you get
cancels all jobs.
STEPS (using jobs example)
- Duration: "1 minute"
- Quantity: 5
- check: "Run in Group"
Cancel the group - all jobs are cancelled | normal | RESOLVED | INVALID |
{'$oid': '52e9c16954dc1c25ebdc0f36'} | 62,680 | When I run the Sharing wizard, I end up with a "Calculating Synchronization
States" job in the progress view that appears to be still running. Clicking on
the stop button has no effect. Inspecting the stack traces in the debugger
reveals that there are no running jobs.
With I20040518, the steps to reproduce are:
1) Perform a Share Project on a project and choose CVS
2) Share with a repo and choose a module name that doesn't already exist
3) On the sync page, choose to ignore one of the resources
I don't know if step 3 is required but I was able to reproduce the situation
twice in a row using these steps. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f37'} | 62,681 | Hyper-link stlye widgets in the flat L&F package do not repaint properly. When
the text is painted, it does not erase its background. The result is that as
the mouse rolls over the text, it paints more and more because the color
changes. The result of this multiple painting is that the word gets bolder and
bolder until you can hardly read it.
To see this behavior, use any windowing system which supports anti-aliased
fonts. This can reproduced in the Update manager window and the PDE editor. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f38'} | 62,684 | I can only use the source page of the PDE plugin editor. If I click on any
other page, it reports that there are problems with the XML file. Yet this
file has not changed in a while and used to work fine. There are not Red Xs in
the source anywhere or markers in the problems view.
To reproduce, checkout the org.eclipse.gef project from HEAD. | major | RESOLVED | DUPLICATE |
{'$oid': '52e9c16954dc1c25ebdc0f39'} | 62,683 | I defined a struct in a file then referenced it. I went to open declaration and
it said the operation was invalid. Then I noticed I hadn't save the file. After
having done so, the open declaration worked.
My first reaction was that I shouldn't have to save the file to do open
declaration. The JDT does not require you to save the file either. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f3a'} | 62,682 | build I20040518
- open the workbench and open a bunch of perspectives
- now switch to the java perspective
- note that in my case, when re-starting, I was in the java perspective, but
the Team Synchronizing button was the only one visible.
- the perspective you start up in needs to be visible in the switcher. | normal | RESOLVED | WORKSFORME |
{'$oid': '52e9c16954dc1c25ebdc0f3b'} | 62,685 | I miss a functionality for a merge like:
cvs update -j <myBranchTag>:yesterday -j <myBranchTag> helloWorld.java
Use only deltas no older than timestamp. | enhancement | RESOLVED | WONTFIX |
{'$oid': '52e9c16954dc1c25ebdc0f3c'} | 62,686 | I200405180816
Open type hierarchy on IWorkbench. The implementing class Workbench is not
shown. You have to press 'Show subtype hierarchy' to see it. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f3d'} | 62,672 | here's the log:
!SESSION May 18, 2004 11:29:31.422 ---------------------------------------------
eclipse.buildId=unknown
java.version=1.4.2.02
java.vendor=Hewlett-Packard Co.
BootLoader constants: OS=hpux, ARCH=PA_RISC, WS=motif, NL=en
!ENTRY org.eclipse.core.runtime May 18, 2004 11:29:31.425
!MESSAGE Exception trying to create the fileManager for the
area: "/bluebird/teamswt/ggayed/hpux30M9/eclipse/configuration//org.eclipse.core
.runtime".
!ENTRY
initial@reference:file:/bluebird/teamswt/ggayed/hpux30M9/eclipse/plugins/org.ecl
ipse.core.runtime_3.0.0/ 0 0 May 18, 2004 11:29:31.591
!MESSAGE FrameworkEvent.ERROR
!STACK 0
org.osgi.framework.BundleException: Exception in
org.eclipse.core.internal.runtime.PlatformActivator.start() of bundle
org.eclipse.core.runtime.
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:975)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
Caused by: java.lang.NullPointerException
at org.eclipse.core.internal.runtime.PlatformActivator.startRegistry
(PlatformActivator.java:95)
at org.eclipse.core.internal.runtime.PlatformActivator.start
(PlatformActivator.java:61)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
... 10 more
Root exception:
java.lang.NullPointerException
at org.eclipse.core.internal.runtime.PlatformActivator.startRegistry
(PlatformActivator.java:95)
at org.eclipse.core.internal.runtime.PlatformActivator.start
(PlatformActivator.java:61)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
!ENTRY
initial@reference:file:/bluebird/teamswt/ggayed/hpux30M9/eclipse/plugins/org.ecl
ipse.update.configurator_3.0.0/ 0 0 May 18, 2004 11:29:31.658
!MESSAGE FrameworkEvent.ERROR
!STACK 0
org.osgi.framework.BundleException: Exception in
org.eclipse.update.internal.configurator.ConfigurationActivator.start() of
bundle org.eclipse.update.configurator.
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:975)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
Caused by: java.lang.Exception: Cannot initialize the Update Configurator
at
org.eclipse.update.internal.configurator.ConfigurationActivator.initialize
(ConfigurationActivator.java:103)
at org.eclipse.update.internal.configurator.ConfigurationActivator.start
(ConfigurationActivator.java:70)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
... 10 more
Root exception:
java.lang.Exception: Cannot initialize the Update Configurator
at
org.eclipse.update.internal.configurator.ConfigurationActivator.initialize
(ConfigurationActivator.java:103)
at org.eclipse.update.internal.configurator.ConfigurationActivator.start
(ConfigurationActivator.java:70)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
!ENTRY org.eclipse.osgi May 18, 2004 11:29:31.690
!MESSAGE Startup error
!STACK 1
java.lang.IllegalStateException: Bundle
initial@reference:file:/bluebird/teamswt/ggayed/hpux30M9/eclipse/plugins/org.ecl
ipse.core.runtime_3.0.0/ [1] is not active.
at org.eclipse.core.runtime.adaptor.EclipseStarter.ensureBundlesActive
(EclipseStarter.java:286)
at org.eclipse.core.runtime.adaptor.EclipseStarter.startup
(EclipseStarter.java:222)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run
(EclipseStarter.java:125)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621) | normal | RESOLVED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f3e'} | 62,673 | Hover Help has stopped listing the "Press 'F2' to Focus" option and pressing F2
while the hover help is up has no effect (I'll attach a screenshot to show you
precisely what's occuring). It will stay away while looking at a single source
file but may go and come back when switching files. The machine is running
Fedora Core 1 and the M8 build.
Steps to Reproduce: Not entirely sure, I seemed to have some success opening new
projects switching to them, using the Hover Help, switching back to an older
project and it would stop working but I can't find a consistent way to get this
problem to show up (I'll keep looking at it and post if I can make it any more
reproducable). | normal | RESOLVED | WORKSFORME |
{'$oid': '52e9c16954dc1c25ebdc0f3f'} | 62,688 | - see this in the custom control example
- also strange, hitting a key at this point also makes the whole screen flash | normal | RESOLVED | WORKSFORME |
{'$oid': '52e9c16954dc1c25ebdc0f40'} | 62,687 | i200405180816
(not sure which component to report this to)
The Java editor is losing keyboard focus after content assist is activated. Once
it is dismissed with <ESC>, there will be no cursor. Pressing <TAB> fixes the
problem. | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16954dc1c25ebdc0f41'} | 62,690 | this works fine with gtk | normal | RESOLVED | FIXED |
{'$oid': '52e9c16954dc1c25ebdc0f42'} | 62,689 | When recording a ClearQuest web app using HTTPProxyRecorder, upon successful
completion of recording and test generation, the RAC crashes with a Dr.
Watson. This is not reproducible on all machines, but is consistent on the
machines it does not work on. I upped the loggingLevel=DEBUG and the
loggingDetal=HIGH. The servicelog.log does not contain any real exciting
information. When I tried to include the log file in this report, I get a
message that I had exceeded the # of characters for a bug report. So, I am
not including the contents of servicelog.log. | major | CLOSED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f43'} | 62,691 | normal | RESOLVED | DUPLICATE |
|
{'$oid': '52e9c16a54dc1c25ebdc0f44'} | 62,692 | -build I20040518
- open worbench
- had a bunch of views open in a stack
- select any view but the one on the far left
- exit and restart
- note that the location of the selected (active) view is now on the left..
- all other view ordering seems to have been kept | normal | VERIFIED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f45'} | 62,694 | I200405180816. Linux 2.6.4, GTK+ 2.4.0, KDE 3.2.1.
When trying to run the UITestSuite with this morning's build, I get the
following exception in the log. The process terminates with nothing appearing
in the console view.
I am not sure whether to consider this blocker or major....
!ENTRY org.eclipse.ui 4 4 May 18, 2004 12:08:23.722
!MESSAGE Unhandled event loop exception
!ENTRY org.eclipse.ui 4 0 May 18, 2004 12:08:23.723
!MESSAGE Failed to execute runnable (java.lang.ClassCastException)
!STACK 0
org.eclipse.swt.SWTException: Failed to execute runnable
(java.lang.ClassCastException)
at org.eclipse.swt.SWT.error(SWT.java:2689)
at org.eclipse.swt.SWT.error(SWT.java:2614)
at
org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:109)
at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2515)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2252)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334)
at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:253)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at
org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:97)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:299)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:256)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:127)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621)
!ENTRY org.eclipse.ui 4 4 May 18, 2004 12:08:23.725
!MESSAGE *** SWT nested exception
!ENTRY org.eclipse.ui 4 0 May 18, 2004 12:08:23.726
!MESSAGE java.lang.ClassCastException
!STACK 0
java.lang.ClassCastException
at
org.eclipse.jdt.internal.junit.ui.JUnitPlugin.findTestRunnerViewPartInActivePage(JUnitPlugin.java:239)
at org.eclipse.jdt.internal.junit.ui.JUnitPlugin.access$0
(JUnitPlugin.java:235)
at
org.eclipse.jdt.internal.junit.ui.JUnitPlugin$1.run(JUnitPlugin.java:191)
at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
at
org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:106)
at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:2515)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2252)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334)
at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:253)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at
org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:97)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:299)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:256)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:127)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621) | blocker | RESOLVED | WORKSFORME |
{'$oid': '52e9c16a54dc1c25ebdc0f46'} | 62,693 | I copied a whole Workspace to from one PC to another. On both machines I have
eclipse 3.0.M8 running.
However, the workspace copy on the second machine cannot be used with eclipse.
Whenever I try to open a Java file I get an error dialog (10 times!) saying
"More info in the logs"
The .log is full of exceptions like this one:
!MESSAGE Problems occurred when invoking code from plug-in:
"org.eclipse.core.runtime".
!STACK 0
java.lang.NullPointerException
at org.eclipse.core.internal.resources.File.getCharset(File.java:211)
at
org.eclipse.jdt.internal.core.util.Util.getResourceContentsAsCharArray(Util.java:1144)
at
org.eclipse.jdt.internal.core.CompilationUnit.openBuffer(CompilationUnit.java:997)
at
org.eclipse.jdt.internal.core.CompilationUnit.buildStructure(CompilationUnit.java:102)
at org.eclipse.jdt.internal.core.Openable.generateInfos(Openable.java:169)
at org.eclipse.jdt.internal.core.JavaElement.openWhenClosed(JavaElement.java:543)
at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:280)
at org.eclipse.jdt.internal.core.JavaElement.getElementInfo(JavaElement.java:266)
at org.eclipse.jdt.internal.core.JavaElement.getChildren(JavaElement.java:221)
at
org.eclipse.jdt.internal.core.JavaElement.getChildrenOfType(JavaElement.java:235)
at org.eclipse.jdt.internal.core.CompilationUnit.getTypes(CompilationUnit.java:788)
at
org.eclipse.jdt.internal.corext.refactoring.util.JavaElementUtil.getMainType(JavaElementUtil.java:85)
at
org.eclipse.jdt.ui.actions.UseSupertypeAction.getSingleSelectedType(UseSupertypeAction.java:114)
at
org.eclipse.jdt.ui.actions.UseSupertypeAction.canEnable(UseSupertypeAction.java:103)
at
org.eclipse.jdt.ui.actions.UseSupertypeAction.selectionChanged(UseSupertypeAction.java:81)
at
org.eclipse.jdt.ui.actions.SelectionDispatchAction.dispatchSelectionChanged(SelectionDispatchAction.java:200)
at
org.eclipse.jdt.ui.actions.SelectionDispatchAction.selectionChanged(SelectionDispatchAction.java:195)
at org.eclipse.jface.viewers.Viewer$2.run(Viewer.java:159)
at
org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:610)
at org.eclipse.core.runtime.Platform.run(Platform.java:521)
at org.eclipse.jface.viewers.Viewer.fireSelectionChanged(Viewer.java:157)
at
org.eclipse.jface.viewers.StructuredViewer.updateSelection(StructuredViewer.java:1310)
at
org.eclipse.jface.viewers.StructuredViewer.handleSelect(StructuredViewer.java:666)
at
org.eclipse.jface.viewers.StructuredViewer$4.widgetSelected(StructuredViewer.java:690)
at org.eclipse.jface.util.OpenStrategy.fireSelectionEvent(OpenStrategy.java:178)
at org.eclipse.jface.util.OpenStrategy.access$3(OpenStrategy.java:173)
at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:309)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:769)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2578)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2256)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1562)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1536)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:257)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:139)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:90)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:277)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:239)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:117)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:267)
at org.eclipse.core.launcher.Main.run(Main.java:692)
at org.eclipse.core.launcher.Main.main(Main.java:676) | major | RESOLVED | INVALID |
{'$oid': '52e9c16a54dc1c25ebdc0f47'} | 62,696 | I have turned on tracing options using the launch configuration dialog.
Unfortunately, when I try to launch, I get the following on the console:
file:/localhost/home/dpollock/Source/Eclipse/Workspaces/Development/.metadata/.plugins/org.eclipse.pde.core/Eclipse/.options
not found
None of the information provided by the tracing options I specified appears on
the console as the self-hosted session is running. | major | RESOLVED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f48'} | 62,695 | - open the java perspective
- open a java class in the editor
- note that the outline view has an outline
- make it a fastview
- restore it to it's original place
NOTE that it is empty until you click on it... | normal | RESOLVED | WORKSFORME |
{'$oid': '52e9c16a54dc1c25ebdc0f49'} | 62,698 | 200405180816
Search for declaration of package "java.util" in workspace.
=> Log:
Error Mai 18, 2004 18:23:03.577 An internal error occurred during: "Search for
Declarations of "java.util" in Workspace".
java.lang.NullPointerException
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.NullPointerException.<init>(NullPointerException.java:60)
at
org.eclipse.jdt.internal.core.search.matching.MatchLocator.locatePackageDeclarations(MatchLocator.java:895)
at
org.eclipse.jdt.internal.core.search.matching.MatchLocator.locatePackageDeclarations(MatchLocator.java:881)
at
org.eclipse.jdt.internal.core.search.JavaSearchParticipant.locateMatches(JavaSearchParticipant.java:99)
at org.eclipse.jdt.core.search.SearchEngine.findMatches(SearchEngine.java:469)
at org.eclipse.jdt.core.search.SearchEngine.search(SearchEngine.java:758)
at org.eclipse.jdt.internal.ui.search.JavaSearchQuery.run(JavaSearchQuery.java:125)
at
org.eclipse.search2.internal.ui.InternalSearchUI$InternalSearchJob.run(InternalSearchUI.java:82)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java) | minor | VERIFIED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f4a'} | 62,699 | Reproduced with both recent integration releases (I20040505 and I20040517).
1) Start Eclipse in a new workspace.
2) Select the Java perspective.
3) Create a new Run-time Workbench debug configuration
4) For the new configuration:
- Select the tracing tab
- Check "Enable tracing for the selected plug-ins"
- Check the "org.eclipse.core.runtime (3.0.0)" entry in the left-hand list
- Select the "org.eclipse.core.runtime (3.0.0)" entry in the left-hand list
- Check the "registry/debug/events/extension" entry in the right-hand list
5) Apply the changes, then try to start the debug session
The debug session of Eclipse starts, then exits after displaying the splash
screen. The following is the last line of trace output generated:
file:c:\Sandbox\component\ebt\eclipse3\workspaces\launch-bug\.metadata\.plugins\org.eclipse.pde.core\New_configuration/.options
loaded
Time loadBundles in the framework: 290
The following files exist in the runtime-workspace/.metadata directory:
./.lock
./.plugins/org.eclipse.core.resources/.history/.index
./.plugins/org.eclipse.core.resources/.root/1.tree
./.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources
./.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs
./.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs
./.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs
./.plugins/org.eclipse.ui/dialog_settings.xml
./.plugins/org.eclipse.ui.cheatsheets/cheatsheet.xml
./.plugins/org.eclipse.ui.ide/dialog_settings.xml
./.plugins/org.eclipse.ui.workbench/dialog_settings.xml
./.plugins/org.eclipse.ui.workbench/workbench.xml
./version.ini
I'd be happy to provide any additional information required, if you have trouble
reproducing this. | major | RESOLVED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f4b'} | 62,697 | Using M9 build I200405180816.
While verifying bug 56449, I noticed that it was not possible to make this
distinction between Javadoc and Code for package references matches...
See also bug 54962... | normal | VERIFIED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f4c'} | 62,700 | I20040518 M9 test pass
The occurrences pref page lets you enable method exit points independently from
exceptions. However, the former only work if the latter are enabled.
Steps:
1. Go to the Java->Editor->Occurrences pref page
2. Enable occurrences marking, disable everything but exit points
3. In a java editor, select a method return type
-> expected: exit points highlighted
-> actual: no highlight | normal | VERIFIED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f4d'} | 62,702 | 200405180816
- Find Occurrences of something
-> Search view menu button doesn't do anything if pressed. Either the view menu
should disappear, or a gray menu item should tell something like
<No Configuration Options>
(in the line of the empty "Show In" submenu in Find Occurrences' context menu). | trivial | RESOLVED | DUPLICATE |
{'$oid': '52e9c16a54dc1c25ebdc0f4e'} | 62,701 | Revert this change until we can modify the model to use double instead of logn.
Arnaud please update your viewer to do the conversion (miliseconds to seconds). | normal | CLOSED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f4f'} | 62,703 | I20040518 M9 testpass
1. Use eclipse without it covering the entire screen, but merely the lower left
2. Open JavaEditor.java
3. Put the editor caret somewhere on AbstractSelectionChangedListener::install
4. Without changing the selection, scroll to the very end of the end of the file
5. Press Alt+Shift+T/S to bring up the quick menu
-> expected: the menu shows up somewhere in the eclipse workbench
-> actual: the menu shows up on the very top of the screen, over other applications. | minor | VERIFIED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f50'} | 62,704 | Following bug 61181, if //toto is defined as a task tag, a line comment starting
with toto is seen as a task. I would expect ////toto to be a task, not simply
//toto.
test case:
public class A {
//toto
}
This should not create a task tag. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f51'} | 62,705 | I20040518-gtk M9 test pass
Reproducable steps:
1. open eclipse on a fresh workspace
2. on the intro page, choose "what's new"
3. on the next page, choose "go to workbench"
-> got this in the log:
org.eclipse.swt.SWTException: Widget is disposed
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.Throwable.<init>(Throwable.java:73)
at org.eclipse.swt.SWTException.<init>(SWTException.java:73)
at org.eclipse.swt.SWT.error(SWT.java:2689)
at org.eclipse.swt.SWT.error(SWT.java:2614)
at org.eclipse.swt.SWT.error(SWT.java:2585)
at org.eclipse.swt.widgets.Widget.error(Widget.java:374)
at org.eclipse.swt.widgets.Widget.checkWidget(Widget.java)
at org.eclipse.swt.widgets.Control.setRedraw(Control.java:2663)
at
org.eclipse.ui.internal.intro.impl.model.IntroURL$1.run(IntroURL.java:104)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at
org.eclipse.ui.internal.intro.impl.model.IntroURL.execute(IntroURL.java:92)
at
org.eclipse.ui.internal.intro.impl.swt.PageForm$1.linkActivated(PageForm.java:51)
at
org.eclipse.ui.forms.widgets.AbstractHyperlink.handleActivate(AbstractHyperlink.java:183)
at
org.eclipse.ui.forms.widgets.ImageHyperlink.handleActivate(ImageHyperlink.java:137)
at
org.eclipse.ui.forms.widgets.AbstractHyperlink.handleMouseUp(AbstractHyperlink.java:264)
at
org.eclipse.ui.forms.widgets.AbstractHyperlink.access$1(AbstractHyperlink.java:248)
at
org.eclipse.ui.forms.widgets.AbstractHyperlink$4.handleEvent(AbstractHyperlink.java:95)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:944)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334)
at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:253)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:97)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:299)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:256)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:127)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:41)
at java.lang.reflect.Method.invoke(Method.java:386)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621)
Widget is disposed | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16a54dc1c25ebdc0f52'} | 62,706 | I20040518
1. import all projects from source.
2. run as -> runtime workbench.
The following messages are written to the console:
java.lang.NoClassDefFoundError: org/eclipse/core/launcher/Main
Exception in thread "main"
NOTE: If I import all projects as binary, I don't get the error. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f53'} | 62,707 | This dialog should be an activation point, like the New/Import/Export wizards. | normal | CLOSED | FIXED |
{'$oid': '52e9c16a54dc1c25ebdc0f54'} | 62,708 | ... so we don't overload the Rational meaning of activity. | normal | CLOSED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f56'} | 62,712 | 200405180816
Preferences > Java > Editor > Syntax: change Background Color
=> QuickDiff Ruler and Java Editor area take over the new color, but the folding
ruler doesn't. | trivial | RESOLVED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f57'} | 62,709 | Kevin... what did you have in mind here (besides the activity itself)? | normal | CLOSED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f58'} | 62,714 | I got this using I200405180816. Unfortunately no steps to reproduce.
!SESSION mai 18, 2004 10:40:25.280 ---------------------------------------------
eclipse.buildId=I200405180816
java.version=1.4.2_04
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=fr_CA
Command-line arguments: -showlocation
!ENTRY org.eclipse.ui 4 4 mai 18, 2004 10:40:25.280
!MESSAGE Unable to find Action Set: org.eclipse.ui.Activities | normal | RESOLVED | INVALID |
{'$oid': '52e9c16b54dc1c25ebdc0f59'} | 62,716 | 200405180816
- Open Java > Editor > Hovers prefs page
- Click or doubleclick checkbox in front of "Variable Values" to check
-> Error message, is OK
- Click again to uncheck
=> Error message persists. Only goes away after clicking into the table or
selecting another row. | minor | VERIFIED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f5a'} | 62,710 | 1. Restart the RAC on AS/400.
Do the remaining steps as rapidly as possible:
2. Launch StartStop (or InOut)
3. Quickly run through the test case so that it terminates.
4. Relaunch StartStop (or InOut)
5. Deattach at the first prompt.
6. Press Enter to get to next prompt
7. Attach and start monitoring
8. Press Enter so that the test case terminates.
The Java process being profiled terminates without problem. However, the RAC
(ie: RAServer process) will crash. (If it hasn't, you may try one or two more
times, but I found this fairly consistently). If you haven't found it in the
first 2 or 3 tries, then you may have to restart the RAC, because this seems to
only happen immediately after the RAC has started. If you've gone through
several successful runs it seems to stabilize.
I'm attaching the spool file from the RAC process that indicates that the
ra_forwardMessage method within the MSGPUMP module (messagePump.c) as being the
offender. A bad memory reference is taking place within that method.
The following is from the servicelog.log file just before the RAC terminates:
<SERVER_MSG time="2004:5:18:12:42:19" severity="INFORMATION" text="Service
started successfully"/>
<SERVER_MSG time="2004:5:18:12:42:20" severity="SEVERE" text="Could not get ID
for method file server constructor"/>
<SERVER_MSG time="2004:5:18:12:42:33" severity="INFORMATION" text="Incoming
connection request on socket 20 from 0x91a9d0f"/>
<SERVER_MSG time="2004:5:18:12:42:33" severity="INFORMATION" text="Connection
accepted on socket 20"/>
<SERVER_MSG time="2004:5:18:12:42:41" severity="INFORMATION" text="Attempting to
launch process : java.exe -XrunpiAgent:server=controlled -Djava.version=1.4
StartStop in location /tmp"/>
<SERVER_MSG time="2004:5:18:12:42:41" severity="INFORMATION" text="Process was
launched. PID=5941"/>
<SERVER_MSG time="2004:5:18:12:42:41" severity="INFORMATION" text="Adding agent
interest: Java Profiling Agent"/>
<SERVER_MSG time="2004:5:18:12:42:42" severity="INFORMATION" text="Incoming
connection request from agent Java Profiling Agent in process 5941 with uuid
UUID-1084884161-988616-16319-17846"/>
<SERVER_MSG time="2004:5:18:12:42:42" severity="WARNING" text="Registered Agent
UUID-1084884161-988616-16319-17846."/>
<SERVER_MSG time="2004:5:18:12:42:42" severity="WARNING" text="Requesting shared
memory 31457280 bytes, allocating 16764928 bytes, system max 16773120 bytes
"/>
<SERVER_MSG time="2004:5:18:12:42:43" severity="INFORMATION" text="Created data
channel with name rabuffer0 and CB addr SPP:0000
:19efQP0ZSHMK-1811709863I2633:154:0:b buffer addr SPP:0000
:19efQP0ZSHMK-1811709863I2633:866c:1:b size in=31457280 size out=8388608"/>
<SERVER_MSG time="2004:5:18:12:42:43" severity="INFORMATION" text="Connected to
client data channel socket on port 2085 with descriptor 22"/>
<SERVER_MSG time="2004:5:18:12:42:43" severity="INFORMATION" text="Created
flusher thread and about to send message to agent"/>
<SERVER_MSG time="2004:5:18:12:42:47" severity="INFORMATION" text="Deregistering
agent UUID-1084884161-988616-16319-17846. "/>
<SERVER_MSG time="2004:5:18:12:42:47" severity="INFORMATION" text="Removing
agent UUID-1084884161-988616-16319-17846. from client"/>
<SERVER_MSG time="2004:5:18:12:42:47" severity="INFORMATION" text="Process 5941
exited"/>
<SERVER_MSG time="2004:5:18:12:42:50" severity="INFORMATION" text="Attempting to
launch process : java.exe -XrunpiAgent:server=controlled -Djava.version=1.4
StartStop in location /tmp"/>
<SERVER_MSG time="2004:5:18:12:42:50" severity="INFORMATION" text="Process was
launched. PID=5942"/>
<SERVER_MSG time="2004:5:18:12:42:50" severity="INFORMATION" text="Adding agent
interest: Java Profiling Agent"/>
<SERVER_MSG time="2004:5:18:12:42:50" severity="INFORMATION" text="Incoming
connection request from agent Java Profiling Agent in process 5942 with uuid
UUID-1084884170-969320-31848-9599"/>
<SERVER_MSG time="2004:5:18:12:42:50" severity="WARNING" text="Registered Agent
UUID-1084884170-969320-31848-9599."/>
<SERVER_MSG time="2004:5:18:12:42:50" severity="WARNING" text="Requesting shared
memory 31457280 bytes, allocating 16764928 bytes, system max 16773120 bytes
"/>
<SERVER_MSG time="2004:5:18:12:42:52" severity="INFORMATION" text="Created data
channel with name rabuffer1 and CB addr SPP:0000
:19efQP0ZSHMK-1811710287I2634:154:2:b buffer addr SPP:0000
:19efQP0ZSHMK-1811710287I2634:866c:3:b size in=31457280 size out=8388608"/>
<SERVER_MSG time="2004:5:18:12:42:52" severity="INFORMATION" text="Connected to
client data channel socket on port 2087 with descriptor 25"/>
<SERVER_MSG time="2004:5:18:12:42:52" severity="INFORMATION" text="Created
flusher thread and about to send message to agent"/>
<SERVER_MSG time="2004:5:18:12:42:57" severity="INFORMATION" text="Detached
client 20 from agent UUID-1084884170-969320-31848-9599"/>
<SERVER_MSG time="2004:5:18:12:43:0" severity="INFORMATION" text="Preparing
Agent active"/>
<SERVER_MSG time="2004:5:18:12:43:1" severity="WARNING" text="Requesting shared
memory 31457280 bytes, allocating 16764928 bytes, system max 16773120 bytes
"/>
<SERVER_MSG time="2004:5:18:12:43:2" severity="INFORMATION" text="Process 5942
does not exit so scrub it"/>
<SERVER_MSG time="2004:5:18:12:43:2" severity="INFORMATION" text="Process 5942
exited"/>
<SERVER_MSG time="2004:5:18:12:43:2" severity="INFORMATION" text="Created data
channel with name rabuffer2 and CB addr SPP:0000
:19efQP0ZSHMK-1811704475I2635:154:4:b buffer addr SPP:0000
:19efQP0ZSHMK-1811704475I2635:866c:5:b size in=31457280 size out=8388608"/>
<SERVER_MSG time="2004:5:18:12:43:2" severity="INFORMATION" text="Connected to
client data channel socket on port 2088 with descriptor 27"/>
<SERVER_MSG time="2004:5:18:12:43:2" severity="INFORMATION" text="Created
flusher thread and about to send message to agent"/>
<SERVER_MSG time="2004:5:18:12:43:2" severity="SEVERE" text="Could not connect
to agent to forward command. Platform specific error is 3457"/>
<SERVER_MSG time="2004:5:18:12:43:18" severity="INFORMATION" text="Attempting to
launch process : java.exe -XrunpiAgent:server=controlled -Djava.version=1.4
StartStop in location /tmp"/>
<SERVER_MSG time="2004:5:18:12:43:19" severity="INFORMATION" text="Process was
launched. PID=5943"/>
<SERVER_MSG time="2004:5:18:12:43:19" severity="INFORMATION" text="Adding agent
interest: Java Profiling Agent"/>
<SERVER_MSG time="2004:5:18:12:43:19" severity="INFORMATION" text="Incoming
connection request from agent Java Profiling Agent in process 5943 with uuid
UUID-1084884199-451584-29799-17367"/>
<SERVER_MSG time="2004:5:18:12:43:19" severity="WARNING" text="Registered Agent
UUID-1084884199-451584-29799-17367."/>
<SERVER_MSG time="2004:5:18:12:43:19" severity="WARNING" text="Requesting shared
memory 31457280 bytes, allocating 16764928 bytes, system max 16773120 bytes
"/>
<SERVER_MSG time="2004:5:18:12:43:20" severity="INFORMATION" text="Created data
channel with name rabuffer3 and CB addr SPP:0000
:19efQP0ZSHMK-1811704469I2636:154:6:b buffer addr SPP:0000
:19efQP0ZSHMK-1811704469I2636:866c:7:b size in=31457280 size out=8388608"/>
<SERVER_MSG time="2004:5:18:12:43:20" severity="INFORMATION" text="Connected to
client data channel socket on port 2090 with descriptor 29"/>
<SERVER_MSG time="2004:5:18:12:43:20" severity="INFORMATION" text="Created
flusher thread and about to send message to agent"/>
<SERVER_MSG time="2004:5:18:12:43:24" severity="INFORMATION" text="Deregistering
agent UUID-1084884199-451584-29799-17367. "/>
<SERVER_MSG time="2004:5:18:12:43:24" severity="INFORMATION" text="Removing
agent UUID-1084884199-451584-29799-17367. from client"/>
<SERVER_MSG time="2004:5:18:12:43:24" severity="INFORMATION" text="Process 5943
exited"/>
<SERVER_MSG time="2004:5:18:12:43:25" severity="INFORMATION" text="Attempting to
launch process : java.exe -XrunpiAgent:server=controlled -Djava.version=1.4
StartStop in location /tmp"/>
<SERVER_MSG time="2004:5:18:12:43:26" severity="INFORMATION" text="Process was
launched. PID=5944"/>
<SERVER_MSG time="2004:5:18:12:43:26" severity="INFORMATION" text="Adding agent
interest: Java Profiling Agent"/>
<SERVER_MSG time="2004:5:18:12:43:26" severity="INFORMATION" text="Incoming
connection request from agent Java Profiling Agent in process 5944 with uuid
UUID-1084884206-460960-29535-18222"/>
<SERVER_MSG time="2004:5:18:12:43:26" severity="WARNING" text="Registered Agent
UUID-1084884206-460960-29535-18222."/>
<SERVER_MSG time="2004:5:18:12:43:26" severity="WARNING" text="Requesting shared
memory 31457280 bytes, allocating 16764928 bytes, system max 16773120 bytes
"/>
<SERVER_MSG time="2004:5:18:12:43:28" severity="INFORMATION" text="Created data
channel with name rabuffer4 and CB addr SPP:0000
:19efQP0ZSHMK-1811704465I2637:154:8:b buffer addr SPP:0000
:19efQP0ZSHMK-1811704465I2637:866c:9:b size in=31457280 size out=8388608"/>
<SERVER_MSG time="2004:5:18:12:43:28" severity="INFORMATION" text="Connected to
client data channel socket on port 2092 with descriptor 32"/>
<SERVER_MSG time="2004:5:18:12:43:28" severity="INFORMATION" text="Created
flusher thread and about to send message to agent"/>
<SERVER_MSG time="2004:5:18:12:43:32" severity="INFORMATION" text="Detached
client 20 from agent UUID-1084884206-460960-29535-18222"/>
<SERVER_MSG time="2004:5:18:12:43:34" severity="INFORMATION" text="Preparing
Agent active"/>
<SERVER_MSG time="2004:5:18:12:43:35" severity="WARNING" text="Requesting shared
memory 31457280 bytes, allocating 16764928 bytes, system max 16773120 bytes
"/>
<SERVER_MSG time="2004:5:18:12:43:35" severity="INFORMATION" text="Process 5944
does not exit so scrub it"/>
<SERVER_MSG time="2004:5:18:12:43:35" severity="INFORMATION" text="Process 5944
exited"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="INFORMATION" text="Created data
channel with name rabuffer5 and CB addr SPP:0000
:19efQP0ZSHMK-1811704463I2638:154:a:b buffer addr SPP:0000
:19efQP0ZSHMK-1811704463I2638:866c:b:b size in=31457280 size out=8388608"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="INFORMATION" text="Connected to
client data channel socket on port 2093 with descriptor 34"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="INFORMATION" text="Created
flusher thread and about to send message to agent"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="WARNING" text="Server stopping"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="WARNING" text="Internal server
closed"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="WARNING" text="External server
closed"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="WARNING" text="Client connection
request failed with platform specific error 3407 (Interrupted function call.)"/>
<SERVER_MSG time="2004:5:18:12:43:37" severity="SEVERE" text="Client connection
request failed with platform specific error 3439 (The specified descriptor does
not reference a socket.)"/> | normal | CLOSED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f5b'} | 62,717 | I20040518
We are currently not persisting changes to dynamic references. The optimization
that was added to avoid writing the file when nothing in the .project had
changed did not account for the fact that the same "write" operation also writes
out the private description information (location and dynamic refs). | major | RESOLVED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f5c'} | 62,715 | 'Hello World' appears if the number of users is deleted. After, a number is
entered again, the 'Hello World' remains. Attached is an example of the
problem. | normal | CLOSED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f5d'} | 62,718 | 200405180816:
Java Editor Text Hover prefs: Table should not allow multi-row selection | trivial | VERIFIED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f5f'} | 62,713 | I20040518-gtk M9 test pass
It's going to be hard to reconstruct what I did, but I ended up with nested
output folders (will attach a screenshot of the property page).
+/- Steps:
1. Create project JUnit
2. import junit.zip, no separate source and output folders
3. Using the context menu in the package explorer, add source folder "test"
4. info: the output will be set to "bin". Ok.
-> Note that the standard directory with my junit source is not a source folder
any longer
5. Open the project properties, Java build path
6. Add a source folder, choose the root (Project)
-> error, "cannot nest Junit/test into Junit"
7. exclude JUnit/test/ from JUnit source folder
(cool caption telling me to add a slash to fully exclude the folder!)
Everything ok up to now.
8. Enable output folders per source folder
9. Set the output folder for test to "Junit/bin"
10. Set the output folder for the root dir to "Junit/bin/test" (no complaint)
11. leave the property page
Hm, now I have a different problem: The folder JUnit/bin/test does not exist
-> error in problems view telling me that the project cannot be built because of
this
We'll continue this way, cannot reproduce the original set up.
12. Over the context menu, choose to create JUnit/bin/test
-> I get this in the log:
!ENTRY org.eclipse.jdt.core 4 4 May 18, 2004 19:19:49.409
!MESSAGE JavaBuilder handling ImageBuilderInternalException while building: JUnit
!STACK 1
org.eclipse.core.internal.resources.ResourceException: Resource /JUnit/bin/test
does not exist.
at java.lang.Throwable.<init>(Throwable.java)
at java.lang.Throwable.<init>(Throwable.java)
at org.eclipse.core.runtime.CoreException.<init>(CoreException.java:37)
at
org.eclipse.core.internal.resources.ResourceException.<init>(ResourceException.java:30)
at org.eclipse.core.internal.resources.Resource.checkExists(Resource.java)
at org.eclipse.core.internal.resources.Container.members(Container.java)
at org.eclipse.core.internal.resources.Container.members(Container.java)
at
org.eclipse.jdt.internal.core.builder.BatchImageBuilder.cleanOutputFolders(BatchImageBuilder.java:112)
at
org.eclipse.jdt.internal.core.builder.BatchImageBuilder.build(BatchImageBuilder.java:35)
at
org.eclipse.jdt.internal.core.builder.JavaBuilder.buildAll(JavaBuilder.java:213)
at
org.eclipse.jdt.internal.core.builder.JavaBuilder.build(JavaBuilder.java:145)
at
org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:532)
at
org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java)
at org.eclipse.core.runtime.Platform.run(Platform.java)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:148)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:225)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:178)
at
org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:205)
at
org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java)
at org.eclipse.core.runtime.Platform.run(Platform.java)
at
org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:208)
at
org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:244)
at
org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:273)
at
org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:151)
at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:198)
at org.eclipse.core.internal.jobs.Worker.run(Worker.java)
!SUBENTRY 1 org.eclipse.core.resources 4 368 May 18, 2004 19:19:49.434
!MESSAGE Resource /JUnit/bin/test does not exist. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f61'} | 62,721 | I do not get completion in the following code (after the bl in the sizeof
statement):
int f()
{
short blah;
int x = sizeof(bl
} | normal | RESOLVED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f62'} | 62,722 | I200405180816. Linux 2.6.4, GTK+ 2.4.0, KDE 3.2.1.
I tried opening the pop-up menu on a java file "Display" in the SWT project.
The bottomost entry in the additions group had the label
"%JavaAddElementFromHistoryAction.label". | trivial | RESOLVED | WORKSFORME |
{'$oid': '52e9c16b54dc1c25ebdc0f63'} | 62,724 | WorkbenchPart.setPartName for an editor should change the label in the editor's
tab, but it doesn't. | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16b54dc1c25ebdc0f64'} | 62,725 | I get no completions found in the following (assist at 'bi' in for loop):
int f()
{
int biSizeImage = 5;
for (int i = 0; i < bi
} | normal | RESOLVED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f65'} | 62,723 | I20040518-gtk, m9 test pass
1. Create the smoke test junit project
2. Choose Project -> Generate Javadoc
3. Open the console and go to the line that says:
/opt/eclipse/workspaces/smoke/JUnit/junit/runner/TestCollector.java:11: warning
- Tag @see: Class or Package not found: TestSelector
4. Hover over the first part of the line
expected: see a hand cursor, clicking the link brings up the respective location
actual: the cursor flashes a little, but no hand cursor visible, clicking has no
effect
Note that selecting the line, then choose "Open Link" from the context menu does
work. Somehow, the cursor thing seems not to work - something seems to race,
thus the cursor flashing. | major | RESOLVED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f66'} | 62,726 | assigned a name to several events in an execution history and non of them show
in the viewer. All the events are TypedEvent's and the name is not displayed
for either start or stop events. | blocker | CLOSED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f67'} | 62,727 | 20040518-1200
If you load compare a project with another revision the end of the compare job
will tell you there are no changes even though there are plenty.
STEPS
1) Load a project from HEAD
2) Compare with an older revision
3)The end message will say "No changes found" even if the sync view is full of
them.
I compared org.eclipse.ui.workbench from HEAD against version 20040504 | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16b54dc1c25ebdc0f68'} | 62,728 | No completions found in the the final t->. Funny enough the first one works.
struct Temp {
char * t;
}
int f(Temp * t)
{
t->t[5] = t->
} | normal | RESOLVED | FIXED |
{'$oid': '52e9c16b54dc1c25ebdc0f69'} | 62,729 | The Junit launch shortcut should do filtering on the extension similar to what
the Java application and Java applet launch shortcuts do so that the Junit
shortcut is not presented for Ant buildfiles. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16c54dc1c25ebdc0f6a'} | 62,730 | I receive the following message when running a my build.xml script while in
the Eclipse platform. I am using 3.0M7. I have downloaded M8 to see if this was
resolved. It was not. I saw similar post's but no indication that this will
be resolved with 3.0 final. This did work w/ 2.1.2.
BUILD FAILED: build.xml:26: Failed to read input from Console. | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16c54dc1c25ebdc0f6b'} | 62,731 | CDT 200405170943
Eclipse 200405140800
This only seems to be a problem when the typedef is preceeded by a union
declaration.
Test case:
1. Create a managed project, call it MgdCpp
2. Add main.cpp and insert the following code:
union Value { // ** (A) **
char * s;
int i;
};
typedef struct { // ** (B) **
unsigned long x;
unsigned long y;
} coords;
int
main(int argc, char **argv) {
}
NOTE: There is only one union declaration (A) in this file.
3. Execute the following search:
Search For: Union
Limit To: Declaractions
Scope: Selected Resource (MgdCpp)
RESULT: Two results are returned, one for line (A) and one for line (B).
The result for line (B) should not be in the results. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16c54dc1c25ebdc0f6c'} | 62,732 | Right click on a plugin.xml
Select Run>
You correctly only get the Run...
Select an Ant buildfile
You now only get Run... | major | RESOLVED | DUPLICATE |
{'$oid': '52e9c16c54dc1c25ebdc0f6d'} | 62,733 | The use of native toolbars with white backgrounds leads to invisible borders. | major | RESOLVED | WORKSFORME |
{'$oid': '52e9c16c54dc1c25ebdc0f6e'} | 62,735 | When a content description is returned for a given file, we remember if it was
null/default/content-specific. In the case it was the default, and
getDescription is been called again, we try to figure out what content type to
obtain a default conten description from. We do that based on the file name, but
that does not work when the selected content type is a sub-type that accepts the
same filenames as the base type.
This is causing UI tests to fail. | major | RESOLVED | FIXED |
{'$oid': '52e9c16c54dc1c25ebdc0f6f'} | 62,734 | changing the tab size in Ant-Editor-Formatter preferences doesn't work when the "Use tab characters
instead of spaces" button is selected".
Looks like \t is always 4 characters wide | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16c54dc1c25ebdc0f70'} | 62,736 | While attempting to use a vector to store a series of integers, the compiler
complained about the add(Object) function, of which there are two, and it insist
on using the first instance, which requires an int as an index because it seems
it didn't want to type cast the int to an object by defualt, which is the usual
way of it, so it didn't select the second function of the same name. An
explicit type cast resulted in an error saying that that it couldn't type cast
from an int to an object (mighty unusual) as well as when a retrieval was
attempted with Vector.get(int) the compiler didn't much like the type cast back
to an int that I attempt either. The result was a work around using strings, as
it seemed to have not problem, as long as I didn't type cast it to a string, but
rather concatinated it to an empty string ("" + variable). With regards to get,
for some reason it didn't complain about the Object to String conversion that
was necessary (followed by a ParseInt on the string). Well, I don't know if
this is helpful, but I was rather amused by the error. And by way of
information, jre is 1.4.2.
Thanks. | normal | RESOLVED | INVALID |
{'$oid': '52e9c16c54dc1c25ebdc0f71'} | 62,737 | The code formatter doesn't do anything on some files. There is no error message.
I'm using eclipse 3.0M8. It doesn't matter what code formatting profile I choose.
With some experimenting, the shortest file I could create that doesn't work is this:
import java.util.Vector;
public class EclipseFormatTest
{
public static void main(String[] args)
{
Vector v2 = new Vector();
{{{String a = ((String) v2.get(0)).trim(), b = (String)
v2.get(1), c = (String) v2
.get(2);}}
}
}
} | major | VERIFIED | FIXED |
{'$oid': '52e9c16c54dc1c25ebdc0f72'} | 62,738 | Build: I-20040517
I found two instances of this NPE in my log...
Error May 17, 2004 14:44:08.116 Problems occurred when invoking code from plug-
in: "org.eclipse.core.runtime".
java.lang.NullPointerException
at org.eclipse.debug.internal.ui.views.launch.LaunchView.perspectiveChanged
(LaunchView.java:614)
at org.eclipse.ui.internal.PerspectiveListenerListOld$2.run
(PerspectiveListenerListOld.java:58)
at org.eclipse.core.internal.runtime.InternalPlatform.run
(InternalPlatform.java:608)
at org.eclipse.core.runtime.Platform.run(Platform.java:668)
at org.eclipse.ui.internal.PerspectiveListenerListOld.firePerspectiveChanged
(PerspectiveListenerListOld.java:56)
at org.eclipse.ui.internal.WorkbenchWindow.firePerspectiveChanged
(WorkbenchWindow.java:913)
at org.eclipse.ui.internal.WorkbenchPage.showActionSet(WorkbenchPage.java:2921)
at
org.eclipse.debug.internal.ui.views.launch.LaunchViewContextListener.showDebugA
ctionSet(LaunchViewContextListener.java:821)
at org.eclipse.debug.internal.ui.views.launch.LaunchViewContextListener.<init>
(LaunchViewContextListener.java:135)
at org.eclipse.debug.internal.ui.views.launch.LaunchView.partOpened
(LaunchView.java:656)
at org.eclipse.ui.internal.PartListenerList$5.run(PartListenerList.java:105)
at org.eclipse.core.internal.runtime.InternalPlatform.run
(InternalPlatform.java:608)
at org.eclipse.core.runtime.Platform.run(Platform.java:668)
at org.eclipse.ui.internal.PartListenerList.firePartOpened
(PartListenerList.java:103)
at org.eclipse.ui.internal.WorkbenchPage.firePartOpened
(WorkbenchPage.java:1404)
at org.eclipse.ui.internal.PartPane.createChildControl(PartPane.java:138)
at org.eclipse.ui.internal.ViewPane.createChildControl(ViewPane.java:140)
at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:276)
at org.eclipse.core.internal.runtime.InternalPlatform.run
(InternalPlatform.java:608)
at org.eclipse.core.runtime.Platform.run(Platform.java:668)
at org.eclipse.ui.internal.ViewFactory.busyRestoreView(ViewFactory.java:202)
at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:454)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at org.eclipse.ui.internal.ViewFactory.restoreView(ViewFactory.java:452)
at org.eclipse.ui.internal.ViewFactory$ViewReference.getPart
(ViewFactory.java:93)
at org.eclipse.ui.internal.WorkbenchPage$1.propertyChange
(WorkbenchPage.java:130)
at org.eclipse.ui.internal.LayoutPart.setVisible(LayoutPart.java:257)
at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:282)
at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:567)
at org.eclipse.ui.internal.presentations.PresentableViewPart.setVisible
(PresentableViewPart.java:114)
at org.eclipse.ui.internal.presentations.DefaultPartPresentation.selectPart
(DefaultPartPresentation.java:846)
at org.eclipse.ui.internal.PartStack.refreshPresentationSelection
(PartStack.java:799)
at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:347)
at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:247)
at org.eclipse.ui.internal.PartSashContainer.createControl
(PartSashContainer.java:427)
at org.eclipse.ui.internal.PerspectiveHelper.activate
(PerspectiveHelper.java:156)
at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:718)
at org.eclipse.ui.internal.WorkbenchPage.onActivate(WorkbenchPage.java:1994)
at org.eclipse.ui.internal.WorkbenchWindow$7.run(WorkbenchWindow.java:1907)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at org.eclipse.ui.internal.WorkbenchWindow.setActivePage
(WorkbenchWindow.java:1894)
at org.eclipse.ui.internal.WorkbenchWindow.restoreState
(WorkbenchWindow.java:1462)
at org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1216)
at org.eclipse.ui.internal.Workbench.access$10(Workbench.java:1183)
at org.eclipse.ui.internal.Workbench$13.run(Workbench.java:1094)
at org.eclipse.core.internal.runtime.InternalPlatform.run
(InternalPlatform.java:608)
at org.eclipse.core.runtime.Platform.run(Platform.java:668)
at org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1027)
at org.eclipse.ui.internal.WorkbenchConfigurer.restoreState
(WorkbenchConfigurer.java:167)
at org.eclipse.ui.application.WorkbenchAdvisor.openWindows
(WorkbenchAdvisor.java:652)
at org.eclipse.ui.internal.Workbench.init(Workbench.java:817)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1311)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:253)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:97)
at org.eclipse.core.internal.runtime.PlatformActivator$1.run
(PlatformActivator.java:299)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:256)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:127)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621) | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16c54dc1c25ebdc0f73'} | 62,739 | Eclipse build number: I200405120800
CDT build number: 200405121551
Test Case:
1. Change the locale to Italian
2. Restart eclipse & create a Java or C/C++ project.
3. Open Project->Properties.
4. In the Info section, it does not show the right date and time format. It
always shows the English format(e.g. May 18,2004 2:59:06) when it should be
Italian date and time format (like martedì 18 maggio 2004 14.59.06). Compare
to the format in the control panel for right results. | normal | RESOLVED | INVALID |
{'$oid': '52e9c16c54dc1c25ebdc0f74'} | 62,741 | The IActivityActivityBinding specifies a binding between two activities where
in order for one activity to be enabled and used it requires the enablement of
another activity.
The problem is that the current API is misleading in its naming and use of
parent child relationships.
So for example to specify (in XML) that plug-in development requires java
development, you would do the following:
<activityActivityBinding
childActivityId="org.eclipse.javaDevelopment"
parentActivityId="org.eclipse.plugInDevelopment">
</activityActivityBinding>
clearly this is not what someone would assume they need to do, if anything the
reverse.
The proposal is that the XML look like this:
<activityActivityBinding
activityId="org.eclipse.plugInDevelopment"
requiredActivityId="org.eclipse.javaDevelopment">
</activityActivityBinding>
and the Interface IActivityActivityBinding should be renamed
IActivityRequirementBinding and be changed to:
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.ui.activities;
/**
* An instance of this interface represents a binding between two activities.
* The relationship can be interpreted as 'activity needs requiredActivity to
be enabled'.
* Enablement of the activity requires enablement of the required activity.
*
* <p>
* This interface is not intended to be extended or implemented by clients.
* </p>
*
* @since 3.0
* @see IActivity
*/
public interface IActivityRequirementBinding extends Comparable {
/**
* Returns the identifier of the activity represented in this
* binding.
*
* @return the identifier of the activity represented in this
* binding. Guaranteed not to be <code>null</code>.
*/
String getActivityId();
/**
* Returns the identifier of the required activity represented in this
* binding. The enablement of the activity described by {@link
#getActivityId()}
* requires the enablement of this activity.
*
* @return the identifier of the required activity represented in this
* binding. Guaranteed not to be <code>null</code>.
*/
String getRequiredActivityId();
} | normal | CLOSED | FIXED |
{'$oid': '52e9c16c54dc1c25ebdc0f75'} | 62,743 | I am getting an "Internal Error" (ClassCastException) when pressing Ctrl-1 on an
undeclared identifier. In the code snippet below, SAMPLE_SPECIFIC_XML has not
been declared yet (and I was trying to let quick fix do it for me).
public void testContentType() {
IWorkspace workspace = getWorkspace();
IProject project = workspace.getRoot().getProject("MyProject");
try {
ensureExistsInWorkspace(project, true);
IFile file = project.getFile("file.xml");
ensureExistsInWorkspace(file, new
ByteArrayInputStream(SAMPLE_SPECIFIC_XML.getBytes("UTF-8")));
} finally {
ensureDoesNotExistInWorkspace(project);
}
}
!ENTRY org.eclipse.jdt.ui 4 10001 May 18, 2004 14:41:18.916
!MESSAGE Internal Error
!STACK 0
java.lang.ClassCastException
at
org.eclipse.jdt.internal.ui.text.correction.UnresolvedElementsSubProcessor.addSimilarVariableProposals(UnresolvedElementsSubProcessor.java:296)
at
org.eclipse.jdt.internal.ui.text.correction.UnresolvedElementsSubProcessor.getVariableProposals(UnresolvedElementsSubProcessor.java:165)
at
org.eclipse.jdt.internal.ui.text.correction.QuickFixProcessor.process(QuickFixProcessor.java:244)
at
org.eclipse.jdt.internal.ui.text.correction.QuickFixProcessor.getCorrections(QuickFixProcessor.java:202)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionProcessor.collectCorrections(JavaCorrectionProcessor.java:261)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionProcessor.processAnnotations(JavaCorrectionProcessor.java:229)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionProcessor.computeCompletionProposals(JavaCorrectionProcessor.java:198)
at
org.eclipse.jface.text.contentassist.ContentAssistant.computeCompletionProposals(ContentAssistant.java:1457)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup.computeProposals(CompletionProposalPopup.java:244)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$7(CompletionProposalPopup.java:240)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup$1.run(CompletionProposalPopup.java:199)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup.showProposals(CompletionProposalPopup.java:194)
at
org.eclipse.jface.text.contentassist.ContentAssistant.showPossibleCompletions(ContentAssistant.java:1308)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionAssistant.showPossibleCompletions(JavaCorrectionAssistant.java:158)
at
org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$AdaptedSourceViewer.doOperation(CompilationUnitEditor.java:183)
at
org.eclipse.ui.texteditor.TextOperationAction$1.run(TextOperationAction.java:122)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at org.eclipse.ui.texteditor.TextOperationAction.run(TextOperationAction.java:120)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:881)
at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:141)
at org.eclipse.ui.internal.commands.Command.execute(Command.java:132)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:468)
at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:886)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:927)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:545)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:493)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:258)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
at org.eclipse.swt.widgets.Display.filterEvent(Display.java:712)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:795)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805)
at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1724)
at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1720)
at org.eclipse.swt.widgets.Control.WM_KEYDOWN(Control.java:3499)
at org.eclipse.swt.widgets.Control.windowProc(Control.java:2978)
at org.eclipse.swt.widgets.Display.windowProc(Display.java:3282)
at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1475)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2380)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:253)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:97)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:299)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:256)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:127)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621) | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16c54dc1c25ebdc0f76'} | 62,742 | On Win2k and Solaris
On 2.0.0.200405180809
1. Create a Std C++ project
2. Perform some non-CDT changes to the project:
add a reference to another project, or rename the project.
The .project file gets modified with the new content.
3. Perform a CDT-specific change to the project:
change the default build command to "gmake", or enable Automated Discovery.
The .project file does not get modified!
4. Close the project (or the session) and reopen it, and
you will find the old properties.
EXPECTED: Save the .project file when modified. | major | RESOLVED | FIXED |
{'$oid': '52e9c16c54dc1c25ebdc0f77'} | 62,744 | We just found out that the DirectoryDialog
and ColorEditor were not translated into German, which is one of the nine
languages that Eclipse is chosen to be translated into.
It seems that this problem might be related to bug#29764, but we're not sure
the rationale behind it. If it is related to bug#29764, could you please
explain why?
Thank you very much. | normal | RESOLVED | INVALID |
{'$oid': '52e9c16c54dc1c25ebdc0f78'} | 62,745 | I20040518 08:16
No changes have been releaseed to help for a week, but in this build
stand-alone help test logs exceptions
and Infocenter fails to start.
This only appears when running from releng automated test framework, they pass
when running from workspace.
The standalone help that is launched and closed first and the log in the
workspace contains:
!SESSION May 18, 2004 12:41:20.132 --------------------------------------------
-
eclipse.buildId=I200405180816
java.version=1.4.2_03
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
Command-line arguments: -application org.eclipse.help.base.helpApplication
!ENTRY initial@reference:file:d:/eclipse-testing/test-
eclipse/eclipse/plugins/org.eclipse.core.runtime_3.0.0/ 0 0 May 18, 2004
12:41:20.132
!MESSAGE FrameworkEvent.ERROR
!STACK 0
java.util.MissingResourceException: Can't find bundle for base name plugin,
locale en_US
at java.util.ResourceBundle.throwMissingResourceException
(ResourceBundle.java:804)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:773)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:661)
at
org.eclipse.core.internal.runtime.ResourceTranslator.getResourceBundle
(ResourceTranslator.java:68)
at
org.eclipse.core.internal.registry.EclipseBundleListener.getBundleModel
(EclipseBundleListener.java:131)
at org.eclipse.core.internal.registry.EclipseBundleListener.addBundle
(EclipseBundleListener.java:94)
at
org.eclipse.core.internal.registry.EclipseBundleListener.bundleChanged
(EclipseBundleListener.java:64)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent
(BundleContextImpl.java:1151)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at
org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous
(ListenerQueue.java:137)
at
org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged
(Framework.java:1403)
at
org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent
(Framework.java:1354)
at
org.eclipse.osgi.framework.internal.core.PackageAdminImpl.processDelta
(PackageAdminImpl.java:522)
at
org.eclipse.osgi.framework.internal.core.PackageAdminImpl.refreshPackages
(PackageAdminImpl.java:350)
at org.eclipse.osgi.framework.internal.core.PackageAdminImpl$1.run
(PackageAdminImpl.java:319)
at java.lang.Thread.run(Thread.java:534)
!ENTRY initial@reference:file:d:/eclipse-testing/test-
eclipse/eclipse/plugins/org.eclipse.core.runtime_3.0.0/ 0 0 May 18, 2004
12:41:20.543
!MESSAGE FrameworkEvent.ERROR
!STACK 0
java.util.MissingResourceException: Can't find bundle for base name plugin,
locale en_US
at java.util.ResourceBundle.throwMissingResourceException
(ResourceBundle.java:804)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:773)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:661)
at
org.eclipse.core.internal.runtime.ResourceTranslator.getResourceBundle
(ResourceTranslator.java:68)
at
org.eclipse.core.internal.registry.EclipseBundleListener.getBundleModel
(EclipseBundleListener.java:131)
at org.eclipse.core.internal.registry.EclipseBundleListener.addBundle
(EclipseBundleListener.java:94)
at
org.eclipse.core.internal.registry.EclipseBundleListener.bundleChanged
(EclipseBundleListener.java:64)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.dispatchEvent
(BundleContextImpl.java:1151)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at
org.eclipse.osgi.framework.eventmgr.ListenerQueue.dispatchEventSynchronous
(ListenerQueue.java:137)
at
org.eclipse.osgi.framework.internal.core.Framework.publishBundleEventPrivileged
(Framework.java:1403)
at
org.eclipse.osgi.framework.internal.core.Framework.publishBundleEvent
(Framework.java:1354)
at
org.eclipse.osgi.framework.internal.core.PackageAdminImpl.processDelta
(PackageAdminImpl.java:522)
at
org.eclipse.osgi.framework.internal.core.PackageAdminImpl.refreshPackages
(PackageAdminImpl.java:350)
at org.eclipse.osgi.framework.internal.core.PackageAdminImpl$1.run
(PackageAdminImpl.java:319)
at java.lang.Thread.run(Thread.java:534)
The Infocenter is launched after, and fails to launch. The log (in the
configuration directory contains:
!SESSION maj 18, 2004 14:06:52.953 --------------------------------------------
-
eclipse.buildId=unknown
java.version=1.4.2_03
java.vendor=Sun Microsystems Inc.
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=pl_PL
Command-line arguments: -application
org.eclipse.help.base.infocenterApplication -locales en en_CA
!ENTRY initial@reference:file:d:/eclipse-testing/test-
eclipse/eclipse/plugins/org.eclipse.core.runtime_3.0.0/ 0 0 maj 18, 2004
14:06:52.953
!MESSAGE FrameworkEvent.ERROR
!STACK 0
org.osgi.framework.BundleException: Exception in
org.eclipse.core.internal.runtime.PlatformActivator.start() of bundle
org.eclipse.core.runtime.
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:975)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
Caused by: java.util.MissingResourceException: Can't find bundle for base name
plugin, locale pl_PL
at java.util.ResourceBundle.throwMissingResourceException
(ResourceBundle.java:804)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:773)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:661)
at
org.eclipse.core.internal.runtime.ResourceTranslator.getResourceBundle
(ResourceTranslator.java:68)
at
org.eclipse.core.internal.registry.EclipseBundleListener.getBundleModel
(EclipseBundleListener.java:131)
at org.eclipse.core.internal.registry.EclipseBundleListener.addBundle
(EclipseBundleListener.java:94)
at
org.eclipse.core.internal.registry.EclipseBundleListener.processBundles
(EclipseBundleListener.java:75)
at org.eclipse.core.internal.runtime.PlatformActivator.startRegistry
(PlatformActivator.java:134)
at org.eclipse.core.internal.runtime.PlatformActivator.start
(PlatformActivator.java:61)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
... 10 more
Root exception:
java.util.MissingResourceException: Can't find bundle for base name plugin,
locale pl_PL
at java.util.ResourceBundle.throwMissingResourceException
(ResourceBundle.java:804)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:773)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:661)
at
org.eclipse.core.internal.runtime.ResourceTranslator.getResourceBundle
(ResourceTranslator.java:68)
at
org.eclipse.core.internal.registry.EclipseBundleListener.getBundleModel
(EclipseBundleListener.java:131)
at org.eclipse.core.internal.registry.EclipseBundleListener.addBundle
(EclipseBundleListener.java:94)
at
org.eclipse.core.internal.registry.EclipseBundleListener.processBundles
(EclipseBundleListener.java:75)
at org.eclipse.core.internal.runtime.PlatformActivator.startRegistry
(PlatformActivator.java:134)
at org.eclipse.core.internal.runtime.PlatformActivator.start
(PlatformActivator.java:61)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
!ENTRY initial@reference:file:d:/eclipse-testing/test-
eclipse/eclipse/plugins/org.eclipse.update.configurator_3.0.0/ 0 0 maj 18,
2004 14:06:52.983
!MESSAGE FrameworkEvent.ERROR
!STACK 0
org.osgi.framework.BundleException: Exception in
org.eclipse.update.internal.configurator.ConfigurationActivator.start() of
bundle org.eclipse.update.configurator.
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:975)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
Caused by: java.lang.Exception: Cannot initialize the Update Configurator
at
org.eclipse.update.internal.configurator.ConfigurationActivator.initialize
(ConfigurationActivator.java:103)
at
org.eclipse.update.internal.configurator.ConfigurationActivator.start
(ConfigurationActivator.java:70)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
... 10 more
Root exception:
java.lang.Exception: Cannot initialize the Update Configurator
at
org.eclipse.update.internal.configurator.ConfigurationActivator.initialize
(ConfigurationActivator.java:103)
at
org.eclipse.update.internal.configurator.ConfigurationActivator.start
(ConfigurationActivator.java:70)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run
(BundleContextImpl.java:958)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator
(BundleContextImpl.java:954)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start
(BundleContextImpl.java:937)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker
(BundleHost.java:421)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume
(AbstractBundle.java:366)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle
(Framework.java:992)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles
(StartLevelManager.java:572)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL
(StartLevelManager.java:483)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel
(StartLevelManager.java:273)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent
(StartLevelManager.java:443)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent
(EventManager.java:186)
at org.eclipse.osgi.framework.eventmgr.EventThread.run
(EventThread.java:104)
!ENTRY org.eclipse.osgi maj 18, 2004 14:06:52.993
!MESSAGE Startup error
!STACK 1
java.lang.IllegalStateException: Bundle initial@reference:file:d:/eclipse-
testing/test-eclipse/eclipse/plugins/org.eclipse.core.runtime_3.0.0/ [120] is
not active.
at org.eclipse.core.runtime.adaptor.EclipseStarter.ensureBundlesActive
(EclipseStarter.java:286)
at org.eclipse.core.runtime.adaptor.EclipseStarter.startup
(EclipseStarter.java:222)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run
(EclipseStarter.java:125)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621)
The stand-alone help test does not pass any locale, but the infocenter passes -
nl pl_PL to the eclipse when launching.
I am not sure what the problem is, but it looks like locale is influcencing
behavior of the runtime. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16c54dc1c25ebdc0f79'} | 62,746 | We are trying to start a OSGi bundle at eclipse launch by adding the bundle
name to the osgi.bundles property in the eclipse.properties file. We are using
the I20040514 build, we get a Launcher error message " Launching failed because
the following plug-ins are not included in the configuration you are launching.
To fix the problem, go to the 'Plug-ins' tab of this launch configuration and
ensure that the option selected includes these plug-ins: LogService."
This used to work with eclipse M8 build.
It appears that the PDE is verifying the bundles listed in the osgi.bundles
property aganist the plug-ins that are avaliable. We were using this method to
start generic OSGi bundles at eclipse launch.
Is this a known feature? Is there another way to start OSGi bundles. | normal | RESOLVED | WORKSFORME |
{'$oid': '52e9c16c54dc1c25ebdc0f7a'} | 62,747 | 20040518
java.lang.ClassCastException
at
org.eclipse.jdt.internal.ui.text.correction.UnresolvedElementsSubProcessor.addSimilarVariableProposals(UnresolvedElementsSubProcessor.java:296)
at
org.eclipse.jdt.internal.ui.text.correction.UnresolvedElementsSubProcessor.getVariableProposals(UnresolvedElementsSubProcessor.java:165)
at
org.eclipse.jdt.internal.ui.text.correction.QuickFixProcessor.process(QuickFixProcessor.java:244)
at
org.eclipse.jdt.internal.ui.text.correction.QuickFixProcessor.getCorrections(QuickFixProcessor.java:202)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionProcessor.collectCorrections(JavaCorrectionProcessor.java:261)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionProcessor.processAnnotations(JavaCorrectionProcessor.java:229)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionProcessor.computeCompletionProposals(JavaCorrectionProcessor.java:198)
at
org.eclipse.jface.text.contentassist.ContentAssistant.computeCompletionProposals(ContentAssistant.java:1457)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup.computeProposals(CompletionProposalPopup.java:244)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup.access$7(CompletionProposalPopup.java:240)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup$1.run(CompletionProposalPopup.java:199)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup.showProposals(CompletionProposalPopup.java:194)
at
org.eclipse.jface.text.contentassist.ContentAssistant.showPossibleCompletions(ContentAssistant.java:1308)
at
org.eclipse.jdt.internal.ui.text.correction.JavaCorrectionAssistant.showPossibleCompletions(JavaCorrectionAssistant.java:158)
at
org.eclipse.jdt.internal.ui.javaeditor.CompilationUnitEditor$AdaptedSourceViewer.doOperation(CompilationUnitEditor.java:183)
at
org.eclipse.ui.texteditor.TextOperationAction$1.run(TextOperationAction.java:122)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at org.eclipse.ui.texteditor.TextOperationAction.run(TextOperationAction.java:120)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:881)
at org.eclipse.ui.commands.ActionHandler.execute(ActionHandler.java:141)
at org.eclipse.ui.internal.commands.Command.execute(Command.java:132)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.executeCommand(WorkbenchKeyboard.java:468)
at org.eclipse.ui.internal.keys.WorkbenchKeyboard.press(WorkbenchKeyboard.java:886)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.processKeyEvent(WorkbenchKeyboard.java:927)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.filterKeySequenceBindings(WorkbenchKeyboard.java:545)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard.access$2(WorkbenchKeyboard.java:493)
at
org.eclipse.ui.internal.keys.WorkbenchKeyboard$1.handleEvent(WorkbenchKeyboard.java:258)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
at org.eclipse.swt.widgets.Display.filterEvent(Display.java:712)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:795)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:820)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:805)
at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1724)
at org.eclipse.swt.widgets.Control.sendKeyEvent(Control.java:1720)
at org.eclipse.swt.widgets.Control.WM_KEYDOWN(Control.java:3499)
at org.eclipse.swt.widgets.Control.windowProc(Control.java:2978)
at org.eclipse.swt.widgets.Display.windowProc(Display.java:3282)
at org.eclipse.swt.internal.win32.OS.DispatchMessageW(Native Method)
at org.eclipse.swt.internal.win32.OS.DispatchMessage(OS.java:1475)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2380)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:253)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:97)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:299)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:256)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:127)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.eclipse.core.launcher.Main.basicRun(Main.java:184)
at org.eclipse.core.launcher.Main.run(Main.java:637)
at org.eclipse.core.launcher.Main.main(Main.java:621) | normal | VERIFIED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f7b'} | 62,740 | Build id 200405181200
Steps:
- Launch eclipse
- Go to "Window->Preferences"
- Select the "Export" button (bottom left)
- Try to chose a different folder than the one specified to store the ".epf"
file using the "Browse" button
Unless you select a file, it will not let you press "Open". It seems like the
wrong system dialog is being used for this particular instance.
This bug makes the "Export" utility almost unusable on the Mac. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f7d'} | 62,749 | it looks like incoming additions aren't being grouped correctly, and the sorter
isn't considering correctly as a file. They are mixed in with actual commit sets. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f7e'} | 62,750 | Home/back/next buttons remain enabled in standby mode, allowing users to press
them and get unexpected results (pages change while the active part is hidden).
When switching to standby mode, these three actions should be disabled. When
switching to active mode, they should be enabled.
In addition, we should initialize them in the right state when the part is
created depending on the mode. | normal | RESOLVED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f7f'} | 62,751 | build I20040518
- If I open the activity preference page and disabled java but NOT pde
- apply and re-open the page, note that java is enabled again because PDE
requires it..
- there should be some feedback here to indicate that this action has side-
effects etc... | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16d54dc1c25ebdc0f81'} | 62,753 | 20040514
- select '9', extract constant
/*
* (non-Javadoc) Method declared on IAnnotationHover
*/
public void foo() {
final int lineNumber2= 9;
}
---------
-> results in
/*
* (non-Javadoc) Method declared on IAnnotationHover
*/
private static final int CONST = 9;
public void foo() {
final int lineNumber2= CONST;
}
-> should use the ASTRewrite | normal | RESOLVED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f82'} | 62,754 | When converting a local to a field, I nearly always want the field to have a get method, and less often a
setter too.
Be great if the refactoring offered this, instead of me having to separately invoke the Generate Getters/
Setters refactoring, which offers a more complex UI to create get/set for all fields. When I'm converting
a local, it's clear which field I want a get/set for.
Rolling this into one refactoring would save some extra steps. | enhancement | RESOLVED | WONTFIX |
{'$oid': '52e9c16d54dc1c25ebdc0f83'} | 62,756 | 20040514
- In a method that has a Javadoc comment:
- Select an expression in a method and invoke 'Introduce parameter'
- The parameter is added but the method's javadoc is not updated | normal | VERIFIED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f84'} | 62,757 | 20040514
The busyCursorWhile API creates a dialog with no shell. We should see if we
can create it with parent shell if possible. This may not be possible if the
shell gets disposed while we are waiting however so we should be careful. | normal | VERIFIED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f85'} | 62,759 | I20040518
Right click on the perspective switcher and you get a menu that says Dock Left
and Show Text. If you select Doc Left, Eclipse docks the switcher under the
coolbar area and not on the left. I'd rather it docked on the left but that's
covered by bug 58151. So this bugzilla entry only covers the fact that the
menu text is wrong for the current functionality. | trivial | RESOLVED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f86'} | 62,755 | 20040514
- select an expression in a method and invoke 'Introduce parameter'
- The dilaog that shows up
a.) does not have name code assist
b.) the label should say 'Parameter name:' (not 'Parameter Name:') | normal | VERIFIED | FIXED |
{'$oid': '52e9c16d54dc1c25ebdc0f87'} | 62,758 | The javadoc of this method has some unterminated link.
They should be:
* <li>{@link JavaCore#create(IWorkspaceRoot)}</li>
* <li>{@link JavaCore#create(IProject)}</li>
* <li>{@link IJavaModel#getJavaProjects()}</li>
* <li>{@link IJavaProject#getRawClasspath()}</li>
* <li>{@link IJavaProject#readRawClasspath()}</li>
* <li>{@link IJavaProject#getOutputLocation()}</li>
* <li>{@link IJavaProject#readOutputLocation()}</li>
* <li>Java element operations marked as "handle-only"</li>
I will attach a patch for this. | normal | RESOLVED | DUPLICATE |
{'$oid': '52e9c16d54dc1c25ebdc0f88'} | 62,760 | The eclipse junit tests currently start eclipse from the java executable
directly. They should be started through the eclipse launcher directly.
Note that the Eclipse launcher does a few extra things like:
- set up the LD_LIBRARY_PATH/MOZILLA_FIVE_HOME variables for the SWT Browser
widget as documented in SWT FAQ. Junit tests for SWT fail as a result on Linux
GTK.
SWT junit tests for GTK now disabled until PR closed. | normal | RESOLVED | FIXED |