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
Post a Comment