I want to customize the default add method used inside autogenerated initComponentes() function and use my own version. Specifically, I would like to add a boolean parameter to the method to perform or not perform certain operations like:
public void add(Component comp, Object constraints, boolean skip)
and use it. I tried to modify default code with Customize Code in Netbeans but the add method is not customizable. How I can do it with Netbeans (without modify autogenerated code outside)?
Than you in advance!