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 basicIDialogParametrizationimplementation.
-
-
Field Summary
-
Fields inherited from interface com._1c.g5.aef2.components.IParameterization
VOID
-
-
Constructor Summary
Constructors Constructor Description DialogParameterization()Creates a new dialog parameterization instance with empty title, height and width equal to 400px and resizable flag set totrue
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetHeight()Returns the height of dialog.StringgetTitle()Returns the title of dialog.intgetWidth()Returns the width of dialog.booleanisAsyncDialog()Gets dialog creation async flagbooleanisEditable()Returns the editable flag.booleanisResizable()Returns the resizable flag.voidsetAsyncDialog(boolean asyncDialog)Sets dialog creation async flagvoidsetEditable(boolean editable)Sets editable property.voidsetHeight(int height)voidsetResizable(boolean resizable)voidsetTitle(String title)voidsetWidth(int width)
-
-
-
Method Detail
-
getTitle
public String getTitle()
Description copied from interface:IDialogParametrizationReturns the title of dialog.- Specified by:
getTitlein interfaceIDialogParametrization- 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:IDialogParametrizationReturns the height of dialog.- Specified by:
getHeightin interfaceIDialogParametrization- 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:IDialogParametrizationReturns the width of dialog.- Specified by:
getWidthin interfaceIDialogParametrization- 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:IDialogParametrizationReturns the resizable flag.- Specified by:
isResizablein interfaceIDialogParametrization- Returns:
- the resizable flag.
-
setResizable
public void setResizable(boolean resizable)
- Parameters:
resizable- the resizable to set
-
isEditable
public boolean isEditable()
Description copied from interface:IDialogParametrizationReturns the editable flag.- Specified by:
isEditablein interfaceIDialogParametrization- 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:IDialogParametrizationGets dialog creation async flag- Specified by:
isAsyncDialogin interfaceIDialogParametrization- Returns:
trueif dialog should be created in async mode,falseotherwise
-
setAsyncDialog
public void setAsyncDialog(boolean asyncDialog)
Sets dialog creation async flag- Parameters:
asyncDialog-trueif dialog should be created in async mode,falseotherwise
-
-