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 117384
Collapse All | Expand All

(-)a/options.api/src/org/netbeans/modules/options/advanced/AdvancedPanel.java (-1 / +2 lines)
Lines 92-97 Link Here
92
    AdvancedPanel(String subpath) {
92
    AdvancedPanel(String subpath) {
93
        this.subpath = subpath;
93
        this.subpath = subpath;
94
        this.model = new Model(subpath, listener);
94
        this.model = new Model(subpath, listener);
95
        init();
95
    }
96
    }
96
        
97
        
97
    public void update () {
98
    public void update () {
Lines 134-140 Link Here
134
        return model.getLookup ();
135
        return model.getLookup ();
135
    }
136
    }
136
    
137
    
137
    void init() {
138
    private void init() {
138
        // init components
139
        // init components
139
        tabbedPanel = new JTabbedPane();
140
        tabbedPanel = new JTabbedPane();
140
        tabbedPanel.getAccessibleContext().setAccessibleDescription(NbBundle.getMessage(AdvancedPanel.class, "AdvancedPanel.tabbedPanel.AD"));
141
        tabbedPanel.getAccessibleContext().setAccessibleDescription(NbBundle.getMessage(AdvancedPanel.class, "AdvancedPanel.tabbedPanel.AD"));
(-)a/options.api/src/org/netbeans/modules/options/advanced/AdvancedPanelController.java (-1 lines)
Lines 95-101 Link Here
95
    }
95
    }
96
    
96
    
97
    public JComponent getComponent (Lookup masterLookup) {
97
    public JComponent getComponent (Lookup masterLookup) {
98
        getAdvancedPanel().init();
99
        return getAdvancedPanel ();
98
        return getAdvancedPanel ();
100
    }
99
    }
101
    
100
    

Return to bug 117384