1 package net.sourceforge.pmd.dfa; 2 3 public class StackObject { 4 5 private int type; 6 private IDataFlowNode node; 7 8 protected StackObject(int type, IDataFlowNode node) { 9 this.type = type; 10 this.node = node; 11 } 12 13 public IDataFlowNode getDataFlowNode() { 14 return this.node; 15 } 16 17 public int getType() { 18 return this.type; 19 } 20 }