34public class InteractionEvent {
36public enum InteractionType {
57 ITEM_CONTAINER_INTERACTION_EVENT,
69 private final InteractionType type;
70 private boolean handled;
72 protected InteractionEvent(InteractionType type) {
76 public InteractionType getType() {
80 public boolean isHandled() {
84 public void setHandled(
boolean handled) {
85 this.handled = handled;