We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7101586 commit 9d5ec45Copy full SHA for 9d5ec45
src-jvm/main/java/org/develnext/jphp/ext/nativehook/classes/NativeMouseWheelEventWrapper.java
@@ -7,7 +7,12 @@
7
import php.runtime.env.Environment;
8
import php.runtime.memory.LongMemory;
9
import php.runtime.reflection.ClassEntity;
10
+import php.runtime.annotation.Reflection;
11
+import org.develnext.jphp.ext.nativehook.NativeHookExtension;
12
13
+@Reflection.Namespace(NativeHookExtension.NS)
14
+@Reflection.Name("NativeMouseWheelEvent")
15
+@Reflection.Abstract
16
public class NativeMouseWheelEventWrapper extends NativeMouseEventWrapper<NativeMouseWheelEvent>{
17
public NativeMouseWheelEventWrapper(Environment env, NativeMouseWheelEvent wrappedObject){
18
super(env, wrappedObject);
0 commit comments