Exemplo n.º 1
0
  void push(StackItem item) {
    if (item.getLevel() == -1) item.setLevel(stackLevel++);

    stack.push(item);
    stackSize += item.size;
    if (stackMaxSize < stackSize) stackMaxSize = stackSize;
  }
Exemplo n.º 2
0
 StackItem peek() {
   return stack.peek();
 }
Exemplo n.º 3
0
 void popAll() {
   stackSize = 0;
   stack.clear();
 }
Exemplo n.º 4
0
 StackItem pop() {
   StackItem item = stack.pop();
   stackSize -= item.size;
   return item;
 }
Exemplo n.º 5
0
 int getStackCount() {
   return stack.size();
 }