Package com.bbn.openmap.event

Examples of com.bbn.openmap.event.InfoDisplayEvent


     * Request that plain text or html text be displayed in a browser.
     *
     * @param event InfoDisplayEvent
     */
    public void requestBrowserContent(InfoDisplayEvent event) {
        fireRequestBrowserContent(new InfoDisplayEvent(this, event.getInformation()));
    }
View Full Code Here


     * Request a tool tip be shown.
     *
     * @param event The InfoDisplayEvent containing the text and requestor.
     */
    public void requestShowToolTip(InfoDisplayEvent event) {
        fireRequestToolTip(new InfoDisplayEvent(this, event.getInformation()));
    }
View Full Code Here

            } catch (OutOfMemoryError e) {
                String msg = getName()
                        + "|LocationLayer.LocationWorker.construct(): " + e;
                Debug.error(msg);
                e.printStackTrace();
                fireRequestMessage(new InfoDisplayEvent(this, msg));
                fireStatusUpdate(LayerStatusEvent.FINISH_WORKING);
                return null;
            }
        }
View Full Code Here

    /**
     * 
     */
    protected void postMemoryErrorMsg(String msg) {
        fireRequestMessage(new InfoDisplayEvent(this, msg));
    }
View Full Code Here

    /**
     * 
     */
    protected void postCORBAErrorMsg(String msg) {
        fireRequestMessage(new InfoDisplayEvent(this, msg));
    }
View Full Code Here

    /**
     * 
     */
    protected void postException(String msg) {
        fireRequestMessage(new InfoDisplayEvent(this, msg));
    }
View Full Code Here

                }
            }

            // This is only called if there is an error.
            if (Debug.debugging("displayLayerErrors")) {
                fireRequestMessage(new InfoDisplayEvent(this, msg));
            }

            return null;
        }
View Full Code Here

                return prepare();
            } catch (OutOfMemoryError e) {
                String msg = getName() + "|DTEDLayer.DTEDWorker.construct(): "
                        + e;
                Debug.error(msg);
                fireRequestMessage(new InfoDisplayEvent(this, msg));
                fireStatusUpdate(LayerStatusEvent.FINISH_WORKING);
                cache = null;
                return null;
            }
        }
View Full Code Here

TOP

Related Classes of com.bbn.openmap.event.InfoDisplayEvent

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.