net.sourceforge.pmd.lang.ast.Node.getEndLine()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(7.7k)|赞(0)|评价(0)|浏览(275)

本文整理了Java中net.sourceforge.pmd.lang.ast.Node.getEndLine()方法的一些代码示例,展示了Node.getEndLine()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.getEndLine()方法的具体详情如下:
包路径:net.sourceforge.pmd.lang.ast.Node
类名称:Node
方法名:getEndLine

Node.getEndLine介绍

暂无

代码示例

代码示例来源:origin: pmd/pmd

  1. @Override
  2. public int getEndLine() {
  3. if (this.endLine > 0) {
  4. return this.endLine;
  5. }
  6. Node parent = jjtGetParent();
  7. if (parent != null) {
  8. return parent.getEndLine();
  9. }
  10. throw new RuntimeException("Unable to determine ending line of Node.");
  11. }

代码示例来源:origin: pmd/pmd

  1. private boolean useInlineHighlight(Node node) {
  2. return node.getBeginLine() == node.getEndLine();
  3. }

代码示例来源:origin: pmd/pmd

  1. private boolean isCommentNotWithin(FormalComment n1, Node n2, Node node) {
  2. if (n1 == null || n2 == null || node == null) {
  3. return true;
  4. }
  5. boolean isNotWithinNode2 = !(n1.getEndLine() < n2.getEndLine()
  6. || n1.getEndLine() == n2.getEndLine() && n1.getEndColumn() < n2.getEndColumn());
  7. boolean isNotSameClass = node.getFirstParentOfType(ASTClassOrInterfaceBody.class) != n2
  8. .getFirstParentOfType(ASTClassOrInterfaceBody.class);
  9. boolean isNodeWithinNode2 = node.getEndLine() < n2.getEndLine()
  10. || node.getEndLine() == n2.getEndLine() && node.getEndColumn() < n2.getEndColumn();
  11. return isNotWithinNode2 || isNotSameClass || isNodeWithinNode2;
  12. }

代码示例来源:origin: pmd/pmd

  1. /** Scroll the editor to a node and makes it visible. */
  2. private void scrollEditorToNode(Node node) {
  3. codeEditorArea.moveTo(node.getBeginLine() - 1, 0);
  4. if (codeEditorArea.getVisibleParagraphs().size() < 1) {
  5. return;
  6. }
  7. int visibleLength = codeEditorArea.lastVisibleParToAllParIndex() - codeEditorArea.firstVisibleParToAllParIndex();
  8. if (node.getEndLine() - node.getBeginLine() > visibleLength
  9. || node.getBeginLine() < codeEditorArea.firstVisibleParToAllParIndex()) {
  10. codeEditorArea.showParagraphAtTop(Math.max(node.getBeginLine() - 2, 0));
  11. } else if (node.getEndLine() > codeEditorArea.lastVisibleParToAllParIndex()) {
  12. codeEditorArea.showParagraphAtBottom(Math.min(node.getEndLine(), codeEditorArea.getParagraphs().size()));
  13. }
  14. }

代码示例来源:origin: pmd/pmd

  1. @Override
  2. public Object visit(ASTSubqueryOperation node, Object data) {
  3. // get previous sibling
  4. int thisIndex = node.jjtGetChildIndex();
  5. Node prevSibling = node.jjtGetParent().jjtGetChild(thisIndex - 1);
  6. checkIndentation(data, node, prevSibling.getBeginColumn(), node.getImage());
  7. // it should also be on the next line
  8. if (node.getBeginLine() != prevSibling.getEndLine() + 1) {
  9. addViolationWithMessage(data, node,
  10. node.getImage() + " should be on line " + (prevSibling.getEndLine() + 1));
  11. }
  12. return super.visit(node, data);
  13. }

代码示例来源:origin: pmd/pmd

  1. public ParametricRuleViolation(Rule theRule, RuleContext ctx, T node, String message) {
  2. rule = theRule;
  3. description = message;
  4. filename = ctx.getSourceCodeFilename();
  5. if (filename == null) {
  6. filename = "";
  7. }
  8. if (node != null) {
  9. beginLine = node.getBeginLine();
  10. beginColumn = node.getBeginColumn();
  11. endLine = node.getEndLine();
  12. endColumn = node.getEndColumn();
  13. }
  14. // Apply Rule specific suppressions
  15. if (node != null && rule != null) {
  16. setSuppression(rule, node);
  17. }
  18. }

代码示例来源:origin: pmd/pmd

  1. /**
  2. * Snapshots the absolute coordinates of the node in the code area
  3. * for the duration of the layering algorithm.
  4. */
  5. // TODO I don't think there's any good reason for this laziness,
  6. // if anything, it may cause trouble if the layering algorithm uses
  7. // a snapshot taken too late, with outdated line and column coordinates
  8. // I originally wrote it like that because I didn't think enough about it,
  9. // and I don't have time to simplify it before 6.5.0
  10. public PositionSnapshot snapshot() {
  11. int lastKnownStart = getAbsolutePosition(node.getBeginLine(), node.getBeginColumn() - 1);
  12. int lastKnownEnd = getAbsolutePosition(node.getEndLine(), node.getEndColumn());
  13. return new PositionSnapshot(lastKnownStart, lastKnownEnd);
  14. }

代码示例来源:origin: pmd/pmd

  1. public void select(Node node) {
  2. String[] lines = getLines();
  3. if (node.getBeginLine() >= 0) {
  4. setSelectionStart(getPosition(lines, node.getBeginLine(), node.getBeginColumn()));
  5. setSelectionEnd(getPosition(lines, node.getEndLine(), node.getEndColumn()) + 1);
  6. }
  7. requestFocus();
  8. }
  9. }

代码示例来源:origin: pmd/pmd

  1. @Override
  2. public void run() {
  3. try {
  4. sourceCodeArea.getHighlighter().removeAllHighlights();
  5. if (node == null) {
  6. return;
  7. }
  8. int startOffset = sourceCodeArea.getLineStartOffset(node.getBeginLine() - 1)
  9. + node.getBeginColumn() - 1;
  10. int end = sourceCodeArea.getLineStartOffset(node.getEndLine() - 1) + node.getEndColumn();
  11. sourceCodeArea.getHighlighter().addHighlight(startOffset, end,
  12. new DefaultHighlighter.DefaultHighlightPainter(HIGHLIGHT_COLOR));
  13. sourceCodeArea.moveCaretPosition(startOffset);
  14. } catch (BadLocationException exc) {
  15. throw new IllegalStateException(exc.getMessage());
  16. }
  17. }
  18. });

代码示例来源:origin: pmd/pmd

  1. private IntFunction<javafx.scene.Node> lineNumberFactory() {
  2. IntFunction<javafx.scene.Node> base = LineNumberFactory.get(codeEditorArea);
  3. Val<Integer> activePar = Val.wrap(codeEditorArea.currentParagraphProperty());
  4. return idx -> {
  5. javafx.scene.Node label = base.apply(idx);
  6. activePar.conditionOnShowing(label)
  7. .values()
  8. .subscribe(p -> label.pseudoClassStateChanged(PseudoClass.getPseudoClass("has-caret"), idx == p));
  9. // adds a pseudo class if part of the focus node appears on this line
  10. currentFocusNode.conditionOnShowing(label)
  11. .values()
  12. .subscribe(n -> label.pseudoClassStateChanged(PseudoClass.getPseudoClass("is-focus-node"),
  13. n != null && idx + 1 <= n.getEndLine() && idx + 1 >= n.getBeginLine()));
  14. return label;
  15. };
  16. }

代码示例来源:origin: pmd/pmd

  1. if (primaryExpression.getEndLine() != node.getEndLine() + 1) {
  2. addViolationWithMessage(data, primaryExpression, "Closing paranthesis should be on a new line.");

代码示例来源:origin: net.sourceforge.pmd/pmd-apex

  1. @Override
  2. public int getEndLine() {
  3. if (this.endLine > 0) {
  4. return this.endLine;
  5. }
  6. Node parent = jjtGetParent();
  7. if (parent != null) {
  8. return parent.getEndLine();
  9. }
  10. throw new RuntimeException("Unable to determine ending line of Node.");
  11. }

代码示例来源:origin: net.sourceforge.pmd/pmd-java

  1. private boolean isCommentNotWithin(FormalComment n1, Node n2, Node node) {
  2. if (n1 == null || n2 == null || node == null) {
  3. return true;
  4. }
  5. boolean isNotWithinNode2 = !(n1.getEndLine() < n2.getEndLine()
  6. || n1.getEndLine() == n2.getEndLine() && n1.getEndColumn() < n2.getEndColumn());
  7. boolean isNotSameClass = node.getFirstParentOfType(ASTClassOrInterfaceBody.class) != n2
  8. .getFirstParentOfType(ASTClassOrInterfaceBody.class);
  9. boolean isNodeWithinNode2 = node.getEndLine() < n2.getEndLine()
  10. || node.getEndLine() == n2.getEndLine() && node.getEndColumn() < n2.getEndColumn();
  11. return isNotWithinNode2 || isNotSameClass || isNodeWithinNode2;
  12. }

代码示例来源:origin: com.alibaba.p3c/p3c-pmd

  1. if (lastNode != null && lastNode.getEndLine() == lastComment.getEndLine()) {
  2. return false;
  3. lastEndLine = value.getEndLine();

代码示例来源:origin: net.sourceforge.pmd/pmd-core

  1. public ParametricRuleViolation(Rule theRule, RuleContext ctx, T node, String message) {
  2. rule = theRule;
  3. description = message;
  4. filename = ctx.getSourceCodeFilename();
  5. if (filename == null) {
  6. filename = "";
  7. }
  8. if (node != null) {
  9. beginLine = node.getBeginLine();
  10. beginColumn = node.getBeginColumn();
  11. endLine = node.getEndLine();
  12. endColumn = node.getEndColumn();
  13. }
  14. // Apply Rule specific suppressions
  15. if (node != null && rule != null) {
  16. setSuppression(rule, node);
  17. }
  18. }

代码示例来源:origin: net.sourceforge.pmd/pmd-core

  1. public void select(Node node) {
  2. String[] lines = getLines();
  3. if (node.getBeginLine() >= 0) {
  4. setSelectionStart(getPosition(lines, node.getBeginLine(), node.getBeginColumn()));
  5. setSelectionEnd(getPosition(lines, node.getEndLine(), node.getEndColumn()) + 1);
  6. }
  7. requestFocus();
  8. }
  9. }

代码示例来源:origin: net.sourceforge.pmd/pmd-core

  1. @Override
  2. public void run() {
  3. try {
  4. sourceCodeArea.getHighlighter().removeAllHighlights();
  5. if (node == null) {
  6. return;
  7. }
  8. int startOffset = sourceCodeArea.getLineStartOffset(node.getBeginLine() - 1)
  9. + node.getBeginColumn() - 1;
  10. int end = sourceCodeArea.getLineStartOffset(node.getEndLine() - 1) + node.getEndColumn();
  11. sourceCodeArea.getHighlighter().addHighlight(startOffset, end,
  12. new DefaultHighlighter.DefaultHighlightPainter(HIGHLIGHT_COLOR));
  13. sourceCodeArea.moveCaretPosition(startOffset);
  14. } catch (BadLocationException exc) {
  15. throw new IllegalStateException(exc.getMessage());
  16. }
  17. }
  18. });

相关文章