Default implementation of ChainableStatement.
322323324325326327328
* Scope to use * @return the jQuery code */ public static ChainableStatement mousedown(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.MOUSEDOWN.getEventLabel(), jsScope.render()); }
334335336337338339340341
* Scope to use * @return the jQuery code */ public static ChainableStatement mouseenter(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.MOUSEENTER.getEventLabel(), jsScope.render()); }
347348349350351352353354
* Scope to use * @return the jQuery code */ public static ChainableStatement mouseleave(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.MOUSELEAVE.getEventLabel(), jsScope.render()); }
360361362363364365366
* Scope to use * @return the jQuery code */ public static ChainableStatement mousemove(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.MOUSEMOVE.getEventLabel(), jsScope.render()); }
372373374375376377378
* Scope to use * @return the jQuery code */ public static ChainableStatement mouseout(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.MOUSEOUT.getEventLabel(), jsScope.render()); }
384385386387388389390
* Scope to use * @return the jQuery code */ public static ChainableStatement mouseover(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.MOUSEOVER.getEventLabel(), jsScope.render()); }
396397398399400401402
* Scope to use * @return the jQuery code */ public static ChainableStatement mouseup(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.MOUSEUP.getEventLabel(), jsScope.render()); }
410411412413414415416417
* Scope to use * @return the jQuery code */ public static ChainableStatement one(EventLabel eventLabel, JsScope jsScope) { return new DefaultChainableStatement("one", JsUtils.quotes(eventLabel.getEventLabel()), jsScope.render()); }
424425426427428429430
* Scope to use * @return the jQuery code */ public static ChainableStatement ready(JsScope jsScope) { return new DefaultChainableStatement("ready", jsScope.render()); }
436437438439440441442
* Scope to use * @return the jQuery code */ public static ChainableStatement scroll(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.SCROLL.getEventLabel(), jsScope.render()); }