Interface ILcdXMLEditableObjectStack

All Superinterfaces:
ILcdXMLObjectStack
All Known Implementing Classes:
TLcdXMLObjectStack

public interface ILcdXMLEditableObjectStack extends ILcdXMLObjectStack
Deprecated.
Use of the com.format.xml API has been deprecated. Instead, use the com.format.xml.bind API.
Editable extension of ILcdXMLObjectStack.
  • Method Details

    • pushObject

      void pushObject(Object aObject)
      Deprecated.
      Adds an element on top of this stack.
      Parameters:
      aObject - The item to be pushed on this stack.
    • popObject

      Object popObject()
      Deprecated.
      Removes the element on top of this stack and returns that object as the value of this function.
      Returns:
      The element on top of this stack
      Throws:
      EmptyStackException - if this stack is empty.
    • clearObjectStack

      void clearObjectStack()
      Deprecated.
      Removes all elements from this stack. The stack will be empty after this call.