Class DialogParameterization

java.lang.Object
com._1c.g5.aef2.standard.parameterization.DialogParameterization
All Implemented Interfaces:
IParameterization, IDialogParametrization
Direct Known Subclasses:
NavigatorTreeDialogParameterization

public class DialogParameterization extends Object implements IDialogParametrization
The basic IDialogParametrization implementation.
  • Constructor Details

    • DialogParameterization

      public DialogParameterization()
      Creates a new dialog parameterization instance with empty title, height and width equal to 400px and resizable flag set to true
  • Method Details

    • getTitle

      public String getTitle()
      Description copied from interface: IDialogParametrization
      Returns the title of dialog.
      Specified by:
      getTitle in interface IDialogParametrization
      Returns:
      the title of dialog.
    • setTitle

      public void setTitle(String title)
      Parameters:
      title - the title to set
    • getHeight

      public int getHeight()
      Description copied from interface: IDialogParametrization
      Returns the height of dialog.
      Specified by:
      getHeight in interface IDialogParametrization
      Returns:
      the height of dialog.
    • setHeight

      public void setHeight(int height)
      Parameters:
      height - the height to set
    • getWidth

      public int getWidth()
      Description copied from interface: IDialogParametrization
      Returns the width of dialog.
      Specified by:
      getWidth in interface IDialogParametrization
      Returns:
      the width of dialog.
    • setWidth

      public void setWidth(int width)
      Parameters:
      width - the width to set
    • isResizable

      public boolean isResizable()
      Description copied from interface: IDialogParametrization
      Returns the resizable flag.
      Specified by:
      isResizable in interface IDialogParametrization
      Returns:
      the resizable flag.
    • setResizable

      public void setResizable(boolean resizable)
      Parameters:
      resizable - the resizable to set
    • isEditable

      public boolean isEditable()
      Description copied from interface: IDialogParametrization
      Returns the editable flag.
      Specified by:
      isEditable in interface IDialogParametrization
      Returns:
      the editable flag.
    • setEditable

      public void setEditable(boolean editable)
      Sets editable property.
      Parameters:
      editable - the editable property
    • isAsyncDialog

      public boolean isAsyncDialog()
      Description copied from interface: IDialogParametrization
      Gets dialog creation async flag
      Specified by:
      isAsyncDialog in interface IDialogParametrization
      Returns:
      true if dialog should be created in async mode, false otherwise
    • setAsyncDialog

      public void setAsyncDialog(boolean asyncDialog)
      Sets dialog creation async flag
      Parameters:
      asyncDialog - true if dialog should be created in async mode, false otherwise