当前位置: 首页>>代码示例>>Java>>正文


Java RedundantCastInspection类代码示例

本文整理汇总了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");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:RedundantCast15Test.java

示例2: configureLocalInspectionTools

import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //导入依赖的package包/类
@NotNull
@Override
protected LocalInspectionTool[] configureLocalInspectionTools() {
  return new LocalInspectionTool[]{
    new RedundantCastInspection()
  };
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:LambdaRedundantCastTest.java

示例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);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:LightAdvHighlightingJdk6Test.java

示例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);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:LightAdvHighlightingJdk7Test.java

示例5: configureLocalInspectionTools

import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //导入依赖的package包/类
@NotNull
@Override
protected LocalInspectionTool[] configureLocalInspectionTools() {
  return new LocalInspectionTool[]{
    new UncheckedWarningLocalInspection(),
    new JavacQuirksInspection(),
    new RedundantCastInspection()
  };
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:AmbiguousMethodCallTest.java

示例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());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:8,代码来源:LightAdvHighlightingJdk9Test.java

示例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()
  };
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:11,代码来源:LightAdvHighlightingJdk6Test.java

示例8: doTest

import com.intellij.codeInspection.redundantCast.RedundantCastInspection; //导入依赖的package包/类
private void doTest() throws Exception {
  doTest("redundantCast/" + getTestName(false), new RedundantCastInspection());
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:RedundantCastTest.java

示例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");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:RedundantCast15Test.java

示例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");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:RedundantCast18Test.java


注:本文中的com.intellij.codeInspection.redundantCast.RedundantCastInspection类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。