net.sourceforge.pmd.lang.ast.Node类的使用及代码示例

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

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

Node介绍

[英]All AST nodes must implement this interface. It provides basic machinery for constructing the parent and child relationships between nodes.
[中]所有AST节点都必须实现此接口。它为构建节点之间的父子关系提供了基本机制。

代码示例

代码示例来源: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 int checkEachChildOnNextLine(Object data, Node parent, int firstLine, int indentation) {
  2. int currentLine = firstLine;
  3. for (int i = 0; i < parent.jjtGetNumChildren(); i++) {
  4. Node child = parent.jjtGetChild(i);
  5. if (child.getBeginLine() != currentLine) {
  6. addViolationWithMessage(data, child, child.getImage() + " should be on line " + currentLine);
  7. } else if (i > 0 && child.getBeginColumn() != indentation) {
  8. addViolationWithMessage(data, child, child.getImage() + " should begin at column " + indentation);
  9. }
  10. // next entry needs to be on the next line
  11. currentLine++;
  12. }
  13. return currentLine;
  14. }

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

  1. public void closeNodeScope(Node n, int num) {
  2. mk = marks.remove(marks.size()-1);
  3. while (num-- > 0) {
  4. Node c = popNode();
  5. c.jjtSetParent(n);
  6. n.jjtAddChild(c, num);
  7. }
  8. n.jjtClose();
  9. pushNode(n);
  10. node_created = true;
  11. }

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

  1. /**
  2. * This method can be called on a prefix
  3. */
  4. private ASTArguments getSuffixMethodArgs(Node node) {
  5. Node prefix = node.jjtGetParent();
  6. if (prefix instanceof ASTPrimaryPrefix
  7. && prefix.jjtGetParent().jjtGetNumChildren() >= 2) {
  8. return prefix.jjtGetParent().jjtGetChild(1).getFirstChildOfType(ASTArguments.class);
  9. }
  10. return null;
  11. }

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

