2018-09-17 10:07:32 +03:00
|
|
|
package ru.gravit.launcher.modules;
|
|
|
|
|
2018-09-22 17:22:39 +03:00
|
|
|
import ru.gravit.utils.Version;
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
public interface Module extends AutoCloseable {
|
|
|
|
|
|
|
|
String getName();
|
|
|
|
|
2018-09-22 17:22:39 +03:00
|
|
|
Version getVersion();
|
2018-09-17 10:07:32 +03:00
|
|
|
|
2018-09-17 13:14:59 +03:00
|
|
|
int getPriority();
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
void init(ModuleContext context);
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
void postInit(ModuleContext context);
|
2018-09-22 17:33:00 +03:00
|
|
|
|
2018-09-17 10:07:32 +03:00
|
|
|
void preInit(ModuleContext context);
|
|
|
|
}
|