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

jpower.event.DeadEvent Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package jpower.event;

import java.io.Serializable;

public class DeadEvent implements Serializable
{

    private final Object event;

    public DeadEvent(Object event)
    {
        this.event = event;
    }

    public Object getEvent()
    {
        return event;
    }

    public Class getType()
    {
        return event.getClass();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy