Merge commit '42b2e5ca519766e37ce6941ba4faecc9691cc403' into upstream
[debian/openrocket] / core / src / net / sf / openrocket / plugin / example / AirStartSimulationExtension.java
diff --git a/core/src/net/sf/openrocket/plugin/example/AirStartSimulationExtension.java b/core/src/net/sf/openrocket/plugin/example/AirStartSimulationExtension.java
new file mode 100644 (file)
index 0000000..7d14f5f
--- /dev/null
@@ -0,0 +1,42 @@
+package net.sf.openrocket.plugin.example;
+
+import java.awt.Component;
+
+public class AirStartSimulationExtension extends OpenRocketSimulationListener {
+       
+       @Override
+       public String getName() {
+               return "Air-start";
+       }
+       
+       @Override
+       public String[] getMenuPosition() {
+               return null;
+       }
+       
+       @Override
+       public void loadFromXML(Object... objects) {
+               // TODO Auto-generated method stub
+               
+       }
+       
+       @Override
+       public void saveToXML(Object... objects) {
+               // TODO Auto-generated method stub
+               
+       }
+       
+       @Override
+       public boolean isConfigurable() {
+               // TODO Auto-generated method stub
+               return false;
+       }
+       
+       @Override
+       public Component getConfigurationComponent() {
+               // TODO Auto-generated method stub
+               return null;
+       }
+       
+       
+}