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)
| 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; |
nothing calls this directly
no test coverage detected