Init
This commit is contained in:
29
src/java/tool/LaunchBundleManager.java
Normal file
29
src/java/tool/LaunchBundleManager.java
Normal file
@ -0,0 +1,29 @@
|
||||
package tool;
|
||||
|
||||
import javax.swing.SwingUtilities;
|
||||
|
||||
import misc.Bundle;
|
||||
import misc.Config;
|
||||
|
||||
import tool.controller.BundleManagerController;
|
||||
|
||||
public class LaunchBundleManager {
|
||||
|
||||
// ========================================
|
||||
static public void main (String [] arg) {
|
||||
Config.setPWD (LaunchBundleManager.class);
|
||||
Config.load ("BundleManager");
|
||||
Bundle.load ("Help");
|
||||
Bundle.load ("ToolBar");
|
||||
Bundle.load ("Controller");
|
||||
Bundle.load ("BundleManager");
|
||||
|
||||
SwingUtilities.invokeLater (new Runnable() {
|
||||
public void run() {
|
||||
new BundleManagerController ();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// ========================================
|
||||
}
|
Reference in New Issue
Block a user