Package com.intellij.codeInsight.hint

Examples of com.intellij.codeInsight.hint.ShowParameterInfoHandler


    }
  }

  public static void showParameterInfo(Editor editor) {
    final PsiFile psiFile = PsiDocumentManager.getInstance(editor.getProject()).getPsiFile(editor.getDocument());
    new ShowParameterInfoHandler().invoke(editor.getProject(), editor, psiFile);
  }
View Full Code Here


        }

        @Override
        public void handleInsert(InsertionContext context, LookupElement item) {
          super.handleInsert(context, item);
          new ShowParameterInfoHandler().invoke(context.getProject(), context.getEditor(), context.getFile());
        }
      }).withTailText(tailText).withCaseSensitivity(false);
  }
View Full Code Here

TOP

Related Classes of com.intellij.codeInsight.hint.ShowParameterInfoHandler

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.