From the Gui builder in NetBeans 7.4 I can make action methods such as
private void btnFilterActionPerformed(java.awt.event.ActionEvent evt) { }
Is there any way to let NetBeans create protected mathods instead of private ones ?
protected void btnFilterActionPerformed(java.awt.event.ActionEvent evt) { }