Package com.intellij.codeInsight.daemon.quickFix

Examples of com.intellij.codeInsight.daemon.quickFix.CreateFileFix


              holder.registerProblem(
                ref.getElement(), ref.getRangeInElement(),
                isOnTheFly ? "Path '" + ref.getCanonicalText() + "' not found" : "Path not found",
                isOnTheFly && dir != null
                ? new LocalQuickFix[]{new CreateFileFix(i < refs.length - 1, ref.getCanonicalText(), dir)}
                : LocalQuickFix.EMPTY_ARRAY
              );
              //holder.registerProblem(element, "Can't resolve '" + element.getText() + "'",
              //                       ProblemHighlightType.ERROR);
              break;
View Full Code Here

TOP

Related Classes of com.intellij.codeInsight.daemon.quickFix.CreateFileFix

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.