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

prompto.debug.event.ProcessReadyDebugEvent Maven / Gradle / Ivy

The newest version!
package prompto.debug.event;

import prompto.debug.IDebugEventListener;

public class ProcessReadyDebugEvent implements IDebugEvent {
	
	@Override
	public void execute(IDebugEventListener listener) {
		listener.onProcessReadyEvent();
	}
	
	@Override
	public int hashCode() {
		return this.getClass().hashCode();
	}

	@Override
	public boolean equals(Object other) {
		return other==this || other instanceof ProcessReadyDebugEvent;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy