Interface ILcdDialogManager

All Known Implementing Classes:
TLcdDialogManager, TLcdDialogManagerSW

@Deprecated public interface ILcdDialogManager
Deprecated.
This functionality is present in the JDK. See for example the static methods in JOptionPane.
GUI utility class for dialogs.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Deprecated.
    Return value for the cancel option in the confirm dialog.
    static final int
    Deprecated.
    Return value from class method if user closes window without selecting anything, more than likely this should be treated as either a CANCEL_OPTION or NO_OPTION.
    static final int
    Deprecated.
    Type for the default option in the confirm dialog.
    static final int
    Deprecated.
    Type for error message.
    static final int
    Deprecated.
    Type for information message.
    static final int
    Deprecated.
    Type for dialog to load files.
    static final int
    Deprecated.
    Return value for the no option in the confirm dialog.
    static final int
    Deprecated.
    Type for the default option in the confirm dialog.
    static final int
    Deprecated.
    Return value for the ok option in the confirm dialog.
    static final int
    Deprecated.
    Type for plain message.
    static final int
    Deprecated.
    Type for question message.
    static final int
    Deprecated.
    Type for dialog to save files.
    static final int
    Deprecated.
    Type for warning message.
    static final int
    Deprecated.
    Type for the yes/no/cancel option in the confirm dialog.
    static final int
    Deprecated.
    Type for the yes/no option in the confirm dialog.
    static final int
    Deprecated.
    Return value for the yes option in the confirm dialog.
  • Method Summary

    Modifier and Type
    Method
    Description
    choose(Vector aVector, ILcdFormatter aFormatter, String aMessage, Object aSource, Component aComponent)
    Deprecated.
     
    chooseFile(String aDirectoryPath, int aMode, Object aSource, Component aComponent)
    Deprecated.
     
    int
    confirm(String aQuestion, int aOption, int aMessageType, Object aSource, Component aComponent)
    Deprecated.
     
    input(String aMessage, Object aSource, Component aComponent)
    Deprecated.
     
    input(String aMessage, String aInitialResponse, Object aSource, Component aComponent)
    Deprecated.
     
    inputURL(String aMessage, Object aSource, Component aComponent)
    Deprecated.
     
    void
    message(String aMessage, int aMessageType, Object aSource, Component aComponent)
    Deprecated.
     
  • Field Details

    • DEFAULT_OPTION

      static final int DEFAULT_OPTION
      Deprecated.
      Type for the default option in the confirm dialog.
      See Also:
    • YES_NO_OPTION

      static final int YES_NO_OPTION
      Deprecated.
      Type for the yes/no option in the confirm dialog.
      See Also:
    • YES_NO_CANCEL_OPTION

      static final int YES_NO_CANCEL_OPTION
      Deprecated.
      Type for the yes/no/cancel option in the confirm dialog.
      See Also:
    • OK_CANCEL_OPTION

      static final int OK_CANCEL_OPTION
      Deprecated.
      Type for the default option in the confirm dialog.
      See Also:
    • YES_OPTION

      static final int YES_OPTION
      Deprecated.
      Return value for the yes option in the confirm dialog.
      See Also:
    • NO_OPTION

      static final int NO_OPTION
      Deprecated.
      Return value for the no option in the confirm dialog.
      See Also:
    • CANCEL_OPTION

      static final int CANCEL_OPTION
      Deprecated.
      Return value for the cancel option in the confirm dialog.
      See Also:
    • OK_OPTION

      static final int OK_OPTION
      Deprecated.
      Return value for the ok option in the confirm dialog.
      See Also:
    • CLOSED_OPTION

      static final int CLOSED_OPTION
      Deprecated.
      Return value from class method if user closes window without selecting anything, more than likely this should be treated as either a CANCEL_OPTION or NO_OPTION.
      See Also:
    • ERROR_MESSAGE

      static final int ERROR_MESSAGE
      Deprecated.
      Type for error message.
      See Also:
    • INFORMATION_MESSAGE

      static final int INFORMATION_MESSAGE
      Deprecated.
      Type for information message.
      See Also:
    • WARNING_MESSAGE

      static final int WARNING_MESSAGE
      Deprecated.
      Type for warning message.
      See Also:
    • QUESTION_MESSAGE

      static final int QUESTION_MESSAGE
      Deprecated.
      Type for question message.
      See Also:
    • PLAIN_MESSAGE

      static final int PLAIN_MESSAGE
      Deprecated.
      Type for plain message.
      See Also:
    • LOAD

      static final int LOAD
      Deprecated.
      Type for dialog to load files.
      See Also:
    • SAVE

      static final int SAVE
      Deprecated.
      Type for dialog to save files.
      See Also:
  • Method Details