Default implementation of ChainableStatement.
84858687888990
/** * Binds the <code>setOutWidth</code> statement. */ public static ChainableStatement setOutWidth(int width) { return new DefaultChainableStatement("setOutWidth", Integer.toString(width)); }
91929394959697
/** * Binds the <code>topBorderWidth</code> statement. */ public static ChainableStatement topBorderWidth() { return new DefaultChainableStatement("topBorderWidth"); }
9899100101102103104
/** * Binds the <code>wijContent</code> statement. */ public static ChainableStatement wijContent(String url) { return new DefaultChainableStatement("wijContent", JsUtils.quotes(url)); }