3 Replies Latest reply on Sep 21, 2011 4:52 PM by ufasoli

    Jboss Tools 3.3M3 @ManagedBeans Content Assist

    ufasoli

      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