Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Acknoledge the fact that JniException is a runtime exception now: kill all its occure...
[simgrid.git] / examples / java / suspend / LazyGuy.java
index 225e6f6..e31bae0 100644 (file)
@@ -1,8 +1,5 @@
 /*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
+ * Copyright 2006,2007,2010. 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. 
 import simgrid.msg.*;
 
 public class LazyGuy extends simgrid.msg.Process {
-       
-       
-       public LazyGuy() {
-       super();
+   public LazyGuy() {
+      super();
     }
-    
-     public LazyGuy(Host host,String name) 
-     throws NullPointerException, HostNotFoundException, JniException, NativeException
+   
+   public LazyGuy(Host host,String name) throws HostNotFoundException, NativeException
      {
-               super(host,name,null);
-       }
+       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.");
-       simgrid.msg.Process.currentProcess().pause();
-               
-       Msg.info("Uuuh ? Did somebody call me ?");
-       Msg.info("Mmmh, goodbye now."); 
-    }
+   public void main(String[] args) throws 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."); 
+   }
 }
\ No newline at end of file