Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Dig through git history, and update copyright lines.
[simgrid.git] / examples / java / chord / FindSuccessorAnswerTask.java
1 /*
2  * Copyright (c) 2006-2013. The SimGrid Team.
3  * All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. 
7  */
8 package chord;
9
10 public class FindSuccessorAnswerTask extends ChordTask {
11         public int answerId;
12
13         public FindSuccessorAnswerTask(String issuerHostname, String answerTo, int answerId) {
14                 super(issuerHostname,answerTo);
15                 this.answerId = answerId;
16         }
17 }