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

    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

    • peekName

      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

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

      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

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