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

com.opdar.gulosity.event.base.ResultEvent Maven / Gradle / Ivy

The newest version!
package com.opdar.gulosity.event.base;

/**
 * Created by Shey on 2016/8/22.
 */
public abstract class ResultEvent implements Event {
    private T result;

    public T getResult() {
        return result;
    }

    public void setResult(T result) {
        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy