Torsten Knopp [http://community.jboss.org/people/TorstenKnopp] created the 
discussion

"Re: Code assist in JBoss Tool HTML Editor for EL in XHTML"

To view the discussion, visit: http://community.jboss.org/message/623984#623984

--------------------------------------------------------------
Thanks.

I changed my managedBean to CDI, but still no code assist!

here is my new bean:

import javax.enterprise.context.RequestScoped;
import javax.inject.Named;

/*
 * customer profile
 */
@Named
@RequestScoped
public class Customer {
    private String firstName;
    private String lastName;

    public String getFirstName() {
        return firstName;
    }
     public void setFirstName(String firstName) {
        this.firstName = firstName;
    }
     public String getLastName() {
        return lastName;
    }
     public void setLastName(String lastName) {
        this.lastName = lastName;
    }
     public String save() {
        return "/showCustomer.xhtml";
    }
--------------------------------------------------------------

Reply to this message by going to Community
[http://community.jboss.org/message/623984#623984]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2128]

_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to