Why doesn’t the JSP editor employ code assist for the import statements? I understand that when I add new classes, that the import statements will automatically be added as needed, but IMHO, the JSP header starts to look messy.
For example, when adding new packages to the import in the code below, it won’t work. Instead, if I create some class instance or reference something that isn’t currently in the import, it adds the line in red:
<%@ page import=”com.plumtree.remote.prc.<classname>” %>
<%@ page language=”java”
import=”java.util.*,
com.plumtree.remote.portlet.*”
%>