Package org.odlabs.wiquery.core.javascript

Examples of org.odlabs.wiquery.core.javascript.DefaultChainableStatement


  /**
   * Binds the <code>find</code> statement.
   */
  public static ChainableStatement find(String expression)
  {
    return new DefaultChainableStatement("find", JsUtils.quotes(expression));
  }
View Full Code Here


  /**
   * Binds the <code>next</code> statement.
   */
  public static ChainableStatement next(String expression)
  {
    return new DefaultChainableStatement("next", JsUtils.quotes(expression));
  }
View Full Code Here

  /**
   * Binds the <code>nextAll</code> statement.
   */
  public static ChainableStatement nextAll(String expression)
  {
    return new DefaultChainableStatement("nextAll", JsUtils.quotes(expression));
  }
View Full Code Here

  /**
   * Binds the <code>parent</code> statement.
   */
  public static ChainableStatement parent(String expression)
  {
    return new DefaultChainableStatement("parent", JsUtils.quotes(expression));
  }
View Full Code Here

  /**
   * Binds the <code>parents</code> statement.
   */
  public static ChainableStatement parents(String expression)
  {
    return new DefaultChainableStatement("parents", JsUtils.quotes(expression));
  }
View Full Code Here

  /**
   * Binds the <code>prev</code> statement.
   */
  public static ChainableStatement prev(String expression)
  {
    return new DefaultChainableStatement("prev", JsUtils.quotes(expression));
  }
View Full Code Here

  /**
   * Binds the <code>prevAll</code> statement.
   */
  public static ChainableStatement prevAll(String expression)
  {
    return new DefaultChainableStatement("prevAll", JsUtils.quotes(expression));
  }
View Full Code Here

  /**
   * Binds the <code>siblings</code> statement.
   */
  public static ChainableStatement siblings(String expression)
  {
    return new DefaultChainableStatement("siblings", JsUtils.quotes(expression));
  }
View Full Code Here

  /**
   * Binds the <code>after</code> statement.
   */
  public static ChainableStatement after(CharSequence html)
  {
    return new DefaultChainableStatement("after", JsUtils.quotes(html.toString()));
  }
View Full Code Here

  /**
   * Binds the <code>insertAfter</code> statement.
   */
  public static ChainableStatement insertAfter(String expression)
  {
    return new DefaultChainableStatement("insertAfter", JsUtils.quotes(expression));
  }
View Full Code Here

TOP

Related Classes of org.odlabs.wiquery.core.javascript.DefaultChainableStatement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.