Move and update API Events to the API sub-project

This commit is contained in:
James Seibel
2022-09-06 21:25:11 -05:00
parent dbae5a3b05
commit 75b23ee904
32 changed files with 540 additions and 387 deletions
@@ -1,6 +1,6 @@
package testItems.eventInjection.abstractObjects;
import com.seibel.lod.core.api.implementation.interfaces.events.IDhApiEvent;
import com.seibel.lod.core.api.implementation.interfaces.events.ICoreDhApiEvent;
/**
* A dummy event implementation used for unit testing.
@@ -8,7 +8,7 @@ import com.seibel.lod.core.api.implementation.interfaces.events.IDhApiEvent;
* @author James Seibel
* @version 2022-7-16
*/
public abstract class DhApiTestEvent implements IDhApiEvent<Boolean>
public abstract class DhApiTestEvent implements ICoreDhApiEvent<Boolean>
{
/**
* Test event.
@@ -30,7 +30,7 @@ public abstract class DhApiTestEvent implements IDhApiEvent<Boolean>
//=========================//
@Override
public final boolean onEvent(Boolean input)
public final boolean fireEvent(Boolean input)
{
return test(input);
}