Package org.odlabs.wiquery.core.javascript

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


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


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

  /**
   * Binds the <code>css</code> statement.
   */
  public static ChainableStatement css(Options options)
  {
    return new DefaultChainableStatement("css", options.getJavaScriptOptions());
  }
View Full Code Here

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

  /**
   * Binds the <code>borderSize</code> statement.
   */
  public static ChainableStatement borderSize() {
    return new DefaultChainableStatement("borderSize");
  }
View Full Code Here

 
  /**
   * Binds the <code>bottomBorderWidth</code> statement.
   */
  public static ChainableStatement bottomBorderWidth() {
    return new DefaultChainableStatement("bottomBorderWidth");
  }
View Full Code Here

 
  /**
   * Binds the <code>getWidget</code> statement.
   */
  public static ChainableStatement getWidget() {
    return new DefaultChainableStatement("getWidget");
  }
View Full Code Here

 
  /**
   * Binds the <code>leftBorderWidth</code> statement.
   */
  public static ChainableStatement leftBorderWidth() {
    return new DefaultChainableStatement("leftBorderWidth");
  }
View Full Code Here

 
  /**
   * Binds the <code>rightBorderWidth</code> statement.
   */
  public static ChainableStatement rightBorderWidth() {
    return new DefaultChainableStatement("rightBorderWidth");
  }
View Full Code Here

 
  /**
   * Binds the <code>setOutHeight</code> statement.
   */
  public static ChainableStatement setOutHeight(int height) {
    return new DefaultChainableStatement("setOutHeight", Integer.toString(height));
  }
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.