Interface ILcdXMLObjectStack

All Known Subinterfaces:
ILcdXMLEditableObjectStack
All Known Implementing Classes:
TLcdXMLObjectStack

public interface ILcdXMLObjectStack
Deprecated.
Use of the com.format.xml API has been deprecated. Instead, use the com.format.xml.bind API.
An interface for stacks of objects.
  • Method Summary

    Modifier and Type
    Method
    Description
    getObject(int aIndex)
    Deprecated.
    Returns the object at the given index.
    int
    Deprecated.
    Returns the current stack size.
    boolean
    Deprecated.
    Returns true if this stack is empty, false otherwise.
    Deprecated.
    Returns the object on top of the stack.
  • Method Details

    • peekObject

      Object peekObject()
      Deprecated.
      Returns the object on top of the stack.
      Returns:
      the top object on the stack
      Throws:
      EmptyStackException - if this stack is empty.
    • isEmptyObjectStack

      boolean isEmptyObjectStack()
      Deprecated.
      Returns true if this stack is empty, false otherwise.
      Returns:
      true if this stack is empty, false otherwise.
    • getObject

      Object getObject(int aIndex)
      Deprecated.
      Returns the object at the given index.
      Parameters:
      aIndex - the index of the object to be retrieved.
      Returns:
      the object at the given index.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getObjectCount()
    • getObjectCount

      int getObjectCount()
      Deprecated.
      Returns the current stack size.
      Returns:
      the current stack size.