Created new .NET 5 project instead of the existing one Installed JWS API but it's probably not what I need
15 lines
290 B
Java
15 lines
290 B
Java
package sznp.virtualcomputer.util;
|
|
|
|
import lombok.var;
|
|
import org.virtualbox_6_1.IEvent;
|
|
|
|
public interface IEventHandler {
|
|
void handleEvent(IEvent iEvent);
|
|
|
|
@Override
|
|
default void handleEvent(long l) {
|
|
var dp = new Dispatch();
|
|
dp.m_pDispatch = l;
|
|
handleEvent(new IEvent(dp));
|
|
}
|
|
}
|