Class TLcdPropertyDialog

java.lang.Object
com.luciad.beans.TLcdPropertyDialog
All Implemented Interfaces:
ILcdPropertyDialog
Direct Known Subclasses:
TLcdPropertyDialogSW

@Deprecated public class TLcdPropertyDialog extends Object implements ILcdPropertyDialog
Deprecated.
Use a UI builder (e.g. Swing) or binding framework instead.
This is a Dialog for editing a property which PropertyEditor has a custom editor (PropertyEditor.supportsCustomEditor). The custom editor returned by PropertyEditor.getCustomEditor be will put into the Dialog.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected static String
    Deprecated.
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    TLcdPropertyDialog(ILcdBeanEditor aBeanEditor, Component aBeanEditorComponent, Frame aParentFrame, String aTitle, boolean aDialogModal)
    Deprecated.
    Constructor with a ILcdBeanEditor, a parent Frame and a title for this Dialog.
    TLcdPropertyDialog(PropertyEditor aPropertyEditor, Frame aParentFrame, boolean aDialogModal)
    Deprecated.
    Constructor with a PropertyEditor, and a parent Frame for this Dialog.
    TLcdPropertyDialog(PropertyEditor aPropertyEditor, Frame aParentFrame, String aTitle, boolean aDialogModal)
    Deprecated.
    Same as TLcdPropertyDialog( ILcdBeanEditor, PropertyEditor, Frame ) with a title for the Dialog.
  • Method Summary

    Modifier and Type
    Method
    Description
    protected void
    addComponent(Window aDialog, Component aComponent, Object aConstraints)
    Deprecated.
    Add a component to the window displaying the property editor component.
    protected Dialog
    createDialog(Frame aParentFrame, boolean aDialogModal)
    Deprecated.
    Return the dialog to display the property editor component in.
    protected Dialog
    createDialog(Frame aParentFrame, String aTitle, boolean aDialogModal)
    Deprecated.
    Return the dialog to display the property editor component in.
    protected Frame
    Deprecated.
    Return the frame to display the property editor component in.
    Deprecated.
     
    boolean
    Deprecated.
    Tests if the Apply, OK, Cancel button Panel is currently visible or not.
    boolean
    Deprecated.
    This method has been deprecated.
    void
    setButtonPanelVisible(boolean aButtonPanelVisible)
    Deprecated.
    Sets the visibility of the the Apply, OK, Cancel button Panel.
    static void
    setClassTraceOn(boolean aClassTraceOn)
    Deprecated.
    This method has been deprecated.
    protected void
    setDialogLayout(Window aDialog, LayoutManager aLayoutManager)
    Deprecated.
    Set the layout to the window displaying the property editor component.
    void
    setTraceOn(boolean aTraceOn)
    Deprecated.
    This method has been deprecated.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • defaultTitle

      protected static String defaultTitle
      Deprecated.
  • Constructor Details

    • TLcdPropertyDialog

      public TLcdPropertyDialog(ILcdBeanEditor aBeanEditor, Component aBeanEditorComponent, Frame aParentFrame, String aTitle, boolean aDialogModal)
      Deprecated.
      Constructor with a ILcdBeanEditor, a parent Frame and a title for this Dialog.
    • TLcdPropertyDialog

      public TLcdPropertyDialog(PropertyEditor aPropertyEditor, Frame aParentFrame, boolean aDialogModal)
      Deprecated.
      Constructor with a PropertyEditor, and a parent Frame for this Dialog.

      aPropertyEditor must have a custom editor.

    • TLcdPropertyDialog

      public TLcdPropertyDialog(PropertyEditor aPropertyEditor, Frame aParentFrame, String aTitle, boolean aDialogModal)
      Deprecated.
      Same as TLcdPropertyDialog( ILcdBeanEditor, PropertyEditor, Frame ) with a title for the Dialog.
  • Method Details

    • setClassTraceOn

      public static void setClassTraceOn(boolean aClassTraceOn)
      Deprecated.
      This method has been deprecated. It is recommended to use the standard Java logging framework directly.
      Enables tracing for all instances of this class. If the argument is true then all log messages are recorded, otherwise only the informative, warning and error messages are recorded.
      Parameters:
      aClassTraceOn - if true then all log messages are recorded, otherwise only the informative, warning and error messages are recorded.
    • setTraceOn

      public void setTraceOn(boolean aTraceOn)
      Deprecated.
      This method has been deprecated. It is recommended to use the standard Java logging framework directly.
      Enables tracing for this class instance. Calling this method with either true or false as argument automatically turns off tracing for all other class instances for which setTraceOn has not been called. If the argument is false then only the informative, warning and error log messages are recorded.
      Parameters:
      aTraceOn - if true then all log messages are recorded for this instance. If false, then only the informative, warning and error log messages are recorded.
    • isTraceOn

      public boolean isTraceOn()
      Deprecated.
      This method has been deprecated. It is recommended to use the standard Java logging framework directly.
      Returns true if tracing is enabled for this class.
      Returns:
      true if tracing is enabled for this class, false otherwise.
    • getComponent

      public Component getComponent()
      Deprecated.
      Specified by:
      getComponent in interface ILcdPropertyDialog
      Returns:
      the component containing the custom editor.
    • isButtonPanelVisible

      public boolean isButtonPanelVisible()
      Deprecated.
      Tests if the Apply, OK, Cancel button Panel is currently visible or not.
    • setButtonPanelVisible

      public void setButtonPanelVisible(boolean aButtonPanelVisible)
      Deprecated.
      Sets the visibility of the the Apply, OK, Cancel button Panel.
    • createDialog

      protected Dialog createDialog(Frame aParentFrame, String aTitle, boolean aDialogModal)
      Deprecated.
      Return the dialog to display the property editor component in.
    • createDialog

      protected Dialog createDialog(Frame aParentFrame, boolean aDialogModal)
      Deprecated.
      Return the dialog to display the property editor component in.
    • createFrame

      protected Frame createFrame(String aTitle)
      Deprecated.
      Return the frame to display the property editor component in.
    • addComponent

      protected void addComponent(Window aDialog, Component aComponent, Object aConstraints)
      Deprecated.
      Add a component to the window displaying the property editor component.
    • setDialogLayout

      protected void setDialogLayout(Window aDialog, LayoutManager aLayoutManager)
      Deprecated.
      Set the layout to the window displaying the property editor component.