X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=core%2Fsrc%2Fnet%2Fsf%2Fopenrocket%2Fplugin%2Fexample%2FExampleSingletonPlugin.java;fp=core%2Fsrc%2Fnet%2Fsf%2Fopenrocket%2Fplugin%2Fexample%2FExampleSingletonPlugin.java;h=aa015180eff906ccbbc274105e8ad67b52a05df1;hb=9349577cdfdff682b2aabd6daa24fdc3a7449b58;hp=0000000000000000000000000000000000000000;hpb=30ba0a882f0c061176ba14dbf86d3d6fad096c02;p=debian%2Fopenrocket diff --git a/core/src/net/sf/openrocket/plugin/example/ExampleSingletonPlugin.java b/core/src/net/sf/openrocket/plugin/example/ExampleSingletonPlugin.java new file mode 100644 index 00000000..aa015180 --- /dev/null +++ b/core/src/net/sf/openrocket/plugin/example/ExampleSingletonPlugin.java @@ -0,0 +1,13 @@ +package net.sf.openrocket.plugin.example; + +import net.xeoh.plugins.base.annotations.PluginImplementation; + +@PluginImplementation +public class ExampleSingletonPlugin implements ExamplePluginInterface { + + @Override + public void print() { + System.out.println("ExampleSingletonPlugin"); + } + +}