Back to project page adb-idea.
The source code is released under:
Apache License
If you think the Android project adb-idea listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.developerphil.adbidea.adb.command; //w w w . j av a 2 s. c o m import com.android.ddmlib.IDevice; import com.intellij.openapi.project.Project; import org.jetbrains.android.facet.AndroidFacet; public interface Command { /** * * @return true if the command executed properly */ boolean run(Project project, IDevice device, AndroidFacet facet, String packageName); }