mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-20 20:24:28 +02:00
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:
parent
1f08e795f8
commit
d1d10647bf
@ -1,2 +1,2 @@
|
|||||||
Manifest-Version: 1.0
|
Manifest-Version: 1.0
|
||||||
Main-Class: org.tianocore.migration.ModuleInfo
|
Main-Class: org.tianocore.migration.MigrationTool
|
||||||
|
@ -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/MsaWriter.java</Filename>
|
||||||
<Filename>org/tianocore/migration/SourceFileReplacer.java</Filename>
|
<Filename>org/tianocore/migration/SourceFileReplacer.java</Filename>
|
||||||
<Filename>org/tianocore/migration/UI.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>
|
</SourceFiles>
|
||||||
</ModuleSurfaceArea>
|
</ModuleSurfaceArea>
|
@ -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();
|
||||||
|
}
|
||||||
|
}
|
@ -33,8 +33,8 @@ public class ModuleInfo {
|
|||||||
moduleScan();
|
moduleScan();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static UI ui = 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
|
||||||
private static Database db = 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;
|
public String modulepath = null;
|
||||||
|
|
||||||
@ -287,9 +287,10 @@ public class ModuleInfo {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
public static final void main(String[] args) throws Exception {
|
public static final void main(String[] args) throws Exception {
|
||||||
ui = FirstPanel.init();
|
ui = FirstPanel.init();
|
||||||
db = new Database();
|
db = new Database();
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user