Interface ILcdXMLNameStack

All Known Subinterfaces:
ILcdXMLEditableNameStack
All Known Implementing Classes:
TLcdXMLNameStack

public interface ILcdXMLNameStack
Deprecated.
Use of the com.format.xml API has been deprecated. Instead, use the com.format.xml.bind API.
An interface for XML name stacks. The top element of the XML document corresponds to the first (bottom) element on the stack, the last read element corresponds to the last (top) element on the stack.
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    getName(int aIndex)
    Deprecated.
    Returns the name 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 name on top of the stack.
  • Method Details Link icon

    • peekName Link icon

      TLcdXMLName peekName()
      Deprecated.
      Returns the name on top of the stack.
      Returns:
      the top element of the stack
      Throws:
      EmptyStackException - if this stack is empty.
    • isEmptyNameStack Link icon

      boolean isEmptyNameStack()
      Deprecated.
      Returns true if this stack is empty, false otherwise.
      Returns:
      true if this stack is empty, false otherwise.
    • getName Link icon

      TLcdXMLName getName(int aIndex)
      Deprecated.
      Returns the name at the given index.
      Parameters:
      aIndex - the index of the name to be retrieved.
      Returns:
      the name at the given index.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getNameCount()
    • getNameCount Link icon

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