Merge commit '42b2e5ca519766e37ce6941ba4faecc9691cc403' into upstream
[debian/openrocket] / core / src / net / sf / openrocket / plugin / example / ExamplePlugin.java
diff --git a/core/src/net/sf/openrocket/plugin/example/ExamplePlugin.java b/core/src/net/sf/openrocket/plugin/example/ExamplePlugin.java
new file mode 100644 (file)
index 0000000..4579f9e
--- /dev/null
@@ -0,0 +1,17 @@
+package net.sf.openrocket.plugin.example;
+
+
+public class ExamplePlugin implements ExamplePluginInterface {
+       
+       private final String str;
+       
+       public ExamplePlugin(String str) {
+               this.str = str;
+       }
+       
+       @Override
+       public void print() {
+               System.out.println("ExamplePlugin: " + str);
+       }
+       
+}