Package lcmc.drbd.ui.configdialog

Examples of lcmc.drbd.ui.configdialog.DrbdConfig


        this.volumeInfo = volumeInfo;
    }

    public void showDialogs() {
        splitBrainDialog.init(null, volumeInfo);
        DrbdConfig dialog = splitBrainDialog;
        guiData.expandTerminalSplitPane(GUIData.TerminalSize.EXPAND);
        while (true) {
            LOG.debug1("showDialogs: dialog: " + dialog.getClass().getName());
            final DrbdConfig newdialog = (DrbdConfig) dialog.showDialog();
            if (dialog.isPressedCancelButton()) {
                dialog.cancelDialog();
                guiData.expandTerminalSplitPane(GUIData.TerminalSize.COLLAPSE);
                if (newdialog == null) {
                    LOG.debug1("showDialogs: dialog: " + dialog.getClass().getName() + " canceled");
View Full Code Here

TOP

Related Classes of lcmc.drbd.ui.configdialog.DrbdConfig

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.