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

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

package com.zarbosoft.interface1.events;

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

@Configuration(name = "array-open")
public class InterfaceArrayOpenEvent implements InterfaceEvent {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy