X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/eff77065e2847dfb52a0c1ce55e4b6c884e214fb..7d25326366e9764913af94b28b4d343ddf4c239d:/examples/java/suspend/LazyGuy.java?ds=sidebyside diff --git a/examples/java/suspend/LazyGuy.java b/examples/java/suspend/LazyGuy.java index 5dcaf01d40..627cc3648c 100644 --- a/examples/java/suspend/LazyGuy.java +++ b/examples/java/suspend/LazyGuy.java @@ -1,33 +1,23 @@ /* - * $Id$ - * - * Copyright 2006,2007,2010. The SimGrid Team. All rights reserved. + * Copyright 2006-2012. The SimGrid Team. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +package suspend; -import simgrid.msg.*; - -public class LazyGuy extends simgrid.msg.Process { - public LazyGuy() { - super(); - } - - public LazyGuy(Host host,String name) - throws NullPointerException, HostNotFoundException, JniException, NativeException - { - super(host,name,null); - } - - - public void main(String[] args) throws JniException, NativeException { - Msg.info("Hello !"); - - Msg.info("Nobody's watching me ? Let's go to sleep."); - pause(); - - Msg.info("Uuuh ? Did somebody call me ?"); - Msg.info("Mmmh, goodbye now."); - } +import org.simgrid.msg.Host; +import org.simgrid.msg.Msg; +import org.simgrid.msg.Process; +import org.simgrid.msg.MsgException; +public class LazyGuy extends Process { + public LazyGuy(Host host, String name, String[]args) { + super(host,name,args); + } + public void main(String[] args) throws MsgException { + Msg.info("Nobody's watching me ? Let's go to sleep."); + suspend(); + Msg.info("Uuuh ? Did somebody call me ?"); + Msg.info("Mmmh, goodbye now."); + } } \ No newline at end of file