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

react4j.dom.events.WheelEvent Maven / Gradle / Ivy

The newest version!
package react4j.dom.events;

import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;

@JsType( isNative = true, namespace = JsPackage.GLOBAL, name = "Object" )
@SuppressWarnings( "unused" )
public class WheelEvent
  extends SyntheticEvent
{
  private int deltaMode;
  private int deltaX;
  private int deltaY;
  private int deltaZ;

  @JsOverlay
  public final int getDeltaMode()
  {
    return deltaMode;
  }

  @JsOverlay
  public final int getDeltaX()
  {
    return deltaX;
  }

  @JsOverlay
  public final int getDeltaY()
  {
    return deltaY;
  }

  @JsOverlay
  public final int getDeltaZ()
  {
    return deltaZ;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy