This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 54497
Collapse All | Expand All

(-)CustomizerCompile.java (+4 lines)
Lines 56-63 Link Here
56
    public CustomizerCompile( J2SEProjectProperties uiProperties ) {
56
    public CustomizerCompile( J2SEProjectProperties uiProperties ) {
57
        initComponents();
57
        initComponents();
58
                
58
                
59
        uiProperties.JAVAC_DEPRECATION_MODEL.setMnemonic( jCheckBoxDeprecation.getMnemonic() );
59
        jCheckBoxDeprecation.setModel( uiProperties.JAVAC_DEPRECATION_MODEL );
60
        jCheckBoxDeprecation.setModel( uiProperties.JAVAC_DEPRECATION_MODEL );
61
        
62
        uiProperties.JAVAC_DEBUG_MODEL.setMnemonic( jCheckBoxDebugInfo.getMnemonic() );
60
        jCheckBoxDebugInfo.setModel( uiProperties.JAVAC_DEBUG_MODEL );
63
        jCheckBoxDebugInfo.setModel( uiProperties.JAVAC_DEBUG_MODEL );
64
        
61
        additionalJavacParamsJTextField.setDocument( uiProperties.JAVAC_COMPILER_ARG_MODEL );                 
65
        additionalJavacParamsJTextField.setDocument( uiProperties.JAVAC_COMPILER_ARG_MODEL );                 
62
        
66
        
63
    }
67
    }

Return to bug 54497