StackObject.java
01 /**
02  * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03  */
04 package net.sourceforge.pmd.lang.dfa;
05 
06 
07 public class StackObject {
08 
09     private int type;
10     private DataFlowNode node;
11 
12     public StackObject(int type, DataFlowNode node) {
13         this.type = type;
14         this.node = node;
15     }
16 
17     public DataFlowNode getDataFlowNode() {
18         return this.node;
19     }
20 
21     public int getType() {
22         return this.type;
23     }
24 }