The IlvTiledRasterDataSource, performs its start method in a separate thread if called from the Swing event dispatch thread. This is useful to know if you want to wait for the start method to finish. To do this, call the start() method of the IlvTiledRasterDataSource from a different thread to the event thread to be sure it has completed as it returns.
For instance, to ensure that an IlvRasterDTEDDataSource has completed its start method, you could use the following code:
IlvMapDataSource DTEDDataSource;
...
// create readind thread
Thread loader = new Thread() {
public void run() {
DTEDDataSource.start();
}
};
// start reading thread
loader.start();
// wait for the thread to complete
loader.join();