This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 249748

Summary: JSF page: Broken autocompletion for nested structures
Product: javaee Reporter: muellermi <muellermi>
Component: JSF EditorAssignee: Martin Fousek <marfous>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.0.2   
Hardware: PC   
OS: Windows 7   
Issue Type: DEFECT Exception Reporter:
Attachments: IDE log

Description muellermi 2015-01-12 10:57:56 UTC
Product Version = NetBeans IDE 8.0.2 (Build 201411181905)
Operating System = Windows 7 version 6.1 running on amd64
Java; VM; Vendor = 1.8.0_20
Runtime = Java HotSpot(TM) 64-Bit Server VM 25.20-b23

Given containers for a generic couple of values, e.g. double (pair), tripple, ...

public class Pair<T1, T2> {

    private T1 _value1;
    private T2 _value2;

    [getters and setters]
}

public class Tripple <T1, T2, T3>{...}

Now, these structures are used within a list and shall be accessed from a JSF page

	<h:dataTable value="#{myBean.myList}" var="var">

"var." -> NetBeans offer code completion (value1, value2, value3)

"var.value1." -> Error. Unlike in Java editor, NetBeans does not offer code completion.
Comment 1 muellermi 2015-01-12 10:58:01 UTC
Created attachment 151454 [details]
IDE log
Comment 2 roti 2015-03-01 21:31:45 UTC
Maybe this is the same problem as in Bug 249745.