diff options
author | alfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-11-06 05:45:08 +0000 |
---|---|---|
committer | alfred <alfred@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-11-06 05:45:08 +0000 |
commit | bea097126098819ea74d8564ec1e174d24dd264b (patch) | |
tree | a17ce5ce98123a33aac14419fa53d4ee3b732fe2 /Tools | |
parent | 015849a4508ec793072dd648264c0f142f7db645 (diff) | |
download | edk2-platforms-bea097126098819ea74d8564ec1e174d24dd264b.tar.xz |
Coding Style
Comment
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1902 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java b/Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java index 7ed4113ad4..c65a425df4 100644 --- a/Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java +++ b/Tools/Java/Source/MigrationTools/org/tianocore/migration/MigrationTool.java @@ -116,13 +116,19 @@ public class MigrationTool { * This method designates the location of temp directory.
*
* @param modulepath
- * @return
+ * @return String
*/
public static final String getTempDir(String modulepath) {
return "C:" + File.separator + "MigrationTool_Temp"
+ modulepath.replace(startpath, "");
}
+ /**
+ * This method is the default output path generating scheme.
+ *
+ * @param inputpath
+ * @return String
+ */
private static final String assignOutPutPath(String inputpath) {
if (MigrationTool.defaultoutput) {
return inputpath.replaceAll(Common.STRSEPARATER, "$1");
@@ -133,6 +139,14 @@ public class MigrationTool { }
}
+ /**
+ * This function is called by main loop of the MigrationTool which
+ * verifies whether a dir contains a module, thus generating a map
+ * which shows the corresponding path for each module.
+ *
+ * @param filepath
+ * @throws Exception
+ */
public static final void seekModule(String filepath) throws Exception {
if (ModuleInfo.isModule(filepath)) {
ModuleInfoMap.put(new ModuleInfo(filepath),
@@ -140,6 +154,12 @@ public class MigrationTool { }
}
+ /**
+ * This is the main loop of the tool.
+ *
+ * @param path
+ * @throws Exception
+ */
public static final void startMigrateAll(String path) throws Exception {
startpath = path;
MigrationTool.ui.println("Project Migration");
@@ -162,8 +182,14 @@ public class MigrationTool { Common.deleteDir("C:" + File.separator + "MigrationTool_Temp");
}
+ /**
+ * This main method initializes the environment.
+ *
+ * @param args
+ * @throws Exception
+ */
public static void main(String[] args) throws Exception {
ui = FirstPanel.getInstance();
db = Database.getInstance();
}
-}
+}
\ No newline at end of file |