135136137138139140141142143144
Event event = new Event(object, protocol, name, type, key, oldValue); event.setNewValue(newValue); fireBeforeAdd(event); if (event.isIgnored()) { throw new EventIgnoredException(); } return event.getNewValue(); }
153154155156157158159160161162
Event event = new Event(object, protocol, name, type, key, oldValue); event.setNewValue(newValue); fireBeforeSet(event); if (event.isIgnored()) { throw new EventIgnoredException(); } return event.getNewValue(); }
171172173174175176177178179180
Event event = new Event(object, protocol, name, type, key, value); event.setNewValue(value); fireBeforeRemove(event); if (event.isIgnored()) { throw new EventIgnoredException(); } return event.getNewValue(); }