Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
useless cosmetics hinted by qtcreator
[simgrid.git] / examples / java / app / centralizedmutex / RequestTask.java
1 /* Copyright (c) 2012-2019. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 package app.centralizedmutex;
7 import org.simgrid.msg.Task;
8
9 public class RequestTask extends Task {
10   protected String from;
11   public RequestTask(String name) {
12     super();
13     from=name;
14   }
15 }