Class TLcdOutputFrame

All Implemented Interfaces:
ILcdLogListener, ActionListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible

public class TLcdOutputFrame extends Frame implements ILcdLogListener, ActionListener
Deprecated.
new code should use the standard logging instead.
TLcdOutputFrame is a frame to display application outputs It is used basically by TLcdOutput class. The frame has a title. It also has a boolean popup mode that indicates whether the frame should be made visible every time a new message is added.
See Also:
  • Field Details

    • fTextArea

      public TextArea fTextArea
      Deprecated.
    • fClearButton

      public Button fClearButton
      Deprecated.
    • fCloseButton

      public Button fCloseButton
      Deprecated.
  • Constructor Details

    • TLcdOutputFrame

      public TLcdOutputFrame(String aTitle, boolean aPopupMode)
      Deprecated.
      Creates a new TLcdOutputFrame with a given title and a given popup mode.
      Parameters:
      aTitle - the frame title.
      aPopupMode - the frame popup mode.
  • Method Details

    • out

      public void out(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      out in interface ILcdLogListener
      Parameters:
      aMessage - a general informative message.
    • fail

      public void fail(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      fail in interface ILcdLogListener
      Parameters:
      aMessage - a warning message about a program failure.
    • warn

      public void warn(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      warn in interface ILcdLogListener
      Parameters:
      aMessage - a warning message.
    • debug

      public void debug(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      debug in interface ILcdLogListener
      Parameters:
      aMessage - a debugging message.
    • event

      public void event(String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log.
      Specified by:
      event in interface ILcdLogListener
      Parameters:
      aMessage - a message about an event that has occurred.
    • getClassName

      protected static String getClassName(Object aClassInstance)
      Deprecated.
    • out

      public void out(Object aClassInstance, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      out in interface ILcdLogListener
      Parameters:
      aClassInstance - the calling object (`this').
      aMessage - a general informative message.
    • fail

      public void fail(Object aClassInstance, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      fail in interface ILcdLogListener
      Parameters:
      aClassInstance - the calling object (`this').
      aMessage - a warning message about a program failure.
    • warn

      public void warn(Object aClassInstance, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      warn in interface ILcdLogListener
      Parameters:
      aClassInstance - the calling object (`this').
      aMessage - a warning message.
    • debug

      public void debug(Object aClassInstance, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      debug in interface ILcdLogListener
      Parameters:
      aClassInstance - the calling object (`this').
      aMessage - a debugging message.
    • event

      public void event(Object aClassInstance, String aMessage)
      Deprecated.
      Description copied from interface: ILcdLogListener
      Writes the given message to the log, along with some information about the calling Object.
      Specified by:
      event in interface ILcdLogListener
      Parameters:
      aClassInstance - the calling object (`this').
      aMessage - a message about an event that has occurred.
    • isPopupMode

      public boolean isPopupMode()
      Deprecated.
      Returns true is the frame has to be popped up when a new message is added to the text area: .
    • actionPerformed

      public void actionPerformed(ActionEvent aActionEvent)
      Deprecated.
      Event management.
      Specified by:
      actionPerformed in interface ActionListener
      Parameters:
      aActionEvent - always a button selection.
    • minimumSize

      public Dimension minimumSize()
      Deprecated.
      Defines the minimum size of the dialog box.
      Overrides:
      minimumSize in class Container
    • clear

      public void clear()
      Deprecated.
      Clears the output frame text area.
    • getTextArea

      public TextArea getTextArea()
      Deprecated.
      Returns the text area attribute instance.
    • println

      public void println(String aString)
      Deprecated.
      Appends new output in the text area.
    • println

      public void println(Throwable aThrowable)
      Deprecated.
      Appends new output in the text area.