Revision 477,
435 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[477] | 1 | package schedframe; |
---|
| 2 | |
---|
| 3 | |
---|
| 4 | |
---|
| 5 | /** |
---|
| 6 | * @author Stanislaw Szczepanowski |
---|
| 7 | * |
---|
| 8 | */ |
---|
| 9 | public interface Plugin { |
---|
| 10 | |
---|
| 11 | /** |
---|
| 12 | * Returns the plugin name used in the simulation |
---|
| 13 | * @return the name of the plugin with all the package namespace, e.g. org.gridcompany.plugins.forecast.GridPlugin |
---|
| 14 | */ |
---|
| 15 | public String getName(); |
---|
| 16 | |
---|
| 17 | /** |
---|
| 18 | * Initializes the plugin |
---|
| 19 | */ |
---|
| 20 | public void init(Parameters parameters); |
---|
| 21 | |
---|
| 22 | public PluginConfiguration getConfiguration(); |
---|
| 23 | |
---|
| 24 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.