
org.jetbrains.android.inspections.lint.AndroidLintQuickFix Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A packaging of the IntelliJ Community Edition android library.
This is release number 1 of trunk branch 142.
The newest version!
package org.jetbrains.android.inspections.lint;
import com.intellij.psi.PsiElement;
import org.jetbrains.annotations.NotNull;
/**
* @author Eugene.Kudelevsky
*/
public interface AndroidLintQuickFix {
AndroidLintQuickFix[] EMPTY_ARRAY = new AndroidLintQuickFix[0];
void apply(@NotNull PsiElement startElement, @NotNull PsiElement endElement, @NotNull AndroidQuickfixContexts.Context context);
boolean isApplicable(@NotNull PsiElement startElement, @NotNull PsiElement endElement, @NotNull AndroidQuickfixContexts.ContextType contextType);
@NotNull
String getName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy