Package net.sf.jiga.xtended.ui.UIMessage

Examples of net.sf.jiga.xtended.ui.UIMessage.SwingStaticReturn


        switchDisplayMode(sDmw);
    }

    public void switchDisplayMode(final DisplayModeWrapper dmw) {
        try {
            JXAenvUtils2.invokeSwingAndReturn(new SwingStaticReturn() {
                public Object run() {
                    __switchDisplayMode(dmw);
                    return null;
                }
            });
View Full Code Here


        return gameInterface;
    }

    public void reset() {
        try {
            JXAenvUtils2.invokeSwingAndReturn(new SwingStaticReturn() {
                public Object run() {
                    _reset();
                    return null;
                }
            });
View Full Code Here

        }), "Exception caught with : " + classLoader, UIMessage.ERROR_TYPE);
    }

    public void popMessage(final JComponent message, final String title, final int UIMessageType) {
        try {
            JXAenvUtils2.invokeSwingAndReturn(new SwingStaticReturn() {
                public Object run() {
                    _popMessage(message, title, UIMessageType);
                    return null;
                }
            });
View Full Code Here

        popMessage(new JLabel(htmlMessage), title, UIMessageType);
    }

    public void switchGui(final JComponent comp) {
        try {
            JXAenvUtils2.invokeSwingAndReturn(new SwingStaticReturn() {
                public Object run() {
                    _switchGui(comp);
                    return null;
                }
            });
View Full Code Here

     * private Thread onCloseSwitchToTread = null;
     */

    public void switchGui(final JComponent comp, final JComponent onCloseSwitchTo, final Action onCloseAction) {
        try {
            JXAenvUtils2.invokeSwingAndReturn(new SwingStaticReturn() {
                public Object run() {
                    _switchGui(comp, onCloseSwitchTo, onCloseAction);
                    return null;
                }
            });
View Full Code Here

         * @see #setSplashPicture(DisplayInterface)
         * @see #hideSplash()
         */
        public void showSplash() {
                try {
                        UIMessage.invokeSwingAndReturn(new SwingStaticReturn() {
                                public Object run() {
                                        _showSplash();
                                        return null;
                                }
                        });
View Full Code Here

         *
         */
        public void hideSplash() {

                try {
                        UIMessage.invokeSwingAndReturn(new SwingStaticReturn() {
                                public Object run() {
                                        _hideSplash();
                                        return null;
                                }
                        });
View Full Code Here

TOP

Related Classes of net.sf.jiga.xtended.ui.UIMessage.SwingStaticReturn

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.