java - How to edit a content assist behavior in eclipse -


is there way edit content behavior or there plugin following ... ?

i have jsf project

the content assistant completes phrases attributes has getters/setters methods

@managedbean(name = "mybean") @viewscoped public class viewscopedbean {      string name;     string age;      public viewscopedbean() {      }     public string method() {         return null;     }     public string getname() {         return name;     }      public void setname(string name) {         this.name = name;     }  } 

using ctrl+space in <h:commandbutton value="action listener" actionlistener="#{mybean.<ctrl+space>}" /> shows methods , name attribute, there away make show age attribute ?


Comments

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -