Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
java examples: align the package declaration with the directory name
authorMartin Quinson <martin.quinson@loria.fr>
Tue, 3 Sep 2013 15:05:16 +0000 (17:05 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Tue, 3 Sep 2013 15:05:16 +0000 (17:05 +0200)
examples/java/mutualExclusion/Coordinator.java
examples/java/mutualExclusion/GrantTask.java
examples/java/mutualExclusion/MutexCentral.java
examples/java/mutualExclusion/Node.java
examples/java/mutualExclusion/ReleaseTask.java
examples/java/mutualExclusion/RequestTask.java

index ad62a60..44fc41b 100644 (file)
@@ -5,7 +5,7 @@
  * under the terms of the license (GNU LGPL) which comes with this package. 
  */
 
  * under the terms of the license (GNU LGPL) which comes with this package. 
  */
 
-package mutualExclusion.centralized;
+package mutualExclusion;
 import java.util.LinkedList;
 
 import org.simgrid.msg.Host;
 import java.util.LinkedList;
 
 import org.simgrid.msg.Host;
index e9bdda0..60d59e2 100644 (file)
@@ -4,7 +4,7 @@
  * 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. 
  */
  * 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 mutualExclusion.centralized;
+package mutualExclusion;
 import org.simgrid.msg.Task;
 
 
 import org.simgrid.msg.Task;
 
 
index 0ed4d54..94702a6 100644 (file)
@@ -4,7 +4,7 @@
  * 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. 
  */
  * 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 mutualExclusion.centralized;
+package mutualExclusion;
 
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.NativeException;
 
 import org.simgrid.msg.Msg;
 import org.simgrid.msg.NativeException;
index 4dfa77a..b316367 100644 (file)
@@ -4,7 +4,7 @@
  * 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. 
  */
  * 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 mutualExclusion.centralized;
+package mutualExclusion;
 
 import org.simgrid.msg.Host;
 import org.simgrid.msg.Msg;
 
 import org.simgrid.msg.Host;
 import org.simgrid.msg.Msg;
index a33bf24..46db893 100644 (file)
@@ -4,6 +4,6 @@
  * 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. 
  */
  * 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 mutualExclusion.centralized;
+package mutualExclusion;
 public class ReleaseTask extends org.simgrid.msg.Task {
 }
 public class ReleaseTask extends org.simgrid.msg.Task {
 }
index 4615509..d9d9721 100644 (file)
@@ -4,7 +4,7 @@
  * 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. 
  */
  * 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 mutualExclusion.centralized;
+package mutualExclusion;
 import org.simgrid.msg.Task;
 
 public class RequestTask extends Task {
 import org.simgrid.msg.Task;
 
 public class RequestTask extends Task {