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

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

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

Node.jjtGetChild介绍

[英]This method returns a child node. The children are numbered from zero, left to right.
[中]此方法返回一个子节点。孩子们从零开始编号,从左到右。

代码示例

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

  1. private ASTCatchStatement getCatch(Node n) {
  2. for (int i = 0; i < n.jjtGetNumChildren(); i++) {
  3. if (n.jjtGetChild(i) instanceof ASTCatchStatement) {
  4. return (ASTCatchStatement) n.jjtGetChild(i);
  5. }
  6. }
  7. return null;
  8. }
  9. }

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

  1. protected Node getNextSibling(Node contextNode) {
  2. Node parentNode = contextNode.jjtGetParent();
  3. if (parentNode != null) {
  4. int nextPosition = contextNode.jjtGetChildIndex() + 1;
  5. if (nextPosition < parentNode.jjtGetNumChildren()) {
  6. return parentNode.jjtGetChild(nextPosition);
  7. }
  8. }
  9. return null;
  10. }

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

  1. private Node skipAnnotations(Node p) {
  2. int index = 0;
  3. Node n = p.jjtGetChild(index++);
  4. while (n instanceof ASTAnnotation && index < p.jjtGetNumChildren()) {
  5. n = p.jjtGetChild(index++);
  6. }
  7. return n;
  8. }
  9. }

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

  1. private Node getNextSibling(Node current) {
  2. if (current.jjtGetParent().jjtGetNumChildren() > current.jjtGetChildIndex() + 1) {
  3. return current.jjtGetParent().jjtGetChild(current.jjtGetChildIndex() + 1);
  4. }
  5. return null;
  6. }

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

  1. private boolean hasAssignmentOperator(Node node) {
  2. if (node instanceof ASTStatementExpression || node instanceof ASTExpression) {
  3. if (node.jjtGetNumChildren() >= 2 && node.jjtGetChild(1) instanceof ASTAssignmentOperator) {
  4. return true;
  5. }
  6. }
  7. return false;
  8. }

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

  1. private boolean couldBeMethodCall(JavaNode node) {
  2. if (node.getNthParent(2) instanceof ASTPrimaryExpression && node.getNthParent(1) instanceof ASTPrimaryPrefix) {
  3. int nextSibling = node.jjtGetParent().jjtGetChildIndex() + 1;
  4. if (node.getNthParent(2).jjtGetNumChildren() > nextSibling) {
  5. return node.getNthParent(2).jjtGetChild(nextSibling) instanceof ASTPrimarySuffix;
  6. }
  7. }
  8. return false;
  9. }

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

  1. protected Node getFirstChild(Node contextNode) {
  2. if (contextNode.jjtGetNumChildren() > 0) {
  3. return contextNode.jjtGetChild(0);
  4. } else {
  5. return null;
  6. }
  7. }

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

  1. private boolean isAppendingStringLiteral(Node node) {
  2. Node n = node;
  3. while (n.jjtGetNumChildren() != 0 && !(n instanceof ASTLiteral)) {
  4. n = n.jjtGetChild(0);
  5. }
  6. return n instanceof ASTLiteral;
  7. }

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

  1. private Node getFirstChildOrThis(Node node) {
  2. if (node.jjtGetNumChildren() > 0) {
  3. return node.jjtGetChild(0);
  4. }
  5. return node;
  6. }

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

  1. private boolean hasOneBlockStmt(Node node) {
  2. return node.jjtGetChild(0) instanceof ASTBlock && node.jjtGetChild(0).jjtGetNumChildren() == 1
  3. && terminatesInBooleanLiteral(node.jjtGetChild(0).jjtGetChild(0));
  4. }

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

  1. /**
  2. * Returns the first child node going down 'level' levels or null if level
  3. * is invalid
  4. */
  5. private Node getDescendant(Node node, int level) {
  6. Node n = node;
  7. for (int i = 0; i < level; i++) {
  8. if (n.jjtGetNumChildren() == 0) {
  9. return null;
  10. }
  11. n = n.jjtGetChild(0);
  12. }
  13. return n;
  14. }

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

  1. private boolean hasName(Node n) {
  2. return n.jjtGetNumChildren() > 0 && n.jjtGetChild(0) instanceof ASTName;
  3. }

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

  1. protected Node getLastChild(Node contextNode) {
  2. if (contextNode.jjtGetNumChildren() > 0) {
  3. return contextNode.jjtGetChild(contextNode.jjtGetNumChildren() - 1);
  4. } else {
  5. return null;
  6. }
  7. }
  8. }

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

  1. private void moveToNext() {
  2. while (i < parent.jjtGetNumChildren() && !(targetChildType.isInstance(parent.jjtGetChild(i)))) {
  3. i++;
  4. }
  5. }

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

  1. private boolean hasNameAsChild(Node node) {
  2. if (node.jjtGetNumChildren() > 0) {
  3. if (node.jjtGetChild(0) instanceof ASTName) {
  4. return true;
  5. } else {
  6. return hasNameAsChild(node.jjtGetChild(0));
  7. }
  8. }
  9. return false;
  10. }

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

  1. /**
  2. * @see javax.swing.tree.TreeModel#getIndexOfChild(java.lang.Object,java.lang.Object)
  3. */
  4. @Override
  5. public int getIndexOfChild(Object parent, Object child) {
  6. Node node = (Node) parent;
  7. for (int i = 0; i < node.jjtGetNumChildren(); i++) {
  8. if (node.jjtGetChild(i).equals(child)) {
  9. return i;
  10. }
  11. }
  12. return -1;
  13. }

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

  1. private boolean isFirstChild(Node node, Class<?> clazz) {
  2. return node.jjtGetNumChildren() == 1 && clazz.isAssignableFrom(node.jjtGetChild(0).getClass());
  3. }
  4. }

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

  1. private String getName(Node node) {
  2. if (node.jjtGetNumChildren() > 0) {
  3. if (node.jjtGetChild(0) instanceof ASTName) {
  4. return ((ASTName) node.jjtGetChild(0)).getImage();
  5. } else {
  6. return getName(node.jjtGetChild(0));
  7. }
  8. }
  9. throw new IllegalArgumentException("Check with hasNameAsChild() first!");
  10. }
  11. }

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

  1. private Node getLastChild(Node node) {
  2. if (node.jjtGetNumChildren() == 0) {
  3. return node;
  4. }
  5. return getLastChild(node.jjtGetChild(0));
  6. }

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

  1. /**
  2. * Indicate whether this node is allocating a new object.
  3. *
  4. * @param n
  5. * node that might be allocating a new object
  6. * @return true if child 0 is an AllocationExpression
  7. */
  8. private boolean isAllocation(Node n) {
  9. return n.jjtGetNumChildren() > 0 && n.jjtGetChild(0) instanceof ASTAllocationExpression
  10. && n.jjtGetParent().jjtGetNumChildren() == 1;
  11. }

相关文章