我使用netbeans 7.3。我需要修改 IDE 生成的方法。例如; 我想将“initComponents()”方法的访问级别从私有更改为受保护。以及一些作为私有函数生成的受保护的函数?这意味着以下是 IDE 使用 private 修饰符生成的函数。我想让它成为受保护的 void jButton4ActionPerfomrd(...
private void jButton4ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
请问有什么建议吗?