OSDN Git Service

Fix build of ADT tests.
authorRaphael <raphael@google.com>
Thu, 8 Sep 2011 20:03:53 +0000 (13:03 -0700)
committerRaphael <raphael@google.com>
Thu, 8 Sep 2011 20:04:31 +0000 (13:04 -0700)
Change-Id: Ie1627d420c862dceff2197639f4006f61f7442c2

eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/ManifestInfoTest.java

index 67d838e..2732f84 100644 (file)
@@ -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;
         }