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

net.java.html.lib.jquery.BaseJQueryEventObject Maven / Gradle / Ivy

package net.java.html.lib.jquery;
public class BaseJQueryEventObject extends net.java.html.lib.dom.Event {
  protected BaseJQueryEventObject(net.java.html.lib.Objs.Constructor c, java.lang.Object js) {
    super(c, js);
  }
  private static final class $Constructor extends net.java.html.lib.Objs.Constructor {
    $Constructor() {
      super(BaseJQueryEventObject.class);
    }
    @Override
    public BaseJQueryEventObject create(java.lang.Object obj) {
      return obj == null ? null : new BaseJQueryEventObject(this, obj);
    }
  };
  private static final $Constructor $AS = new $Constructor();
  public static BaseJQueryEventObject $as(java.lang.Object obj) {
    return $AS.create(obj);
  }
  public net.java.html.lib.Objs.Property data = net.java.html.lib.Objs.Property.create(this, java.lang.Object.class, "data");
  public net.java.html.lib.Objs.Property delegateTarget = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.dom.Element.class, "delegateTarget");
  public net.java.html.lib.dom.Element delegateTarget() { return delegateTarget.get(); }
  public net.java.html.lib.Objs.Property namespace = net.java.html.lib.Objs.Property.create(this, java.lang.String.class, "namespace");
  public java.lang.String namespace() { return namespace.get(); }
  public net.java.html.lib.Objs.Property originalEvent = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.dom.Event.class, "originalEvent");
  public net.java.html.lib.dom.Event originalEvent() { return originalEvent.get(); }
  public net.java.html.lib.Objs.Property relatedTarget = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.dom.Element.class, "relatedTarget");
  public net.java.html.lib.dom.Element relatedTarget() { return relatedTarget.get(); }
  public net.java.html.lib.Objs.Property result = net.java.html.lib.Objs.Property.create(this, java.lang.Object.class, "result");
  public net.java.html.lib.Objs.Property target = net.java.html.lib.Objs.Property.create(this, net.java.html.lib.dom.Element.class, "target");
  public net.java.html.lib.dom.Element target() { return target.get(); }
  public net.java.html.lib.Objs.Property pageX = net.java.html.lib.Objs.Property.create(this, java.lang.Number.class, "pageX");
  public java.lang.Number pageX() { return pageX.get(); }
  public net.java.html.lib.Objs.Property pageY = net.java.html.lib.Objs.Property.create(this, java.lang.Number.class, "pageY");
  public java.lang.Number pageY() { return pageY.get(); }
  public net.java.html.lib.Objs.Property which = net.java.html.lib.Objs.Property.create(this, java.lang.Number.class, "which");
  public java.lang.Number which() { return which.get(); }
  public net.java.html.lib.Objs.Property metaKey = net.java.html.lib.Objs.Property.create(this, java.lang.Boolean.class, "metaKey");
  public java.lang.Boolean metaKey() { return metaKey.get(); }
  public java.lang.Boolean isDefaultPrevented() {
    return $Typings$.isDefaultPrevented$25($js(this));
  }
  public java.lang.Boolean isImmediatePropagationStopped() {
    return $Typings$.isImmediatePropagationStopped$26($js(this));
  }
  public java.lang.Boolean isPropagationStopped() {
    return $Typings$.isPropagationStopped$27($js(this));
  }
  public void preventDefault() {
    $Typings$.preventDefault$28($js(this));
  }
  public void stopImmediatePropagation() {
    $Typings$.stopImmediatePropagation$29($js(this));
  }
  public void stopPropagation() {
    $Typings$.stopPropagation$30($js(this));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy