Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse 4 » ECommandService injection Exception when requested in a Processor
ECommandService injection Exception when requested in a Processor [message #1036569] Mon, 08 April 2013 14:54 Go to next message
Christophe Bouhier is currently offline Christophe BouhierFriend
Messages: 937
Registered: July 2009
Senior Member
Hello,

I am trying to inject the ECommandService in a Processor.
It throws an Exception. Do I need to do anything special?




Processor Declaration:
-----------8<---------------------

<extension
id="id2"
point="org.eclipse.e4.workbench.model">
<fragment
uri="xmi/ide_fragment.e4xmi">
</fragment>
<processor
beforefragment="false"

class="org.eclipse.emf.examples.extlibrary.presentation.EditorContributionProcessor">
<element
id="org.eclipse.emf.examples.library.e4editor.menu.emf">
</element>
</processor>
</extension>



Processor Class:
-----------8<------------------------
@SuppressWarnings("restriction")
public class EditorContributionProcessor {

private static final String VALIDATE_COMMAND =
"org.eclipse.e4mf.edit.ui.command.validateCommand";

@Inject
@Named("org.eclipse.emf.examples.library.e4editor.menu.emf")
private MMenu emfMenu;

@Inject
ECommandService commandService;

@Execute
public void execute() {

{
// // Get the commands.
// Command validateCommand = commandService
// .getCommand(VALIDATE_COMMAND);

ParameterizedCommand validateCommand = commandService
.createCommand(VALIDATE_COMMAND, null);

MHandledMenuItem validateMenuItem = MMenuFactory.INSTANCE
.createHandledMenuItem();
validateMenuItem.setWbCommand(validateCommand);
emfMenu.getChildren().add(validateMenuItem);
}

}
}


Exception:
-----------8<---------------------

!ENTRY org.eclipse.e4.ui.workbench 4 0 2013-04-08 16:49:17.173
!MESSAGE Unable to create class
'org.eclipse.emf.examples.extlibrary.presentation.EditorContributionProcessor'
from bundle '72'
!STACK 0
org.eclipse.e4.core.di.InjectionException: Unable to process
"EditorContributionProcessor.commandService": no actual value was found
for the argument "ECommandService".
at
org.eclipse.e4.core.internal.di.InjectorImpl.reportUnresolvedArgument(InjectorImpl.java:396)
at
org.eclipse.e4.core.internal.di.InjectorImpl.resolveRequestorArgs(InjectorImpl.java:387)
at
org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:102)
at
org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:321)
at org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:255)
at
org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:186)
at
org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:105)
at
org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71)
at
org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49)
at
org.eclipse.e4.ui.internal.workbench.ModelAssembler.runProcessor(ModelAssembler.java:224)
at
org.eclipse.e4.ui.internal.workbench.ModelAssembler.processModel(ModelAssembler.java:191)
at
org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:213)
at
org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:389)
at
org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:238)
at
org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:144)
at
org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
at org.eclipse.equinox.launcher.Main.main(Main.java:1426)

