1 package gov.nasa.jpf; 20 21 25 public class State { 26 VMState vmState; 27 SearchState searchState; 28 boolean hasSuccessor; boolean isNew; 30 31 public State (boolean isNew, boolean hasSuccessor, SearchState searchState, 32 VMState vmState) { 33 this.isNew = isNew; 34 this.hasSuccessor = hasSuccessor; 35 this.searchState = searchState; 36 this.vmState = vmState; 37 } 38 39 public boolean isNew () { 40 return isNew; 41 } 42 43 public SearchState getSearchState () { 44 return searchState; 45 } 46 47 public VMState getVMState () { 48 return vmState; 49 } 50 51 public boolean hasSuccessor () { 52 return hasSuccessor; 53 } 54 55 public void restore () { 56 } 57 } | Popular Tags |