Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
the supernovae exploded: let's split the archive and move bindings to separate packages
[simgrid.git] / examples / java / ping_pong / PingPongTask.java
diff --git a/examples/java/ping_pong/PingPongTask.java b/examples/java/ping_pong/PingPongTask.java
deleted file mode 100644 (file)
index 62c178a..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * $Id$
- *
- * Copyright 2006,2007 Martin Quinson, Malek Cherier         
- * All rights reserved. 
- *
- * 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. 
- */
-
-import simgrid.msg.*;
-
-public class PingPongTask extends Task {
-   
-   private double timeVal;
-   
-   public PingPongTask() throws JniException, NativeException {
-      this.timeVal = 0;
-   }
-   
-   public PingPongTask(String name, double computeDuration, double messageSize) throws JniException, NativeException {      
-      super(name,computeDuration,messageSize);         
-   }
-   
-   public void setTime(double timeVal){
-      this.timeVal = timeVal;
-   }
-   
-   public double getTime() {
-      return this.timeVal;
-   }
-}
-    
\ No newline at end of file