Has anyone here tried to build the jbpm ide plugin from the code base? I've gotten the source for the jbpm.ide project from cvs with version jbpm_gpd_3_0_9_2. But when I try to deploy the plugin it gives errors in eclipse like "Unable to create editor ID org.jbpm.ui.editor.DesignerEditor: No editor descriptor for id org.jbpm.ui.editor.DesignerEditor". I was wondering if anyone here can point me in the right direction.
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4020843#4020843
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4020843
The value stored in JNDI is an object - a proxy object that implements the interfaces you define.
So...no, you can't pull out an object that only implements one of the interfaces you've defined.
However, you should be casting the proxy from JNDI into the interface you want...
Interface1 myBean = (Interface1)PortableRemoteObject.narrow(
| new InitialContext(props).lookup("address"),
| Interface1.class);
...and that way, you'll have compile-time constraints to only invoke operations defined by Interface1.
(Code above only for remote lookup; local can skip the "PortableRemoteObject.narrow()) step)
S,
ALR
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4020840#4020840
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4020840