當前位置: 首頁>>代碼示例>>Java>>正文


Java PsiComment.getText方法代碼示例

本文整理匯總了Java中com.intellij.psi.PsiComment.getText方法的典型用法代碼示例。如果您正苦於以下問題:Java PsiComment.getText方法的具體用法?Java PsiComment.getText怎麽用?Java PsiComment.getText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.intellij.psi.PsiComment的用法示例。


在下文中一共展示了PsiComment.getText方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getTypeComment

import com.intellij.psi.PsiComment; //導入方法依賴的package包/類
@Nullable
private static String getTypeComment(@NotNull PyTargetExpression target) {
  final PsiElement commentContainer = PsiTreeUtil.getParentOfType(target, PyAssignmentStatement.class, PyWithStatement.class,
                                                                  PyForPart.class);
  if (commentContainer != null) {
    final PsiComment comment = getSameLineTrailingCommentChild(commentContainer);
    if (comment != null) {
      final String text = comment.getText();
      final Matcher m = TYPE_COMMENT_PATTERN.matcher(text);
      if (m.matches()) {
        return m.group(1);
      }
    }
  }
  return null;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:17,代碼來源:PyTypingTypeProvider.java

示例2: getUncommentedText

import com.intellij.psi.PsiComment; //導入方法依賴的package包/類
@Nullable
private static String getUncommentedText(@NotNull final PsiComment comment) {
  final PsiFile psiFile = comment.getContainingFile();
  final Language language = psiFile.getViewProvider().getBaseLanguage();
  final Commenter commenter = LanguageCommenters.INSTANCE.forLanguage(language);
  if (commenter != null) {
    String text = comment.getText();

    final String prefix = commenter.getBlockCommentPrefix();
    if (prefix != null && text.startsWith(prefix)) {
      text = text.substring(prefix.length());
      final String suffix = commenter.getBlockCommentSuffix();
      if (suffix != null && text.length() > suffix.length()) {
        return text.substring(0, text.length() - suffix.length()).trim();
      }
    }
  }

  return null;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:21,代碼來源:XmlDeclareIdInCommentAction.java

示例3: satisfiedBy

import com.intellij.psi.PsiComment; //導入方法依賴的package包/類
public boolean satisfiedBy(PsiElement element) {
  if (!(element instanceof PsiComment)) {
    return false;
  }
  if (element instanceof PsiDocComment) {
    return false;
  }
  final PsiComment comment = (PsiComment)element;
  final IElementType type = comment.getTokenType();
  if (!JavaTokenType.END_OF_LINE_COMMENT.equals(type)) {
    return false;
  }
  final String text = comment.getText();
  final Matcher matcher = NO_INSPECTION_PATTERN.matcher(text);
  return !matcher.matches();
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:17,代碼來源:EndOfLineCommentPredicate.java

示例4: getRangeInElement

import com.intellij.psi.PsiComment; //導入方法依賴的package包/類
@NotNull
@Override
public TextRange getRangeInElement(@NotNull final PsiComment element) {
  final String text = element.getText();
  if (text.startsWith("//")) return new TextRange(2, element.getTextLength());
  final int length = text.length();
  if (length > 4 && text.startsWith("/**") && text.endsWith("*/")) return new TextRange(3, element.getTextLength()-2);
  if (length > 3 && text.startsWith("/*") && text.endsWith("*/")) return new TextRange(2, element.getTextLength()-2);
  if (length > 6 && text.startsWith("<!--") && text.endsWith("-->")) return new TextRange(4, element.getTextLength()-3);
  if (text.startsWith("--")) return new TextRange(2, element.getTextLength());
  if (text.startsWith("#")) return new TextRange(1, element.getTextLength());
  return super.getRangeInElement(element);
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:14,代碼來源:PsiCommentManipulator.java

示例5: getCommentContents

import com.intellij.psi.PsiComment; //導入方法依賴的package包/類
private static String getCommentContents(PsiComment comment) {
  final String text = comment.getText();
  return text.substring(2);
}
 
開發者ID:internetisalie,項目名稱:lua-for-idea,代碼行數:5,代碼來源:ChangeToCStyleCommentIntention.java


注:本文中的com.intellij.psi.PsiComment.getText方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。