Use DefaultTableModel as standard in NetBeans.
I'm using NetBeans to code my Java and GUI in, but it's very annoying that I can't get NetBeans to use the DefaultTableModel for JTable as standard.
I have to cast my JTable's everytime I wanna add a row or anything with ((javax.swing.table.DefaultTableModel)MYTABLE.getModel())
Anyway to get NetBeans to use the DefaultTableModel as a standard so I don't have to cast my tables all the time?

