[jboss-user] [JBoss Tools] - Re: Code assist in JBoss Tool HTML Editor for EL in XHTML

Torsten Knopp do-not-reply at jboss.com
Wed Aug 31 07:36:08 EDT 2011


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]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20110831/ec2f7819/attachment.html 


More information about the jboss-user mailing list