本文整理汇总了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");
}