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

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

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

Node.getDataFlowNode介绍

暂无

代码示例

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

  1. @Override
  2. public DataFlowNode getDataFlowNode() {
  3. if (this.dataFlowNode == null) {
  4. if (this.parent != null) {
  5. return parent.getDataFlowNode();
  6. }
  7. return null; // TODO wise?
  8. }
  9. return dataFlowNode;
  10. }

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

  1. private void computeNow(Node node) {
  2. DataFlowNode inode = node.getDataFlowNode();
  3. List<VariableAccess> undefinitions = markUsages(inode);
  4. // all variables are first in state undefinition
  5. DataFlowNode firstINode = inode.getFlow().get(0);
  6. firstINode.setVariableAccess(undefinitions);
  7. // all variables are getting undefined when leaving scope
  8. DataFlowNode lastINode = inode.getFlow().get(inode.getFlow().size() - 1);
  9. lastINode.setVariableAccess(undefinitions);
  10. }

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

  1. private void computeNow(Node node) {
  2. DataFlowNode inode = node.getDataFlowNode();
  3. List<VariableAccess> undefinitions = markUsages(inode);
  4. // all variables are first in state undefinition
  5. DataFlowNode firstINode = inode.getFlow().get(0);
  6. firstINode.setVariableAccess(undefinitions);
  7. // all variables are getting undefined when leaving scope
  8. DataFlowNode lastINode = inode.getFlow().get(inode.getFlow().size() - 1);
  9. lastINode.setVariableAccess(undefinitions);
  10. }

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

  1. List<DataFlowNode> flow = node.getDataFlowNode().getFlow();
  2. FontMetrics fm = g.getFontMetrics();
  3. int halfFontHeight = fm.getAscent() / 2;

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

  1. @Override
  2. public DataFlowNode getDataFlowNode() {
  3. if (this.dataFlowNode == null) {
  4. if (this.parent != null) {
  5. return parent.getDataFlowNode();
  6. }
  7. return null; // TODO wise?
  8. }
  9. return dataFlowNode;
  10. }

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

  1. private void computeNow(Node node) {
  2. DataFlowNode inode = node.getDataFlowNode();
  3. List<VariableAccess> undefinitions = markUsages(inode);
  4. // all variables are first in state undefinition
  5. DataFlowNode firstINode = inode.getFlow().get(0);
  6. firstINode.setVariableAccess(undefinitions);
  7. // all variables are getting undefined when leaving scope
  8. DataFlowNode lastINode = inode.getFlow().get(inode.getFlow().size() - 1);
  9. lastINode.setVariableAccess(undefinitions);
  10. }

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

  1. List<DataFlowNode> flow = node.getDataFlowNode().getFlow();
  2. FontMetrics fm = g.getFontMetrics();
  3. int halfFontHeight = fm.getAscent() / 2;

相关文章