Package com.intellij.codeInsight.hint

Examples of com.intellij.codeInsight.hint.HintManager.showErrorHint()


                int start = element.getTextOffset() + e.getStartOffset();
                int end = start + e.getLength();
                editor.getCaretModel().moveToOffset(end);
                editor.getSelectionModel().setSelection(start, end);
            }
            hintManager.showErrorHint(editor, e.getMessage());
        }
    }

    protected abstract void processIntention(@NotNull PsiElement element, Editor editor)
            throws IntentionExecutionException;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.