Package com.intellij.codeInspection.ex

Examples of com.intellij.codeInspection.ex.ProblemDescriptorImpl


      } while (result);
    }
  }

  private static void registerHighlighting(TextAttributesKey attributesKey, GherkinStep step, TextRange range, ProblemsHolder holder) {
    final ProblemDescriptor descriptor = new ProblemDescriptorImpl(step, step, "", LocalQuickFix.EMPTY_ARRAY,
                                                                   ProblemHighlightType.INFORMATION, false, range, false, null,
                                                                   holder.isOnTheFly());
    descriptor.setTextAttributes(attributesKey);
    holder.registerProblem(descriptor);
  }
View Full Code Here

TOP

Related Classes of com.intellij.codeInspection.ex.ProblemDescriptorImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.