StateInfo constructor

StateInfo(
  1. int state,
  2. int next
)

Implementation

StateInfo(int state, int next) {
  this.state = state;
  this.next = next;
}