!ENTRY org.eclipse.e4.ui.workbench 2 0 2013-04-08 16:49:17.175
!MESSAGE Could not run processor
!STACK 0
java.lang.NullPointerException
at
org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:208)
at
org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:107)
at
org.eclipse.e4.ui.internal.workbench.ModelAssembler.runProcessor(ModelAssembler.java:226)
at
org.eclipse.e4.ui.internal.workbench.ModelAssembler.processModel(ModelAssembler.java:191)
at
org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:213)
at
org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:389)
at
org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:238)
at
org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:144)
at
org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
Re: ECommandService injection Exception when requested in a Processor [message #1036661 is a reply to message #1036569] Mon, 08 April 2013 17:07 Go to previous messageGo to next message
Thomas Schindl is currently offline Thomas SchindlFriend
Messages: 6651
Registered: July 2009
Senior Member
IIRC the command service is created through an Addon so it is not there
when processor are running!

Tom

On 08.04.13 16:54, Christophe Bouhier wrote:
> Hello,
>
> I am trying to inject the ECommandService in a Processor.
> It throws an Exception. Do I need to do anything special?
>
>
>
>
> Processor Declaration:
> -----------8<---------------------
>
> <extension
> id="id2"
> point="org.eclipse.e4.workbench.model">
> <fragment
> uri="xmi/ide_fragment.e4xmi">
> </fragment>
> <processor
> beforefragment="false"
>
> class="org.eclipse.emf.examples.extlibrary.presentation.EditorContributionProcessor">
>
> <element
> id="org.eclipse.emf.examples.library.e4editor.menu.emf">
> </element>
> </processor>
> </extension>
>
>
>
> Processor Class:
> -----------8<------------------------
> @SuppressWarnings("restriction")
> public class EditorContributionProcessor {
>
> private static final String VALIDATE_COMMAND =
> "org.eclipse.e4mf.edit.ui.command.validateCommand";
>
> @Inject
> @Named("org.eclipse.emf.examples.library.e4editor.menu.emf")
> private MMenu emfMenu;
>
> @Inject
> ECommandService commandService;
>
> @Execute
> public void execute() {
>
> {
> // // Get the commands.
> // Command validateCommand = commandService
> // .getCommand(VALIDATE_COMMAND);
>
> ParameterizedCommand validateCommand = commandService
> .createCommand(VALIDATE_COMMAND, null);
>
> MHandledMenuItem validateMenuItem = MMenuFactory.INSTANCE
> .createHandledMenuItem();
> validateMenuItem.setWbCommand(validateCommand);
> emfMenu.getChildren().add(validateMenuItem);
> }
>
> }
> }
>
>
> Exception:
> -----------8<---------------------
>
> !ENTRY org.eclipse.e4.ui.workbench 4 0 2013-04-08 16:49:17.173
> !MESSAGE Unable to create class
> 'org.eclipse.emf.examples.extlibrary.presentation.EditorContributionProcessor'
> from bundle '72'
> !STACK 0
> org.eclipse.e4.core.di.InjectionException: Unable to process
> "EditorContributionProcessor.commandService": no actual value was found
> for the argument "ECommandService".
> at
> org.eclipse.e4.core.internal.di.InjectorImpl.reportUnresolvedArgument(InjectorImpl.java:396)
>
> at
> org.eclipse.e4.core.internal.di.InjectorImpl.resolveRequestorArgs(InjectorImpl.java:387)
>
> at
> org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:102)
> at
> org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:321)
>
> at
> org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:255)
> at
> org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:186)
>
> at
> org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:105)
>
> at
> org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71)
>
> at
> org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49)
>
> at
> org.eclipse.e4.ui.internal.workbench.ModelAssembler.runProcessor(ModelAssembler.java:224)
>
> at
> org.eclipse.e4.ui.internal.workbench.ModelAssembler.processModel(ModelAssembler.java:191)
>
> at
> org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:213)
>
> at
> org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:389)
>
> at
> org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:238)
>
> at
> org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:144)
>
> at
> org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
>
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
>
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
>
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
>
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
>
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
>
> !ENTRY org.eclipse.e4.ui.workbench 2 0 2013-04-08 16:49:17.175
> !MESSAGE Could not run processor
> !STACK 0
> java.lang.NullPointerException
> at
> org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:208)
> at
> org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:107)
>
> at
> org.eclipse.e4.ui.internal.workbench.ModelAssembler.runProcessor(ModelAssembler.java:226)
>
> at
> org.eclipse.e4.ui.internal.workbench.ModelAssembler.processModel(ModelAssembler.java:191)
>
> at
> org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:213)
>
> at
> org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:389)
>
> at
> org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:238)
>
> at
> org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:144)
>
> at
> org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
>
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
>
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
>
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
>
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
>
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>
> at java.lang.reflect.Method.invoke(Method.java:597)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
Re: ECommandService injection Exception when requested in a Processor [message #1036750 is a reply to message #1036661] Mon, 08 April 2013 19:11 Go to previous message
Christophe Bouhier is currently offline Christophe BouhierFriend
Messages: 937
Registered: July 2009
Senior Member
On 08-04-13 19:07, Tom Schindl wrote:
> IIRC the command service is created through an Addon so it is not there
> when processor are running!
>
Thanks Tom, that explains it :-)

