net.java.html.lib.jquery.JQueryInputEventObject Maven / Gradle / Ivy
package net.java.html.lib.jquery;
public class JQueryInputEventObject extends net.java.html.lib.jquery.BaseJQueryEventObject {
protected JQueryInputEventObject(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(JQueryInputEventObject.class);
}
@Override
public JQueryInputEventObject create(java.lang.Object obj) {
return obj == null ? null : new JQueryInputEventObject(this, obj);
}
};
private static final $Constructor $AS = new $Constructor();
public static JQueryInputEventObject $as(java.lang.Object obj) {
return $AS.create(obj);
}
public net.java.html.lib.Objs.Property altKey = net.java.html.lib.Objs.Property.create(this, java.lang.Boolean.class, "altKey");
public java.lang.Boolean altKey() { return altKey.get(); }
public net.java.html.lib.Objs.Property ctrlKey = net.java.html.lib.Objs.Property.create(this, java.lang.Boolean.class, "ctrlKey");
public java.lang.Boolean ctrlKey() { return ctrlKey.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 net.java.html.lib.Objs.Property shiftKey = net.java.html.lib.Objs.Property.create(this, java.lang.Boolean.class, "shiftKey");
public java.lang.Boolean shiftKey() { return shiftKey.get(); }
}