Search in sources :

Example 1 with DProperties

use of org.kse.gui.dialogs.DProperties in project keystore-explorer by kaikramer.

the class PropertiesAction method doAction.

/**
 * Do action.
 */
@Override
protected void doAction() {
    try {
        KeyStoreHistory history = kseFrame.getActiveKeyStoreHistory();
        DProperties dProperties = new DProperties(frame, history);
        dProperties.setLocationRelativeTo(frame);
        dProperties.setVisible(true);
    } catch (Exception ex) {
        DError.displayError(frame, ex);
    }
}
Also used : KeyStoreHistory(org.kse.utilities.history.KeyStoreHistory) DProperties(org.kse.gui.dialogs.DProperties)

Aggregations

DProperties (org.kse.gui.dialogs.DProperties)1 KeyStoreHistory (org.kse.utilities.history.KeyStoreHistory)1