]> gitweb.fperrin.net Git - GpsPrune.git/blob - tim/prune/threedee/ThreeDWindow.java
Version 4, January 2008
[GpsPrune.git] / tim / prune / threedee / ThreeDWindow.java
1 package tim.prune.threedee;
2
3 import tim.prune.data.Track;
4
5 /**
6  * Interface to decouple from Java3D classes
7  */
8 public interface ThreeDWindow
9 {
10
11         /**
12          * Set the Track data
13          * @param inTrack Track object
14          */
15         public void setTrack(Track inTrack);
16
17
18         /**
19          * Show the window
20          * @throws ThreeDException when 3d classes not found
21          */
22         public void show() throws ThreeDException;
23 }