Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse Platform » AutoAssist & Jar problem
AutoAssist & Jar problem [message #328958] Mon, 09 June 2008 11:09 Go to next message
Eclipse UserFriend
Originally posted by: j4r0d.hotmail.com

Hello,

I have created an EMF/GEF based editor which uses a CompilationUnitEditor.
Then I have generated (exported) the eclipse for my end users. Those end
users will be using both my plugin and the eclipse jdt.
This environment comes with a jar (java library) which is useful for the end
user.

The problem is that the auto completion assistant is not working really well
on both my editor and the jdt when I am doing some requests with my jar
file. When I am asking for the completion proposal I get the drop list, but
it does not contain all the possibility, worst, some entries are just left
blank! When I press enter on one entry, somtimes I get the "Problems during
content assist" message claming that "the
org.eclipse.jdt.ui.JavaNoTypeCompletionProposalComputer did not complete
normally and the extension has thrown a runtime exception". You can also see
the associated stack trace at the end of this post.

As I am responsible for this jar file, I've tried to improve and implement
all the possible javadoc tags (I don't know what better to do, since it's
just some piece of java code). But the problem remains... I have no clue how
I can fix this problem. I don't think that the plugin is linked to this bug,
because I get exactly the same behavior with the jdt. Then the question is
just maybe, what am I missing in my jar file so the auto-assist completion
cannot work properly?

Do you have any ideas on this?

Thanks in advance.

J.



Exception in thread "AutoAssist Delay" org.eclipse.swt.SWTException: Failed
to execute runnable (java.lang.ArrayIndexOutOfBoundsException: 1)
at org.eclipse.swt.SWT.error(SWT.java:3374)
at org.eclipse.swt.SWT.error(SWT.java:3297)
at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.j ava:178)
at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchroniz er.java:28)
at org.eclipse.swt.widgets.Display.syncExec(Display.java:3763)
at
org.eclipse.jface.text.contentassist.ContentAssistant$AutoAs sistListener.showAssist(ContentAssistant.java:336)
at
org.eclipse.jface.text.contentassist.ContentAssistant$AutoAs sistListener.run(ContentAssistant.java:252)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.ArrayIndexOutOfBoundsException: 1
at
org.eclipse.jdt.internal.codeassist.InternalCompletionPropos al.findMethodParameterNames(InternalCompletionProposal.java: 122)
at
org.eclipse.jdt.core.CompletionProposal.findParameterNames(C ompletionProposal.java:1608)
at
org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .appendUnboundedParameterList(CompletionProposalLabelProvide r.java:88)
at
org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .createMethodProposalLabel(CompletionProposalLabelProvider.j ava:184)
at
org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .createLabel(CompletionProposalLabelProvider.java:424)
at
org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProp osal.computeDisplayString(LazyJavaCompletionProposal.java:22 9)
at
org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProp osal.getDisplayString(LazyJavaCompletionProposal.java:219)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup .handleSetData(CompletionProposalPopup.java:687)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup .access$24(CompletionProposalPopup.java:680)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup $3.handleEvent(CompletionProposalPopup.java:499)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :66)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:937)
at org.eclipse.swt.widgets.Table.checkData(Table.java:624)
at org.eclipse.swt.widgets.Table.wmNotifyChild(Table.java:5317)
at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:3794)
at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java:1 166)
at org.eclipse.swt.widgets.Control.windowProc(Control.java:3298 )
at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.j ava:1539)
at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634)
at org.eclipse.swt.widgets.Display.windowProc(Display.java:4025 )
at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method)
at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:185 1)
at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:255)
at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183)
at org.eclipse.swt.widgets.Control.windowProc(Control.java:3334 )
at org.eclipse.swt.widgets.Table.windowProc(Table.java:4534)
at org.eclipse.swt.widgets.Display.windowProc(Display.java:4025 )
at org.eclipse.swt.internal.win32.OS.UpdateWindow(Native Method)
at org.eclipse.swt.widgets.Decorations.setVisible(Decorations.j ava:1348)
at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1481)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup .displayProposals(CompletionProposalPopup.java:1028)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup .access$23(CompletionProposalPopup.java:993)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup $2.run(CompletionProposalPopup.java:417)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:67)
at
org.eclipse.jface.text.contentassist.CompletionProposalPopup .showProposals(CompletionProposalPopup.java:399)
at
org.eclipse.jface.text.contentassist.ContentAssistant$2.run( ContentAssistant.java:347)
at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:3 5)
at
org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchr onizer.java:123)
at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.jav a:3325)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2971)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1930)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
at
org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:422)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:149)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:95)
at
org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:78)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .runApplication(EclipseAppLauncher.java:92)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .start(EclipseAppLauncher.java:68)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:400)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:177)
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.invokeFramework(Main.java:336 )
at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
at org.eclipse.core.launcher.Main.run(Main.java:977)
at org.eclipse.core.launcher.Main.main(Main.java:952)
Re: AutoAssist & Jar problem [message #328972 is a reply to message #328958] Mon, 09 June 2008 16:24 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: j4r0d.hotmail.com

The Javadoc is not generated properly. Possible version incompatibility...

I have changed the buildpath of the project so the assistant is using the
jar file rather than the javadoc. The problem has disappeared.


"Jarod Mills" <j4r0d@hotmail.com> wrote in message
news:g2j3c0$su3$1@build.eclipse.org...
> Hello,
>
> I have created an EMF/GEF based editor which uses a CompilationUnitEditor.
> Then I have generated (exported) the eclipse for my end users. Those end
> users will be using both my plugin and the eclipse jdt.
> This environment comes with a jar (java library) which is useful for the
> end user.
>
> The problem is that the auto completion assistant is not working really
> well on both my editor and the jdt when I am doing some requests with my
> jar file. When I am asking for the completion proposal I get the drop
> list, but it does not contain all the possibility, worst, some entries are
> just left blank! When I press enter on one entry, somtimes I get the
> "Problems during content assist" message claming that "the
> org.eclipse.jdt.ui.JavaNoTypeCompletionProposalComputer did not complete
> normally and the extension has thrown a runtime exception". You can also
> see the associated stack trace at the end of this post.
>
> As I am responsible for this jar file, I've tried to improve and implement
> all the possible javadoc tags (I don't know what better to do, since it's
> just some piece of java code). But the problem remains... I have no clue
> how I can fix this problem. I don't think that the plugin is linked to
> this bug, because I get exactly the same behavior with the jdt. Then the
> question is just maybe, what am I missing in my jar file so the
> auto-assist completion cannot work properly?
>
> Do you have any ideas on this?
>
> Thanks in advance.
>
> J.
>
>
>
> Exception in thread "AutoAssist Delay" org.eclipse.swt.SWTException:
> Failed to execute runnable (java.lang.ArrayIndexOutOfBoundsException: 1)
> at org.eclipse.swt.SWT.error(SWT.java:3374)
> at org.eclipse.swt.SWT.error(SWT.java:3297)
> at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.j ava:178)
> at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchroniz er.java:28)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:3763)
> at
> org.eclipse.jface.text.contentassist.ContentAssistant$AutoAs sistListener.showAssist(ContentAssistant.java:336)
> at
> org.eclipse.jface.text.contentassist.ContentAssistant$AutoAs sistListener.run(ContentAssistant.java:252)
> at java.lang.Thread.run(Unknown Source)
> Caused by: java.lang.ArrayIndexOutOfBoundsException: 1
> at
> org.eclipse.jdt.internal.codeassist.InternalCompletionPropos al.findMethodParameterNames(InternalCompletionProposal.java: 122)
> at
> org.eclipse.jdt.core.CompletionProposal.findParameterNames(C ompletionProposal.java:1608)
> at
> org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .appendUnboundedParameterList(CompletionProposalLabelProvide r.java:88)
> at
> org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .createMethodProposalLabel(CompletionProposalLabelProvider.j ava:184)
> at
> org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .createLabel(CompletionProposalLabelProvider.java:424)
> at
> org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProp osal.computeDisplayString(LazyJavaCompletionProposal.java:22 9)
> at
> org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProp osal.getDisplayString(LazyJavaCompletionProposal.java:219)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .handleSetData(CompletionProposalPopup.java:687)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .access$24(CompletionProposalPopup.java:680)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup $3.handleEvent(CompletionProposalPopup.java:499)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :66)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:937)
> at org.eclipse.swt.widgets.Table.checkData(Table.java:624)
> at org.eclipse.swt.widgets.Table.wmNotifyChild(Table.java:5317)
> at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:3794)
> at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java:1 166)
> at org.eclipse.swt.widgets.Control.windowProc(Control.java:3298 )
> at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.j ava:1539)
> at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634)
> at org.eclipse.swt.widgets.Display.windowProc(Display.java:4025 )
> at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method)
> at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:185 1)
> at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:255)
> at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183)
> at org.eclipse.swt.widgets.Control.windowProc(Control.java:3334 )
> at org.eclipse.swt.widgets.Table.windowProc(Table.java:4534)
> at org.eclipse.swt.widgets.Display.windowProc(Display.java:4025 )
> at org.eclipse.swt.internal.win32.OS.UpdateWindow(Native Method)
> at org.eclipse.swt.widgets.Decorations.setVisible(Decorations.j ava:1348)
> at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1481)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .displayProposals(CompletionProposalPopup.java:1028)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .access$23(CompletionProposalPopup.java:993)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup $2.run(CompletionProposalPopup.java:417)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:67)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .showProposals(CompletionProposalPopup.java:399)
> at
> org.eclipse.jface.text.contentassist.ContentAssistant$2.run( ContentAssistant.java:347)
> at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:3 5)
> at
> org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchr onizer.java:123)
> at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.jav a:3325)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2971)
> at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1930)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
> at
> org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:422)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:149)
> at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:95)
> at
> org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:78)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .runApplication(EclipseAppLauncher.java:92)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .start(EclipseAppLauncher.java:68)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:400)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:177)
> 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.invokeFramework(Main.java:336 )
> at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
> at org.eclipse.core.launcher.Main.run(Main.java:977)
> at org.eclipse.core.launcher.Main.main(Main.java:952)
>
Re: AutoAssist & Jar problem [message #329084 is a reply to message #328958] Thu, 12 June 2008 09:30 Go to previous message
Dani Megert is currently offline Dani MegertFriend
Messages: 3802
Registered: July 2009
Senior Member
Jarod Mills wrote:
> Hello,
>
> I have created an EMF/GEF based editor which uses a CompilationUnitEditor.
> Then I have generated (exported) the eclipse for my end users. Those end
> users will be using both my plugin and the eclipse jdt.
> This environment comes with a jar (java library) which is useful for the end
> user.
>
> The problem is that the auto completion assistant is not working really well
> on both my editor and the jdt when I am doing some requests with my jar
> file. When I am asking for the completion proposal I get the drop list, but
> it does not contain all the possibility, worst, some entries are just left
> blank! When I press enter on one entry, somtimes I get the "Problems during
> content assist" message claming that "the
> org.eclipse.jdt.ui.JavaNoTypeCompletionProposalComputer did not complete
> normally and the extension has thrown a runtime exception". You can also see
> the associated stack trace at the end of this post.
>
See https://bugs.eclipse.org/bugs/show_bug.cgi?id=221723

Dani
> As I am responsible for this jar file, I've tried to improve and implement
> all the possible javadoc tags (I don't know what better to do, since it's
> just some piece of java code). But the problem remains... I have no clue how
> I can fix this problem. I don't think that the plugin is linked to this bug,
> because I get exactly the same behavior with the jdt. Then the question is
> just maybe, what am I missing in my jar file so the auto-assist completion
> cannot work properly?
>
> Do you have any ideas on this?
>
> Thanks in advance.
>
> J.
>
>
>
> Exception in thread "AutoAssist Delay" org.eclipse.swt.SWTException: Failed
> to execute runnable (java.lang.ArrayIndexOutOfBoundsException: 1)
> at org.eclipse.swt.SWT.error(SWT.java:3374)
> at org.eclipse.swt.SWT.error(SWT.java:3297)
> at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.j ava:178)
> at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchroniz er.java:28)
> at org.eclipse.swt.widgets.Display.syncExec(Display.java:3763)
> at
> org.eclipse.jface.text.contentassist.ContentAssistant$AutoAs sistListener.showAssist(ContentAssistant.java:336)
> at
> org.eclipse.jface.text.contentassist.ContentAssistant$AutoAs sistListener.run(ContentAssistant.java:252)
> at java.lang.Thread.run(Unknown Source)
> Caused by: java.lang.ArrayIndexOutOfBoundsException: 1
> at
> org.eclipse.jdt.internal.codeassist.InternalCompletionPropos al.findMethodParameterNames(InternalCompletionProposal.java: 122)
> at
> org.eclipse.jdt.core.CompletionProposal.findParameterNames(C ompletionProposal.java:1608)
> at
> org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .appendUnboundedParameterList(CompletionProposalLabelProvide r.java:88)
> at
> org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .createMethodProposalLabel(CompletionProposalLabelProvider.j ava:184)
> at
> org.eclipse.jdt.ui.text.java.CompletionProposalLabelProvider .createLabel(CompletionProposalLabelProvider.java:424)
> at
> org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProp osal.computeDisplayString(LazyJavaCompletionProposal.java:22 9)
> at
> org.eclipse.jdt.internal.ui.text.java.LazyJavaCompletionProp osal.getDisplayString(LazyJavaCompletionProposal.java:219)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .handleSetData(CompletionProposalPopup.java:687)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .access$24(CompletionProposalPopup.java:680)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup $3.handleEvent(CompletionProposalPopup.java:499)
> at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java :66)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952)
> at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:937)
> at org.eclipse.swt.widgets.Table.checkData(Table.java:624)
> at org.eclipse.swt.widgets.Table.wmNotifyChild(Table.java:5317)
> at org.eclipse.swt.widgets.Control.WM_NOTIFY(Control.java:3794)
> at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java:1 166)
> at org.eclipse.swt.widgets.Control.windowProc(Control.java:3298 )
> at org.eclipse.swt.widgets.Decorations.windowProc(Decorations.j ava:1539)
> at org.eclipse.swt.widgets.Shell.windowProc(Shell.java:1634)
> at org.eclipse.swt.widgets.Display.windowProc(Display.java:4025 )
> at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native Method)
> at org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:185 1)
> at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:255)
> at org.eclipse.swt.widgets.Table.callWindowProc(Table.java:183)
> at org.eclipse.swt.widgets.Control.windowProc(Control.java:3334 )
> at org.eclipse.swt.widgets.Table.windowProc(Table.java:4534)
> at org.eclipse.swt.widgets.Display.windowProc(Display.java:4025 )
> at org.eclipse.swt.internal.win32.OS.UpdateWindow(Native Method)
> at org.eclipse.swt.widgets.Decorations.setVisible(Decorations.j ava:1348)
> at org.eclipse.swt.widgets.Shell.setVisible(Shell.java:1481)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .displayProposals(CompletionProposalPopup.java:1028)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .access$23(CompletionProposalPopup.java:993)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup $2.run(CompletionProposalPopup.java:417)
> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator .java:67)
> at
> org.eclipse.jface.text.contentassist.CompletionProposalPopup .showProposals(CompletionProposalPopup.java:399)
> at
> org.eclipse.jface.text.contentassist.ContentAssistant$2.run( ContentAssistant.java:347)
> at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:3 5)
> at
> org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchr onizer.java:123)
> at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.jav a:3325)
> at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java :2971)
> at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.jav a:1930)
> at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
> at
> org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Work bench.java:422)
> at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.j ava:149)
> at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplicatio n.java:95)
> at
> org.eclipse.core.internal.runtime.PlatformActivator$1.run(Pl atformActivator.java:78)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .runApplication(EclipseAppLauncher.java:92)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .start(EclipseAppLauncher.java:68)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:400)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:177)
> 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.invokeFramework(Main.java:336 )
> at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
> at org.eclipse.core.launcher.Main.run(Main.java:977)
> at org.eclipse.core.launcher.Main.main(Main.java:952)
>
>
>
Previous Topic:Select editor to open by file inspection
Next Topic:NoClassDefFound with contributed ant task
Goto Forum:
  


Current Time: Sat Jul 27 17:15:22 GMT 2024

Powered by FUDForum. Page generated in 0.02693 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top