Hello,
I created new Web Module Project. Add new JSP (index.jsp) into Web Root directory.
I tested the code completion for packages, but it does not work.
For example:
<%
java.<here is nothing, but I am awaiting lang, util, etc.>
%>
When I work with class, then code completion works, for example:
<%
java.util.Date d = new java.util.Date();
d.<now it works>
%>
Is it feature or some error?
Leos