Clover coverage report - PMD - 3.7
Coverage timestamp: Wed May 31 2006 09:25:59 EDT
file stats: LOC: 20   Methods: 3
NCLOC: 15   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
StackObject.java - 100% 100% 100%
coverage
 1    package net.sourceforge.pmd.dfa;
 2   
 3    public class StackObject {
 4   
 5    private int type;
 6    private IDataFlowNode node;
 7   
 8  203 protected StackObject(int type, IDataFlowNode node) {
 9  203 this.type = type;
 10  203 this.node = node;
 11    }
 12   
 13  200 public IDataFlowNode getDataFlowNode() {
 14  200 return this.node;
 15    }
 16   
 17  686 public int getType() {
 18  686 return this.type;
 19    }
 20    }