Default implementation of ChainableStatement.
57585960616263
/** * Binds the <code>before</code> statement. */ public static ChainableStatement before(CharSequence html) { return new DefaultChainableStatement("before", JsUtils.quotes(html.toString())); }
65666768697071
/** * Binds the <code>insertBefore</code> statement. */ public static ChainableStatement insertBefore(String expression) { return new DefaultChainableStatement("insertBefore", JsUtils.quotes(expression)); }
41424344454647
/** * Binds the <code>css</code> statement. */ public static ChainableStatement css(Options options) { return new DefaultChainableStatement("css", options.getJavaScriptOptions()); }
49505152535455
/** * Binds the <code>css</code> statement. */ public static ChainableStatement css(String name, String value) { return new DefaultChainableStatement("css", JsUtils.quotes(name), JsUtils.quotes(value)); }
42434445464748
/** * Binds the <code>borderSize</code> statement. */ public static ChainableStatement borderSize() { return new DefaultChainableStatement("borderSize"); }
/** * Binds the <code>bottomBorderWidth</code> statement. */ public static ChainableStatement bottomBorderWidth() { return new DefaultChainableStatement("bottomBorderWidth"); }
56575859606162
/** * Binds the <code>getWidget</code> statement. */ public static ChainableStatement getWidget() { return new DefaultChainableStatement("getWidget"); }
63646566676869
/** * Binds the <code>leftBorderWidth</code> statement. */ public static ChainableStatement leftBorderWidth() { return new DefaultChainableStatement("leftBorderWidth"); }
70717273747576
/** * Binds the <code>rightBorderWidth</code> statement. */ public static ChainableStatement rightBorderWidth() { return new DefaultChainableStatement("rightBorderWidth"); }
77787980818283
/** * Binds the <code>setOutHeight</code> statement. */ public static ChainableStatement setOutHeight(int height) { return new DefaultChainableStatement("setOutHeight", Integer.toString(height)); }