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 / alias0 / BasicTask.java
1 /*\r
2  * $Id: BasicTask.java 5038 2007-11-14 11:16:17Z mquinson $\r
3  *\r
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier         \r
5  * All rights reserved. \r
6  *\r
7  * This program is free software; you can redistribute it and/or modify it\r
8  * under the terms of the license (GNU LGPL) which comes with this package. \r
9  */\r
10 \r
11 import simgrid.msg.*;\r
12 \r
13 public class BasicTask extends Task {\r
14         \r
15     public BasicTask(String name, double computeDuration, double messageSize) throws JniException{\r
16         super(name,computeDuration,messageSize);                \r
17     }\r
18 }\r