1 |
package appl.plugin.multimodelcontrol; |
2 |
|
3 |
import javax.swing.JMenuItem; |
4 |
|
5 |
import edu.bonn.xulu.gui.XuluInternalFrame; |
6 |
import edu.bonn.xulu.plugin.appl.AbstractMenuPlugin; |
7 |
|
8 |
/** |
9 |
* The Xulu plugin class. See {@link MultiModelControlHandler} for details. |
10 |
* |
11 |
* @author Dominik Appl |
12 |
*/ |
13 |
public class MultiModelControlPlugin extends AbstractMenuPlugin{ |
14 |
|
15 |
/** |
16 |
*/ |
17 |
public MultiModelControlPlugin() { |
18 |
super(1,"Multi Model Control"); |
19 |
} |
20 |
|
21 |
/* (non-Javadoc) |
22 |
* @see edu.bonn.xulu.plugin.appl.AbstractMenuPlugin#createPluginApplication() |
23 |
*/ |
24 |
@Override |
25 |
protected XuluInternalFrame createPluginApplication() throws Exception { |
26 |
return new MultiModelControlHandler(this.appl).getFrame(); |
27 |
} |
28 |
|
29 |
} |