All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rx.core.EventArgs Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.rx.core;

import lombok.AccessLevel;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

import java.io.Serializable;

@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class EventArgs implements Serializable {
    public static final EventArgs EMPTY = new EventArgs();
    private static final long serialVersionUID = 8965443362204763240L;

    @Getter
    @Setter
    private boolean cancel;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy