mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-04 15:31:53 +03:00
23 lines
445 B
Java
23 lines
445 B
Java
package ru.gravit.launcher.modules;
|
|
|
|
import java.net.URL;
|
|
|
|
public interface ModulesManagerInterface extends AutoCloseable {
|
|
void initModules();
|
|
|
|
void load(Module module);
|
|
|
|
void loadModule(URL jarpath) throws Exception;
|
|
|
|
void loadModule(URL jarpath, String classname) throws Exception;
|
|
|
|
void postInitModules();
|
|
|
|
void preInitModules();
|
|
|
|
void printModules();
|
|
|
|
void sort();
|
|
|
|
void registerModule(Module module);
|
|
}
|