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