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

com.zarbosoft.interface1.events.InterfaceObjectOpenEvent Maven / Gradle / Ivy

package com.zarbosoft.interface1.events;

import com.zarbosoft.interface1.Configuration;
import com.zarbosoft.pidgoon.events.MatchingEvent;

@Configuration(name = "object-open")
public class InterfaceObjectOpenEvent implements InterfaceEvent {

	@Override
	public boolean matches(final MatchingEvent event) {
		return event.getClass() == getClass();
	}

	@Override
	public String toString() {
		return String.format("OBJECT_OPEN");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy