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

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

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

Node.getEndColumn介绍

暂无

代码示例

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

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

代码示例来源: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. private static boolean isAfter(Node n1, Node n2) {
  2. return n1.getBeginLine() > n2.getBeginLine()
  3. || n1.getBeginLine() == n2.getBeginLine() && n1.getBeginColumn() >= n2.getEndColumn();
  4. }

代码示例来源: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. if (argument.jjtGetChild(0).getEndColumn() > longestParameterEndColumn) {
  2. longestParameterEndColumn = argument.jjtGetChild(0).getEndColumn();

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

  1. @Override
  2. public int getEndColumn() {
  3. if (this.endColumn > 0) {
  4. return this.endColumn;
  5. }
  6. Node parent = jjtGetParent();
  7. if (parent != null) {
  8. return parent.getEndColumn();
  9. }
  10. throw new RuntimeException("Unable to determine ending column 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: net.sourceforge.pmd/pmd-java

  1. private static boolean isAfter(Node n1, Node n2) {
  2. return n1.getBeginLine() > n2.getBeginLine()
  3. || n1.getBeginLine() == n2.getBeginLine() && n1.getBeginColumn() >= n2.getEndColumn();
  4. }

代码示例来源: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. });

相关文章