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

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

The newest version!
package prompto.debug.event;

import prompto.debug.IDebugEventListener;

public class ConnectedDebugEvent implements IDebugEvent {
	
	String host;
	int port;
	
	public ConnectedDebugEvent() {
	}
	
	public ConnectedDebugEvent(String host, int port) {
		this.host = host;
		this.port = port;
	}

	public void setHost(String host) {
		this.host = host;
	}
	
	public void setPort(int port) {
		this.port = port;
	}
	
	public String getHost() {
		return host;
	}
	
	public int getPort() {
		return port;
	}
	
	@Override
	public void execute(IDebugEventListener listener) {
		listener.onConnectedEvent(this);
	}
	
	@Override
	public int hashCode() {
		return this.getClass().hashCode();
	}

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy