aboutsummaryrefslogtreecommitdiffstats
path: root/eclipse/plugins/com.android.ide.eclipse.tests
diff options
context:
space:
mode:
authorRaphael <raphael@google.com>2011-09-08 13:03:53 -0700
committerRaphael <raphael@google.com>2011-09-08 13:04:31 -0700
commit183bb6ccdf9f414bce5bc5e5fd09749dd295a6c0 (patch)
treecd1a59a28871e098e4889b7ac712ae0f9b7bdd87 /eclipse/plugins/com.android.ide.eclipse.tests
parent1f64875a22bd5dda7c1054325e41459de7def773 (diff)
downloadsdk-183bb6ccdf9f414bce5bc5e5fd09749dd295a6c0.zip
sdk-183bb6ccdf9f414bce5bc5e5fd09749dd295a6c0.tar.gz
sdk-183bb6ccdf9f414bce5bc5e5fd09749dd295a6c0.tar.bz2
Fix build of ADT tests.
Change-Id: Ie1627d420c862dceff2197639f4006f61f7442c2
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.tests')
-rw-r--r--eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/ManifestInfoTest.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/ManifestInfoTest.java b/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/ManifestInfoTest.java
index 67d838e..2732f84 100644
--- a/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/ManifestInfoTest.java
+++ b/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/ManifestInfoTest.java
@@ -23,6 +23,7 @@ import com.android.ide.eclipse.adt.internal.editors.layout.refactoring.AdtProjec
import com.android.ide.eclipse.adt.internal.resources.ResourceHelper;
import com.android.sdklib.AndroidVersion;
import com.android.sdklib.IAndroidTarget;
+import com.android.sdklib.ISystemImage;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.runtime.NullProgressMonitor;
@@ -225,10 +226,6 @@ public class ManifestInfoTest extends AdtProjectTest {
return false;
}
- public String[] getAbiList() {
- return null;
- }
-
public String getClasspathName() {
return null;
}
@@ -245,10 +242,14 @@ public class ManifestInfoTest extends AdtProjectTest {
return null;
}
- public String getImagePath(String abiType) {
+ public ISystemImage getSystemImage(String abiType) {
return null;
}
+ public ISystemImage[] getSystemImages() {
+ return new ISystemImage[0];
+ }
+
public String getLocation() {
return null;
}