Clover coverage report - PMD - 3.9
Coverage timestamp: Tue Dec 19 2006 09:38:44 EST
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  216 protected StackObject(int type, IDataFlowNode node) {
 9  216 this.type = type;
 10  216 this.node = node;
 11    }
 12   
 13  211 public IDataFlowNode getDataFlowNode() {
 14  211 return this.node;
 15    }
 16   
 17  720 public int getType() {
 18  720 return this.type;
 19    }
 20    }