Package org.htmlunit.cyberneko
Class HTMLTagBalancer.InfoStack
- java.lang.Object
-
- org.htmlunit.cyberneko.HTMLTagBalancer.InfoStack
-
- Enclosing class:
- HTMLTagBalancer
public static class HTMLTagBalancer.InfoStack extends Object
Unsynchronized stack of element information.
-
-
Field Summary
Fields Modifier and Type Field Description HTMLTagBalancer.Info[]dataThe stack data.inttopThe top of the stack.
-
Constructor Summary
Constructors Constructor Description InfoStack()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HTMLTagBalancer.Infopeek()HTMLTagBalancer.Infopop()voidpush(HTMLTagBalancer.Info info)StringtoString()
-
-
-
Field Detail
-
top
public int top
The top of the stack.
-
data
public HTMLTagBalancer.Info[] data
The stack data.
-
-
Method Detail
-
push
public void push(HTMLTagBalancer.Info info)
-
peek
public HTMLTagBalancer.Info peek()
-
pop
public HTMLTagBalancer.Info pop()
-
-