Default implementation of ChainableStatement.
104105106107108109110
/** * Binds the <code>find</code> statement. */ public static ChainableStatement find(String expression) { return new DefaultChainableStatement("find", JsUtils.quotes(expression)); }
112113114115116117118
/** * Binds the <code>next</code> statement. */ public static ChainableStatement next(String expression) { return new DefaultChainableStatement("next", JsUtils.quotes(expression)); }
120121122123124125126
/** * Binds the <code>nextAll</code> statement. */ public static ChainableStatement nextAll(String expression) { return new DefaultChainableStatement("nextAll", JsUtils.quotes(expression)); }
128129130131132133134
/** * Binds the <code>parent</code> statement. */ public static ChainableStatement parent(String expression) { return new DefaultChainableStatement("parent", JsUtils.quotes(expression)); }
136137138139140141142
/** * Binds the <code>parents</code> statement. */ public static ChainableStatement parents(String expression) { return new DefaultChainableStatement("parents", JsUtils.quotes(expression)); }
144145146147148149150
/** * Binds the <code>prev</code> statement. */ public static ChainableStatement prev(String expression) { return new DefaultChainableStatement("prev", JsUtils.quotes(expression)); }
152153154155156157158
/** * Binds the <code>prevAll</code> statement. */ public static ChainableStatement prevAll(String expression) { return new DefaultChainableStatement("prevAll", JsUtils.quotes(expression)); }
160161162163164165166
/** * Binds the <code>siblings</code> statement. */ public static ChainableStatement siblings(String expression) { return new DefaultChainableStatement("siblings", JsUtils.quotes(expression)); }
41424344454647
/** * Binds the <code>after</code> statement. */ public static ChainableStatement after(CharSequence html) { return new DefaultChainableStatement("after", JsUtils.quotes(html.toString())); }
49505152535455
/** * Binds the <code>insertAfter</code> statement. */ public static ChainableStatement insertAfter(String expression) { return new DefaultChainableStatement("insertAfter", JsUtils.quotes(expression)); }