make api.Destination a class rather than an interface
[fleet.git] / src / edu / berkeley / fleet / interpreter / InterpreterDestination.java
index bde33bc..87748bd 100644 (file)
@@ -2,8 +2,8 @@ package edu.berkeley.fleet.interpreter;
 import edu.berkeley.fleet.api.*;
 import java.util.*;
 
-interface InterpreterDestination extends Destination {
-    public long getDestAddr();
-    public void addDataFromFabric(Packet packet);
-    public String getDestinationName();
+abstract class InterpreterDestination extends Destination {
+    public abstract long getDestAddr();
+    public abstract void addDataFromFabric(Packet packet);
+    public abstract String getDestinationName();
 }
\ No newline at end of file