本文整理匯總了Java中com.intellij.codeInspection.redundantCast.RedundantCastInspection類的典型用法代碼示例。如果您正苦於以下問題:Java RedundantCastInspection類的具體用法?Java RedundantCastInspection怎麽用?Java RedundantCastInspection使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
RedundantCastInspection類屬於com.intellij.codeInspection.redundantCast包,在下文中一共展示了RedundantCastInspection類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testIgnore
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
public void testIgnore() throws Exception {
final RedundantCastInspection castInspection = new RedundantCastInspection();
castInspection.IGNORE_ANNOTATED_METHODS = true;
castInspection.IGNORE_SUSPICIOUS_METHOD_CALLS = true;
final LocalInspectionToolWrapper tool = new LocalInspectionToolWrapper(castInspection);
doTest("redundantCast/generics/" + getTestName(false), tool, "java 1.5");
}
示例2: configureLocalInspectionTools
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
@NotNull
@Override
protected LocalInspectionTool[] configureLocalInspectionTools() {
return new LocalInspectionTool[]{
new RedundantCastInspection()
};
}
示例3: setUp
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
@Override
protected void setUp() throws Exception {
super.setUp();
enableInspectionTools(new UnusedDeclarationInspection(), new UncheckedWarningLocalInspection(), new JavacQuirksInspection(), new RedundantCastInspection());
setLanguageLevel(LanguageLevel.JDK_1_6);
IdeaTestUtil.setTestVersion(JavaSdkVersion.JDK_1_6, getModule(), myTestRootDisposable);
}
示例4: setUp
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
@Override
protected void setUp() throws Exception {
super.setUp();
enableInspectionTools(new UnusedDeclarationInspection(), new UncheckedWarningLocalInspection(), new JavacQuirksInspection(), new RedundantCastInspection());
setLanguageLevel(LanguageLevel.JDK_1_7);
IdeaTestUtil.setTestVersion(JavaSdkVersion.JDK_1_7, getModule(), myTestRootDisposable);
}
示例5: configureLocalInspectionTools
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
@NotNull
@Override
protected LocalInspectionTool[] configureLocalInspectionTools() {
return new LocalInspectionTool[]{
new UncheckedWarningLocalInspection(),
new JavacQuirksInspection(),
new RedundantCastInspection()
};
}
示例6: setUp
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
@Override
protected void setUp() throws Exception {
super.setUp();
enableInspectionTools(new UnusedDeclarationInspection(), new UncheckedWarningLocalInspection(), new RedundantCastInspection());
setLanguageLevel(LanguageLevel.JDK_1_9);
IdeaTestUtil.setTestVersion(JavaSdkVersion.JDK_1_9, getModule(), getTestRootDisposable());
}
示例7: configureLocalInspectionTools
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
@NotNull
@Override
protected LocalInspectionTool[] configureLocalInspectionTools() {
return new LocalInspectionTool[]{
new UnusedSymbolLocalInspection(),
new UncheckedWarningLocalInspection(),
new JavacQuirksInspection(),
new RedundantCastInspection()
};
}
示例8: doTest
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
private void doTest() throws Exception {
doTest("redundantCast/" + getTestName(false), new RedundantCastInspection());
}
示例9: doTest
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
private void doTest() throws Exception {
final LocalInspectionToolWrapper toolWrapper = new LocalInspectionToolWrapper(new RedundantCastInspection());
doTest("redundantCast/generics/" + getTestName(false), toolWrapper, "java 1.5");
}
示例10: doTest
import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //導入依賴的package包/類
private void doTest() throws Exception {
final LocalInspectionToolWrapper tool = new LocalInspectionToolWrapper(new RedundantCastInspection());
doTest("redundantCast/lambda/" + getTestName(false), tool, "java 1.5");
}