571572573574575576577
* 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())); }
589590591592593594595
* 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())); }
177178179180181182183184185186
} 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; } }
1211121212131214121512161217
/** * */ protected void postMemoryErrorMsg(String msg) { fireRequestMessage(new InfoDisplayEvent(this, msg)); }
1218121912201221122212231224
/** * */ protected void postCORBAErrorMsg(String msg) { fireRequestMessage(new InfoDisplayEvent(this, msg)); }
1225122612271228122912301231
/** * */ protected void postException(String msg) { fireRequestMessage(new InfoDisplayEvent(this, msg)); }
720721722723724725726727728729
} } // This is only called if there is an error. if (Debug.debugging("displayLayerErrors")) { fireRequestMessage(new InfoDisplayEvent(this, msg)); } return null; }
279280281282283284285286287288289
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; } }