Package org.odlabs.wiquery.core.javascript

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


   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement mousedown(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.MOUSEDOWN.getEventLabel(), jsScope.render());
  }
View Full Code Here


   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement mouseenter(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.MOUSEENTER.getEventLabel(),
      jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement mouseleave(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.MOUSELEAVE.getEventLabel(),
      jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement mousemove(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.MOUSEMOVE.getEventLabel(), jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement mouseout(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.MOUSEOUT.getEventLabel(), jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement mouseover(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.MOUSEOVER.getEventLabel(), jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement mouseup(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.MOUSEUP.getEventLabel(), jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement one(EventLabel eventLabel, JsScope jsScope)
  {
    return new DefaultChainableStatement("one", JsUtils.quotes(eventLabel.getEventLabel()),
      jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement ready(JsScope jsScope)
  {
    return new DefaultChainableStatement("ready", jsScope.render());
  }
View Full Code Here

   *            Scope to use
   * @return the jQuery code
   */
  public static ChainableStatement scroll(JsScope jsScope)
  {
    return new DefaultChainableStatement(MouseEvent.SCROLL.getEventLabel(), jsScope.render());
  }
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.