Class TraversingHelper


  • public final class TraversingHelper
    extends java.lang.Object
    $Id: TraversingHelper.java 1714M 2012-01-17 08:35:47Z (local) $

    Helper to bind traversing functions.

    Author:
    Lionel Armanet
    See Also:
    "http://docs.jquery.com/Traversing"
    • Method Detail

      • filter

        public static ChainableStatement filter​(java.lang.String expression)
        Binds the filter statement.
      • not

        public static ChainableStatement not​(java.lang.String expression)
        Binds the not statement.
      • slice

        public static ChainableStatement slice​(int start)
        Binds the slice statement.
      • slice

        public static ChainableStatement slice​(int start,
                                               int end)
        Binds the slice statement.
      • add

        public static ChainableStatement add​(java.lang.String expression)
        Binds the add statement.
      • children

        public static ChainableStatement children​(java.lang.String expression)
        Binds the children statement.
      • contents

        public static ChainableStatement contents​(java.lang.String expression)
        Binds the contents statement.
      • find

        public static ChainableStatement find​(java.lang.String expression)
        Binds the find statement.
      • next

        public static ChainableStatement next​(java.lang.String expression)
        Binds the next statement.
      • nextAll

        public static ChainableStatement nextAll​(java.lang.String expression)
        Binds the nextAll statement.
      • parent

        public static ChainableStatement parent​(java.lang.String expression)
        Binds the parent statement.
      • parents

        public static ChainableStatement parents​(java.lang.String expression)
        Binds the parents statement.
      • prev

        public static ChainableStatement prev​(java.lang.String expression)
        Binds the prev statement.
      • prevAll

        public static ChainableStatement prevAll​(java.lang.String expression)
        Binds the prevAll statement.
      • siblings

        public static ChainableStatement siblings​(java.lang.String expression)
        Binds the siblings statement.