Package org.xembly
Interface Directive.Stack
- Enclosing interface:
- Directive
public static interface Directive.Stack
Stack.
- Since:
- 0.16
-
Method Summary
Modifier and TypeMethodDescriptionpop()
Pop cursor (runtime exception if stack is empty).void
push
(Directive.Cursor cursor) Push cursor (runtime exception if stack is full).
-
Method Details
-
push
Push cursor (runtime exception if stack is full).- Parameters:
cursor
- Cursor to push
-
pop
Pop cursor (runtime exception if stack is empty).- Returns:
- Cursor recently added
- Throws:
ImpossibleModificationException
- If fails
-