> Tom
>
> On 08.04.13 16:54, Christophe Bouhier wrote:
>> Hello,
>>
>> I am trying to inject the ECommandService in a Processor.
>> It throws an Exception. Do I need to do anything special?
>>
>>
>>
>>
>> Processor Declaration:
>> -----------8<---------------------
>>
>> <extension
>> id="id2"
>> point="org.eclipse.e4.workbench.model">
>> <fragment
>> uri="xmi/ide_fragment.e4xmi">
>> </fragment>
>> <processor
>> beforefragment="false"
>>
>> class="org.eclipse.emf.examples.extlibrary.presentation.EditorContributionProcessor">
>>
>>
>> <element
>> id="org.eclipse.emf.examples.library.e4editor.menu.emf">
>> </element>
>> </processor>
>> </extension>
>>
>>
>>
>> Processor Class:
>> -----------8<------------------------
>> @SuppressWarnings("restriction")
>> public class EditorContributionProcessor {
>>
>> private static final String VALIDATE_COMMAND =
>> "org.eclipse.e4mf.edit.ui.command.validateCommand";
>>
>> @Inject
>> @Named("org.eclipse.emf.examples.library.e4editor.menu.emf")
>> private MMenu emfMenu;
>>
>> @Inject
>> ECommandService commandService;
>>
>> @Execute
>> public void execute() {
>>
>> {
>> // // Get the commands.
>> // Command validateCommand = commandService
>> // .getCommand(VALIDATE_COMMAND);
>>
>> ParameterizedCommand validateCommand = commandService
>> .createCommand(VALIDATE_COMMAND, null);
>>
>> MHandledMenuItem validateMenuItem = MMenuFactory.INSTANCE
>> .createHandledMenuItem();
>> validateMenuItem.setWbCommand(validateCommand);
>> emfMenu.getChildren().add(validateMenuItem);
>> }
>>
>> }
>> }
>>
>>
>> Exception:
>> -----------8<---------------------
>>
>> !ENTRY org.eclipse.e4.ui.workbench 4 0 2013-04-08 16:49:17.173
>> !MESSAGE Unable to create class
>> 'org.eclipse.emf.examples.extlibrary.presentation.EditorContributionProcessor'
>>
>> from bundle '72'
>> !STACK 0
>> org.eclipse.e4.core.di.InjectionException: Unable to process
>> "EditorContributionProcessor.commandService": no actual value was found
>> for the argument "ECommandService".
>> at
>> org.eclipse.e4.core.internal.di.InjectorImpl.reportUnresolvedArgument(InjectorImpl.java:396)
>>
>>
>> at
>> org.eclipse.e4.core.internal.di.InjectorImpl.resolveRequestorArgs(InjectorImpl.java:387)
>>
>>
>> at
>> org.eclipse.e4.core.internal.di.InjectorImpl.inject(InjectorImpl.java:102)
>>
>> at
>> org.eclipse.e4.core.internal.di.InjectorImpl.internalMake(InjectorImpl.java:321)
>>
>>
>> at
>> org.eclipse.e4.core.internal.di.InjectorImpl.make(InjectorImpl.java:255)
>> at
>> org.eclipse.e4.core.contexts.ContextInjectionFactory.make(ContextInjectionFactory.java:186)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.createFromBundle(ReflectionContributionFactory.java:105)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.doCreate(ReflectionContributionFactory.java:71)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ReflectionContributionFactory.create(ReflectionContributionFactory.java:49)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ModelAssembler.runProcessor(ModelAssembler.java:224)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ModelAssembler.processModel(ModelAssembler.java:191)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:213)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:389)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:238)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:144)
>>
>>
>> at
>> org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
>>
>>
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
>>
>>
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
>>
>>
>> at
>> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
>>
>>
>> at
>> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
>>
>>
>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>> at
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>>
>>
>> at
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>>
>>
>> at java.lang.reflect.Method.invoke(Method.java:597)
>> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
>> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
>> at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
>> at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
>>
>> !ENTRY org.eclipse.e4.ui.workbench 2 0 2013-04-08 16:49:17.175
>> !MESSAGE Could not run processor
>> !STACK 0
>> java.lang.NullPointerException
>> at
>> org.eclipse.e4.core.internal.di.InjectorImpl.invoke(InjectorImpl.java:208)
>>
>> at
>> org.eclipse.e4.core.contexts.ContextInjectionFactory.invoke(ContextInjectionFactory.java:107)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ModelAssembler.runProcessor(ModelAssembler.java:226)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ModelAssembler.processModel(ModelAssembler.java:191)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.ResourceHandler.loadMostRecentModel(ResourceHandler.java:213)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.swt.E4Application.loadApplicationModel(E4Application.java:389)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.swt.E4Application.createE4Workbench(E4Application.java:238)
>>
>>
>> at
>> org.eclipse.e4.ui.internal.workbench.swt.E4Application.start(E4Application.java:144)
>>
>>
>> at
>> org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
>>
>>
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
>>
>>
>> at
>> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
>>
>>
>> at
>> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:354)
>>
>>
>> at
>> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
>>
>>
>> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>> at
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>>
>>
>> at
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>>
>>
>> at java.lang.reflect.Method.invoke(Method.java:597)
>> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
>> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
>> at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
>> at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
>
Previous Topic:Add Icon to Part in PartStack Container
Next Topic:Menu contributions to e4 IDE, insertion ID's fixed?
Goto Forum:
  


Current Time: Thu Mar 28 12:51:45 GMT 2024

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

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

Back to the top