thread safe plugin startup
This commit is contained in:
parent
61482fec43
commit
598f4e94cd
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: SimControl.java,v 1.6 2007/04/02 16:02:32 fros4943 Exp $
|
* $Id: SimControl.java,v 1.7 2007/07/17 21:21:24 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja.plugins;
|
package se.sics.cooja.plugins;
|
||||||
|
@ -83,6 +83,8 @@ public class SimControl extends VisPlugin {
|
||||||
JButton button;
|
JButton button;
|
||||||
JPanel smallPanel;
|
JPanel smallPanel;
|
||||||
|
|
||||||
|
SwingUtilities.invokeLater(new Runnable() {
|
||||||
|
public void run() {
|
||||||
// Register as tickobserver
|
// Register as tickobserver
|
||||||
simulation.addTickObserver(tickObserver = new Observer() {
|
simulation.addTickObserver(tickObserver = new Observer() {
|
||||||
public void update(Observable obs, Object obj) {
|
public void update(Observable obs, Object obj) {
|
||||||
|
@ -119,6 +121,8 @@ public class SimControl extends VisPlugin {
|
||||||
simulationTime.setText("Current simulation time: " + simulation.getSimulationTime());
|
simulationTime.setText("Current simulation time: " + simulation.getSimulationTime());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
// Main panel
|
// Main panel
|
||||||
|
|
Loading…
Reference in a new issue