Class FrameTable


  • public final class FrameTable
    extends java.lang.Object
    Class FrameTable defines the runtime frame table (stack) that's used by the FormCalc scripting engine, when invoking user-defined functions.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getDepth()
      Get this object's frame stack depth.
      java.lang.String getStackTrace​(Stack oStack)
      Return a string representing the current function call stack.
      Frame peek()
      Peek at the frame on top of this FrameTable object.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getDepth

        public int getDepth()
        Get this object's frame stack depth.
        Returns:
        the current frame table stack depth.
      • peek

        public Frame peek()
        Peek at the frame on top of this FrameTable object.
        Returns:
        the frame on top of FrameTable.
      • getStackTrace

        public java.lang.String getStackTrace​(Stack oStack)
        Return a string representing the current function call stack.