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 - JSF page: Broken autocompletion for nested structures
Summary: JSF page: Broken autocompletion for nested structures
Status: NEW
Alias: None
Product: javaee
Classification: Unclassified
Component: JSF Editor (show other bugs)
Version: 8.0.2
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Martin Fousek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-12 10:57 UTC by muellermi
Modified: 2015-03-01 21:31 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
IDE log (149.65 KB, text/plain)
2015-01-12 10:58 UTC, muellermi
Details

Note You need to log in before you can comment on or make changes to this bug.
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.