From 33ff670100e836bd5b2567991e67092e1e3cb011 Mon Sep 17 00:00:00 2001 From: Bill Kuker Date: Thu, 23 Aug 2012 18:01:48 +0000 Subject: [PATCH] Create an sim table stub so I don't need OR --- .classpath | 5 ++-- .project | 1 + .../visual/openRocket/RocketSimTable.java | 28 +++++++++++++++++++ 3 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 openrocket-stub/com/billkuker/rocketry/motorsim/visual/openRocket/RocketSimTable.java diff --git a/.classpath b/.classpath index 44477ac..342fd3b 100644 --- a/.classpath +++ b/.classpath @@ -4,12 +4,11 @@ - + - - + diff --git a/.project b/.project index 9226a9e..1e4e71f 100644 --- a/.project +++ b/.project @@ -25,5 +25,6 @@ org.eclipse.ajdt.ui.ajnature org.eclipse.jdt.core.javanature net.sourceforge.metrics.nature + org.apache.ivyde.eclipse.ivynature diff --git a/openrocket-stub/com/billkuker/rocketry/motorsim/visual/openRocket/RocketSimTable.java b/openrocket-stub/com/billkuker/rocketry/motorsim/visual/openRocket/RocketSimTable.java new file mode 100644 index 0000000..519f582 --- /dev/null +++ b/openrocket-stub/com/billkuker/rocketry/motorsim/visual/openRocket/RocketSimTable.java @@ -0,0 +1,28 @@ +package com.billkuker.rocketry.motorsim.visual.openRocket; + +import java.io.File; + +import javax.swing.JPanel; + +import com.billkuker.rocketry.motorsim.Burn; +import com.billkuker.rocketry.motorsim.RocketScience; +import com.billkuker.rocketry.motorsim.visual.workbench.BurnWatcher; + +public class RocketSimTable extends JPanel implements BurnWatcher, RocketScience.UnitPreferenceListener { + static final long serialVersionUID = 1L; + + @Override + public void preferredUnitsChanged() { + + } + + @Override + public void replace(Burn oldBurn, Burn newBurn) { + + } + + public void openRocket(File f) { + + } + +} -- 2.30.2