auto import from //depot/cupcake/@136654

This commit is contained in:
The Android Open Source Project
2009-03-05 17:04:45 -08:00
parent edd86fdaa9
commit 2b83cbdb14
9 changed files with 1181 additions and 86 deletions

View File

@@ -215,6 +215,11 @@ public final class ExportWizard extends Wizard implements IExportWizard {
final boolean[] result = new boolean[1];
try {
workbench.getProgressService().busyCursorWhile(new IRunnableWithProgress() {
/**
* Run the export.
* @throws InvocationTargetException
* @throws InterruptedException
*/
public void run(IProgressMonitor monitor) throws InvocationTargetException,
InterruptedException {
try {

View File

@@ -397,8 +397,10 @@ final class KeyCheckPage extends ExportWizardPage {
/**
* Creates the list of destination filenames based on the content of the destination field
* and the list of APK configurations for the project.
* @param file
* @return
*
* @param file File name from the destination field
* @return A list of destination filenames based <code>file</code> and the list of APK
* configurations for the project.
*/
private Map<String, String[]> getApkFileMap(File file) {
String filename = file.getName();