Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
The java examples to illustrate the usage of the mailbox concept.
[simgrid.git] / examples / java / alias1 / BasicTask.java
diff --git a/examples/java/alias1/BasicTask.java b/examples/java/alias1/BasicTask.java
new file mode 100644 (file)
index 0000000..d7acd6e
--- /dev/null
@@ -0,0 +1,18 @@
+/*\r
+ * $Id: BasicTask.java 5038 2007-11-14 11:16:17Z mquinson $\r
+ *\r
+ * Copyright 2006,2007 Martin Quinson, Malek Cherier         \r
+ * All rights reserved. \r
+ *\r
+ * This program is free software; you can redistribute it and/or modify it\r
+ * under the terms of the license (GNU LGPL) which comes with this package. \r
+ */\r
+\r
+import simgrid.msg.*;\r
+\r
+public class BasicTask extends Task {\r
+       \r
+    public BasicTask(String name, double computeDuration, double messageSize) throws JniException{\r
+       super(name,computeDuration,messageSize);                \r
+    }\r
+}\r