Default implementation of ChainableStatement.
84858687888990
* * @return the jQuery code */ public static ChainableStatement change() { return new DefaultChainableStatement(StateEvent.CHANGE.getEventLabel()); }
96979899100101102
* Scope to use * @return the jQuery code */ public static ChainableStatement change(JsScope jsScope) { return new DefaultChainableStatement(StateEvent.CHANGE.getEventLabel(), jsScope.render()); }
106107108109110111112
* * @return the jQuery code */ public static ChainableStatement click() { return new DefaultChainableStatement(MouseEvent.CLICK.getEventLabel()); }
118119120121122123124
* Scope to use * @return the jQuery code */ public static ChainableStatement click(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.CLICK.getEventLabel(), jsScope.render()); }
128129130131132133134
* * @return the jQuery code */ public static ChainableStatement dblclick() { return new DefaultChainableStatement(MouseEvent.DBLCLICK.getEventLabel()); }
140141142143144145146
* Scope to use * @return the jQuery code */ public static ChainableStatement dblclick(JsScope jsScope) { return new DefaultChainableStatement(MouseEvent.DBLCLICK.getEventLabel(), jsScope.render()); }
154155156157158159160161
* Scope to use * @return the jQuery code */ public static ChainableStatement die(EventLabel eventLabel, JsScope jsScope) { return new DefaultChainableStatement("die", JsUtils.quotes(eventLabel.getEventLabel()), jsScope.render()); }
165166167168169170171
* * @return the jQuery code */ public static ChainableStatement error() { return new DefaultChainableStatement(StateEvent.ERROR.getEventLabel()); }
177178179180181182183
* Scope to use * @return the jQuery code */ public static ChainableStatement error(JsScope jsScope) { return new DefaultChainableStatement(StateEvent.ERROR.getEventLabel(), jsScope.render()); }
187188189190191192193
* * @return the jQuery code */ public static ChainableStatement focus() { return new DefaultChainableStatement(StateEvent.FOCUS.getEventLabel()); }