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

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

package net.java.html.lib.jquery;
public class JQueryKeyEventObject extends net.java.html.lib.jquery.JQueryInputEventObject {
  protected JQueryKeyEventObject(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(JQueryKeyEventObject.class);
    }
    @Override
    public JQueryKeyEventObject create(java.lang.Object obj) {
      return obj == null ? null : new JQueryKeyEventObject(this, obj);
    }
  };
  private static final $Constructor $AS = new $Constructor();
  public static JQueryKeyEventObject $as(java.lang.Object obj) {
    return $AS.create(obj);
  }
  /* cannot generate char */
  public net.java.html.lib.Objs.Property charCode = net.java.html.lib.Objs.Property.create(this, java.lang.Number.class, "charCode");
  public java.lang.Number charCode() { return charCode.get(); }
  public net.java.html.lib.Objs.Property key = net.java.html.lib.Objs.Property.create(this, java.lang.Object.class, "key");
  public net.java.html.lib.Objs.Property keyCode = net.java.html.lib.Objs.Property.create(this, java.lang.Number.class, "keyCode");
  public java.lang.Number keyCode() { return keyCode.get(); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy