Package org.apache.harmony.tools.policytool.view

Examples of org.apache.harmony.tools.policytool.view.EditorPanel


    /**
     * Handles change events of the editors tabbed pane.
     * @param ce details of the change event
     */
    public void stateChanged( final ChangeEvent ce ) {
        final EditorPanel newActiveEditorPanel = (EditorPanel) ( (JTabbedPane) ce.getSource() ).getSelectedComponent();

        newActiveEditorPanel.loadPolicyText( activeEditorPanel.getPolicyText() );
        newActiveEditorPanel.setHasDirty   ( activeEditorPanel.getHasDirty  () );
        activeEditorPanel = newActiveEditorPanel;

        keystoreEditMenuItem.setEnabled( activeEditorPanel.supportsGraphicalKeystoreEdit() );
    }
View Full Code Here

TOP

Related Classes of org.apache.harmony.tools.policytool.view.EditorPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.