Add MigrationTool.java

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1333 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
alfred 2006-08-21 07:22:45 +00:00
parent 1f08e795f8
commit d1d10647bf
4 changed files with 17 additions and 4 deletions

View File

@ -1,2 +1,2 @@
Manifest-Version: 1.0
Main-Class: org.tianocore.migration.ModuleInfo
Main-Class: org.tianocore.migration.MigrationTool

View File

@ -41,5 +41,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
<Filename>org/tianocore/migration/MsaWriter.java</Filename>
<Filename>org/tianocore/migration/SourceFileReplacer.java</Filename>
<Filename>org/tianocore/migration/UI.java</Filename>
<Filename>org/tianocore/migration/MsaTreeEditor.java</Filename>
<Filename>org/tianocore/migration/MigrationTool.java</Filename>
<Filename>org/tianocore/migration/Critic.java</Filename>
<Filename>org/tianocore/migration/Common.java</Filename>
</SourceFiles>
</ModuleSurfaceArea>

View File

@ -0,0 +1,8 @@
package org.tianocore.migration;
public class MigrationTool {
public static void main(String[] args) throws Exception {
ModuleInfo.ui = FirstPanel.init();
ModuleInfo.db = new Database();
}
}

View File

@ -33,8 +33,8 @@ public class ModuleInfo {
moduleScan();
}
private static UI ui = null; //if MIM is still usefull, this can be given to it
private static Database db = null; //if MIM is still usefull, this can be given to it
public static UI ui = null; //if MIM is still usefull, this can be given to it
public static Database db = null; //if MIM is still usefull, this can be given to it
public String modulepath = null;
@ -287,9 +287,10 @@ public class ModuleInfo {
}
return false;
}
/*
public static final void main(String[] args) throws Exception {
ui = FirstPanel.init();
db = new Database();
}
*/
}