Example usage for java.util Stack subclass-usage

List of usage examples for java.util Stack subclass-usage

Introduction

In this page you can find the example usage for java.util Stack subclass-usage.

Usage

From source file roboguice.calculator.util.RpnStack.java

/**
 * A Stack of numbers that can be operated on.
 *
 * In addition to maintaining a stack, this class also maintains an accumulator register that
 * can be used to keep track of the digits that a user is typing up until they hit 'enter'
 * to push the accumulated digits onto the stack.

From source file com.link_intersystems.util.UnmodifiableStack.java

/**
 * A {@link Stack} implementation that can not be modified. Every attempt to
 * modify it will result in an {@link UnsupportedOperationException}.
 *
 * @author Ren Link <a
 *         href="mailto:rene.link@link-intersystems.com">[rene.link@link-

From source file AnimatedTimer.java

class DisplayManager extends Stack {
    private Display display; // Reference to Display object

    private Displayable mainDisplayable; // Main displayable for MIDlet

    private Alert alStackError; // Alert for error conditions

From source file TodoMIDlet.java

class DisplayManager extends Stack {
    private Display display; // Reference to Display object
    private Displayable mainDisplayable; // Main displayable for MIDlet
    private Alert alStackError; // Alert for error conditions

    /*--------------------------------------------------

From source file org.apache.nutch.parse.swf.SWFParser.java

class SmallStack extends Stack {

    private int maxSize;

    private HashSet strings = null;