Hi,
I've just installed the latest version of the Jboss Tools plugin for eclipse, and wanted to try out the content assist for annotated managed beans @ManagedBean.
Weird thing is it only works if I use the attribute name the managed bean explicitly (using the name attribute of the @ManagedBean annotation)
this works:
{code}
@ManagedBean(name="myBean")
@SessionScoped
public class MyBean {
private String msg
}
{code}
this doesn't
{code}
@ManagedBean
@SessionScoped
public class MyBean {
private String msg
}
{code}
is this normal?
thanks in advance