]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/threedee/ThreeDWindow.java
Version 2, March 2007
[GpsPrune.git] / tim / prune / threedee / ThreeDWindow.java
diff --git a/tim/prune/threedee/ThreeDWindow.java b/tim/prune/threedee/ThreeDWindow.java
new file mode 100644 (file)
index 0000000..52aeba3
--- /dev/null
@@ -0,0 +1,22 @@
+package tim.prune.threedee;
+
+import tim.prune.data.Track;
+
+/**
+ * Interface to decouple from Java3D classes
+ */
+public interface ThreeDWindow
+{
+
+       /**
+        * Set the Track data
+        * @param inTrack Track object
+        */
+       public void setTrack(Track inTrack);
+
+
+       /**
+        * Show the window
+        */
+       public void show() throws ThreeDException;
+}