Package org.rat.free.security.makifx.core.utils

Examples of org.rat.free.security.makifx.core.utils.InternalPopupMessage


        }
        ipm.show();
    }

    private void alertForceExit(String id, String header, String content) {
        InternalPopupMessage ipm = createPopupMessage(id, new AnswarePopupMessage() {
            @Override
            public void onOkAnsware() {
                sysExit(__EXIT_NO_ERROR__);
            }

            @Override
            public void onCancelAnsware() {
            }
        }).setHeader(RBLoader.ll(header))
                .setContent(RBLoader.ll(content))
                .setOkButton(RBLoader.ll("Close"))
                .setIcon(UtilityFX.getImage("help_24.png"));
        ipm.show();
    }
View Full Code Here


    }

    private void showMessage(final String id, final String title,
            final String message, final String ok, final String cancel,
            final boolean doNotAskAgain, final AnswerPopupMessage listener) {
        InternalPopupMessage ipm = manager.createPopupMessage(id, listener).setHeader(RBLoader.ll(title))
                .setContent(RBLoader.ll(message))
                .setOkCancelButton(RBLoader.ll(ok), RBLoader.ll(cancel))
                .setIcon(UtilityFX.getImage("info_24.png"));
        if (doNotAskAgain) {
            ipm.setDoNotAskAgain();
        }
        ipm.show();
    }
View Full Code Here

TOP

Related Classes of org.rat.free.security.makifx.core.utils.InternalPopupMessage

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.