Package | Description |
---|---|
com.abmash.core.jquery |
Provides classes to create jQuery selectors and commands.
|
com.abmash.core.jquery.command |
Provides classes which contain different jQuery commands that select or manipulate elements, and extract their contents.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Command> |
JQuery.getCommands() |
Modifier and Type | Method and Description |
---|---|
JQuery |
JQuery.addCommand(Command command) |
Modifier and Type | Method and Description |
---|---|
JQuery |
JQuery.addCommands(java.util.ArrayList<Command> commands) |
Modifier and Type | Class and Description |
---|---|
class |
AddCommand
Add all elements that match the selector to the set of matched elements.
|
class |
AncestorsCommand
Gets the ancestors of each element in the current set of matched elements.
|
class |
ChildrenCommand
Finds children of each element in the current set of matched elements.
|
class |
CloseToCommand
Finds elements close to the elements that match the given predicates.
|
class |
ColorCommand
Finds elements that match the given color.
|
class |
CommandWithPredicates
Finds children of each element in the current set of matched elements.
|
class |
ContainsAttributeCommand
Reduce the current set of matched elements to those that contain the specified attribute value
|
class |
ContainsTextCommand
Reduce the current set of matched elements to those that contain the specified text
|
class |
ContentsCommand
Get the children of each element in the set of matched elements, including text and comment nodes.
|
class |
DistinctDescendantsCommand
Reduce the current set of matched elements to those that match the selector or pass the function's test.
|
class |
FilterCommand
Reduce the current set of matched elements to those that match the selector or pass the function's test.
|
class |
FilterCSSCommand
Reduce the set of matched elements to those that have the desired css values.
|
class |
FindCommand
Find descendants of the current set of matched elements that match the selector.
|
class |
HasCommand
Reduce the set of matched elements to those that have a descendant that matches the selector or element.
|
class |
JQueryCommand
TODO
|
class |
NextCommand
Gets siblings of each element in the current set of matched elements.
|
class |
NotCommand
Remove all elements from the set of matched elements that match the selector.
|
class |
ParentCommand
Gets the immediate parents of each element in the current set of matched elements.
|
class |
PrevCommand
Gets the immediately preceding sibling of each element in the current set of matched elements.
|
class |
RegExCommand
Reduce the current set of matched elements to those that match the regex selector.
|
class |
SiblingsCommand
Gets siblings of each element in the current set of matched elements.
|
class |
XPathCommand
Reduce the current set of matched elements to those that match the xpath selector.
|