MCPcopy Create free account
hub / github.com/badvision/jace / RAMEvent

Method RAMEvent

src/main/java/jace/core/RAMEvent.java:88–95  ·  view source on GitHub ↗

Creates a new instance of RAMEvent @param t @param s @param v @param address @param oldValue @param newValue

(TYPE t, SCOPE s, VALUE v, int address, int oldValue, int newValue)

Source from the content-addressed store, hash-verified

86 * @param newValue
87 */
88 public RAMEvent(TYPE t, SCOPE s, VALUE v, int address, int oldValue, int newValue) {
89 setType(t);
90 setScope(s);
91 setValue(v);
92 this.setAddress(address);
93 this.setOldValue(oldValue);
94 this.setNewValue(newValue);
95 }
96
97 public TYPE getType() {
98 return type;

Callers

nothing calls this directly

Calls 6

setTypeMethod · 0.95
setScopeMethod · 0.95
setValueMethod · 0.95
setAddressMethod · 0.95
setOldValueMethod · 0.95
setNewValueMethod · 0.95

Tested by

no test coverage detected