Package org.zkoss.stateless.action
Interface ActionTarget
-
public interface ActionTargetRepresents an action target which is used inActionVariable- Author:
- jumperchen
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFIRST_CHILDThe action target first child.static java.lang.StringLAST_CHILDThe action target last child.static java.lang.StringNEXT_SIBLINGThe action target next sibling.static java.lang.StringPARENTThe action target parent.static java.lang.StringPREVIOUS_SIBLINGThe action target previous sibling.static java.lang.StringSELFThe action target itself.
-
-
-
Field Detail
-
SELF
static final java.lang.String SELF
The action target itself.- See Also:
- Constant Field Values
-
NEXT_SIBLING
static final java.lang.String NEXT_SIBLING
The action target next sibling.- See Also:
- Constant Field Values
-
PREVIOUS_SIBLING
static final java.lang.String PREVIOUS_SIBLING
The action target previous sibling.- See Also:
- Constant Field Values
-
PARENT
static final java.lang.String PARENT
The action target parent.- See Also:
- Constant Field Values
-
FIRST_CHILD
static final java.lang.String FIRST_CHILD
The action target first child.- See Also:
- Constant Field Values
-
LAST_CHILD
static final java.lang.String LAST_CHILD
The action target last child.- See Also:
- Constant Field Values
-
-