create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / plugin / example / ExamplePlugin.java
1 package net.sf.openrocket.plugin.example;
2
3
4 public class ExamplePlugin implements ExamplePluginInterface {
5         
6         private final String str;
7         
8         public ExamplePlugin(String str) {
9                 this.str = str;
10         }
11         
12         @Override
13         public void print() {
14                 System.out.println("ExamplePlugin: " + str);
15         }
16         
17 }