Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Also remove the pseudo-specific task type for this example (since it's also empty)
[simgrid.git] / examples / java / comm_time / MyTask.java
diff --git a/examples/java/comm_time/MyTask.java b/examples/java/comm_time/MyTask.java
deleted file mode 100644 (file)
index 633ab00..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * $Id$
- *
- * Copyright 2006,2007,2010 The SimGrid Team. 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 MyTask extends Task {
-       
-   private double timeVal;
-       
-   public MyTask(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