[jbosstools-issues] [JBoss JIRA] Created: (JBIDE-2012) The jsp/xhtml editor does not give content assist if the properties are inherited

Adrian Mitev (JIRA) jira-events at lists.jboss.org
Sat Apr 5 15:36:21 EDT 2008


The jsp/xhtml editor does not give content assist if the properties  are inherited
----------------------------------------------------------------------------------

                 Key: JBIDE-2012
                 URL: http://jira.jboss.com/jira/browse/JBIDE-2012
             Project: Tools (JBoss Tools)
          Issue Type: Bug
          Components: jsp/jsf/xml source editing
    Affects Versions: 2.0.1
         Environment: jboss tools 2.0.1GA, windows vista, jdk 1.5_0.12
            Reporter: Adrian Mitev
            Priority: Critical


With the following classes

public class User {
    
    private String userName;
     //getter and setter for the userName
}

public class UserChild extends User {

}

-----------------
MyBean.java is defined as managed bean

public class MyBean {
    
    private UserChild child;
    //getter and setter for child
}

when the child UserChild is used there is no CA provided for the properties of  #{myBean.child}

------------------

public class MyBean {
    
    private User child;
    //getter and setter for child
}

when the parent User is used there is a CA provided for the properties of  #{myBean.child}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jbosstools-issues mailing list