HuiSheng Xu [http://community.jboss.org/people/rebody] replied to the discussion
"How to add your own EL Resolver"
To view the discussion, visit: http://community.jboss.org/message/549594#549594
--------------------------------------------------------------
Hi Jochen,
Now, there is no extension entry for doing that. if you want to add an addition elResovler, you have to re-write org.jbpm.pvm.internal.script.JuelScriptEngine. There is a method named makeResovler().
private ELResolver makeResolver()
{
CompositeELResolver chain = new CompositeELResolver();
chain.add(new ArrayELResolver());
chain.add(new ListELResolver());
chain.add(new MapELResolver());
chain.add(new ResourceBundleELResolver());
chain.add(new BeanELResolver());
return new SimpleResolver(chain);
}
Add whatever you want to.
Good Luck.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/549594#549594]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
Vadim Berezniker [http://community.jboss.org/people/laixer] replied to the discussion
"xhtml code assist performance"
To view the discussion, visit: http://community.jboss.org/message/549592#549592
--------------------------------------------------------------
Yes, build automatically is always on. I don't think the builders get run when I first open Eclipse unless I use 'Refresh' on the project.
Not sure if it helps, but I have attached the builders configuration for this project.
It's not that big of a deal for me since getting it to work is very easy, but it might be confusing for new users if they hit the same problem...
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/549592#549592]
Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
Victor Rubezhny [http://community.jboss.org/people/vrubezhny] replied to the discussion
"xhtml code assist performance"
To view the discussion, visit: http://community.jboss.org/message/549590#549590
--------------------------------------------------------------
It is required that projects to be built to have Seam components in CA. But it seems that the build was not performed for your projects. Refresh action may invoke the builders.
So, is Project->Build Automatically Option turned ON for your projects? And if so, have the builder jobs finished their work before you call the CA?
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/549590#549590]
Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
Vadim Berezniker [http://community.jboss.org/people/laixer] replied to the discussion
"xhtml code assist performance"
To view the discussion, visit: http://community.jboss.org/message/549587#549587
--------------------------------------------------------------
I just gave it a quick test and it works great! Code assist performance is definitely better now.
I noticed another problem (which may have been present in earlier version too).
If I close and open Eclipse, open a file and try to perform Code Assist, I don't see any Seam components in the list.
I have to right click on the project and click refresh for them to show up.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/549587#549587]
Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]