Package com.intellij.codeInsight.generation

Examples of com.intellij.codeInsight.generation.CommentByBlockCommentHandler


   */
  void doBlockCommentTest(@NotNull String before, @NotNull String expected) {
    doExecuteActionTest(before, expected, new Runnable() {
      @Override
      public void run() {
        new CommentByBlockCommentHandler().invoke(myFixture.getProject(), myFixture.getEditor(), myFixture.getFile());
      }
    });
  }
View Full Code Here


   */
  void doBlockCommentTest(@NotNull String before, @NotNull String expected) {
    doExecuteActionTest(before, expected, new Runnable() {
      @Override
      public void run() {
        new CommentByBlockCommentHandler().invoke(myFixture.getProject(), myFixture.getEditor(),
                                                  myFixture.getEditor().getCaretModel().getPrimaryCaret(), myFixture.getFile());
      }
    });
  }
View Full Code Here

TOP

Related Classes of com.intellij.codeInsight.generation.CommentByBlockCommentHandler

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.