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

net.yapbam.data.event.DataEvent Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
package net.yapbam.data.event;

public abstract class DataEvent {
	private Object source;
	
	protected DataEvent(Object source) {
		this.source=source;
	}

	public Object getSource() {
		return this.source;
	}

	@SuppressWarnings("nls")
	@Override
	public String toString() {
		return this.getClass().getSimpleName()+"->"+this.source; //$NON-NLS-1$
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy