當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。