JBoss Community

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

created by Torsten Knopp in JBoss Tools - View the full discussion

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

Start a new discussion in JBoss Tools at Community