代码示例来源: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. @Override
  2. public boolean isTargetMethod(JavaNameOccurrence occ) {
  3. if (occ.getNameForWhichThisIsAQualifier() != null
  4. && occ.getNameForWhichThisIsAQualifier().getImage().indexOf("trim") != -1) {
  5. Node pExpression = occ.getLocation().jjtGetParent().jjtGetParent();
  6. if (pExpression.jjtGetNumChildren() > 2 && "length".equals(pExpression.jjtGetChild(2).getImage())) {
  7. return true;
  8. }
  9. }
  10. return false;
  11. }

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

  1. private void collectNames(String target, List<String> names, Node node) {
  2. for (int i = 0; i < node.jjtGetNumChildren(); i++) {
  3. Node child = node.jjtGetChild(i);
  4. if (child.jjtGetNumChildren() > 0) {
  5. collectNames(target, names, child);
  6. } else {
  7. if (child instanceof ASTName && isQualifiedName(child)
  8. && target.equals(getVariableName(child.getImage()))) {
  9. names.add(child.getImage());
  10. }
  11. }
  12. }
  13. }

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

  1. private static int compareNodes(Node n1, Node n2) {
  2. int l1 = n1.getBeginLine();
  3. int l2 = n2.getBeginLine();
  4. if (l1 == l2) {
  5. return n1.getBeginColumn() - n2.getBeginColumn();
  6. }
  7. return l1 - l2;
  8. }

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

  1. private void setVariableNameIfExists(Node node) {
  2. if (node instanceof ASTFieldDeclaration) {
  3. variableName = getVariableNames((ASTFieldDeclaration) node);
  4. } else if (node instanceof ASTLocalVariableDeclaration) {
  5. variableName = getVariableNames((ASTLocalVariableDeclaration) node);
  6. } else if (node instanceof ASTVariableDeclarator) {
  7. variableName = node.jjtGetChild(0).getImage();
  8. } else if (node instanceof ASTVariableDeclaratorId) {
  9. variableName = node.getImage();
  10. } else if (node instanceof ASTFormalParameter) {
  11. setVariableNameIfExists(node.getFirstChildOfType(ASTVariableDeclaratorId.class));
  12. } else {
  13. variableName = "";
  14. }
  15. }
  16. }

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

  1. protected Node getPreviousSibling(Node contextNode) {
  2. Node parentNode = contextNode.jjtGetParent();
  3. if (parentNode != null) {
  4. int prevPosition = contextNode.jjtGetChildIndex() - 1;
  5. if (prevPosition >= 0) {
  6. return parentNode.jjtGetChild(prevPosition);
  7. }
  8. }
  9. return null;
  10. }

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

  1. if (argument.jjtGetChild(0).getEndColumn() > longestParameterEndColumn) {
  2. longestParameterEndColumn = argument.jjtGetChild(0).getEndColumn();
  3. && arguments.get(0).jjtGetChild(1).getBeginColumn() > expectedBeginColumn) {
  4. expectedBeginColumn = arguments.get(0).jjtGetChild(1).getBeginColumn();
  5. checkIndentation(data, expr, expectedBeginColumn, expr.getImage());
  6. if (primaryExpression.getEndLine() != node.getEndLine() + 1) {
  7. addViolationWithMessage(data, primaryExpression, "Closing paranthesis should be on a new line.");

代码示例来源: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. /**
  2. * Returns the name of the annotation as it is used,
  3. * eg {@code java.lang.Override} or {@code Override}.
  4. */
  5. public String getAnnotationName() {
  6. return jjtGetChild(0).jjtGetChild(0).getImage();
  7. }

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

  1. private <T extends AstNode> EcmascriptNode<T> buildInternal(T astNode) {
  2. // Create a Node
  3. EcmascriptNode<T> node = createNodeAdapter(astNode);
  4. // Append to parent
  5. Node parent = nodes.isEmpty() ? null : nodes.peek();
  6. if (parent != null) {
  7. parent.jjtAddChild(node, parent.jjtGetNumChildren());
  8. node.jjtSetParent(parent);
  9. }
  10. handleParseProblems(node);
  11. // Build the children...
  12. nodes.push(node);
  13. parents.push(astNode);
  14. astNode.visit(this);
  15. nodes.pop();
  16. parents.pop();
  17. return node;
  18. }

代码示例来源: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. private ASTTypeParameter getTypeParameterDeclaration(Node startNode, String image) {
  2. for (Node parent = startNode.jjtGetParent(); parent != null; parent = parent.jjtGetParent()) {
  3. ASTTypeParameters typeParameters = null;
  4. if (parent instanceof ASTTypeParameters) { // if type parameter defined in the same < >
  5. typeParameters = (ASTTypeParameters) parent;
  6. } else if (parent instanceof ASTConstructorDeclaration
  7. || parent instanceof ASTMethodDeclaration
  8. || parent instanceof ASTClassOrInterfaceDeclaration) {
  9. typeParameters = parent.getFirstChildOfType(ASTTypeParameters.class);
  10. }
  11. if (typeParameters != null) {
  12. for (int index = 0; index < typeParameters.jjtGetNumChildren(); ++index) {
  13. String imageToCompareTo = typeParameters.jjtGetChild(index).getImage();
  14. if (imageToCompareTo != null && imageToCompareTo.equals(image)) {
  15. return (ASTTypeParameter) typeParameters.jjtGetChild(index);
  16. }
  17. }
  18. }
  19. }
  20. return null;
  21. }

代码示例来源: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 String getLastPartOfName(Node name) {
  2. String result = "";
  3. if (name != null) {
  4. result = name.getImage();
  5. }
  6. int dotIndex = result.lastIndexOf('.');
  7. if (dotIndex > -1 && result.length() > dotIndex + 1) {
  8. result = result.substring(dotIndex + 1);
  9. }
  10. return result;
  11. }

相关文章