when using iten live template, it doesn't pickup enumeration object type:
example:
JTable table = new JTable(); Enumeration<TableColumn> columns = table.getColumnModel().getColumns(); iten (Ctrl-J) while (columns.hasMoreElements()) { Object tableColumn = columns.nextElement(); }
it gives you an option to change Object to anything else, which in this case doesn't make sence.