Revision 477,
450 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[477] | 1 | package example.timeestimation; |
---|
| 2 | |
---|
| 3 | import schedframe.Parameters; |
---|
| 4 | import schedframe.PluginConfiguration; |
---|
| 5 | import schedframe.scheduling.plugin.estimation.ExecutionTimeEstimationPlugin; |
---|
| 6 | |
---|
| 7 | public abstract class BaseTimeEstimationPlugin implements ExecutionTimeEstimationPlugin{ |
---|
| 8 | |
---|
| 9 | public PluginConfiguration getConfiguration() { |
---|
| 10 | return null; |
---|
| 11 | } |
---|
| 12 | |
---|
| 13 | public String getName() { |
---|
| 14 | return getClass().getName(); |
---|
| 15 | } |
---|
| 16 | |
---|
| 17 | public void init(Parameters parameters) { |
---|
| 18 | } |
---|
| 19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.