Interface DialogViewModel
-
- All Superinterfaces:
org.eclipse.emf.ecore.EObject,IContainerViewModel,IDialogViewModel,IViewModel,org.eclipse.emf.common.notify.Notifier
- All Known Implementing Classes:
DialogViewModelImpl
public interface DialogViewModel extends IDialogViewModel
A representation of the model object 'Dialog View Model'. The dialog view model.The following features are supported:
- See Also:
AefStandardPackage.getDialogViewModel()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IViewModelgetActiveChildViewModel()Returns the value of the 'Active Child View Model' reference.intgetHeight()Returns the value of the 'Height' attribute.StringgetTitle()Returns the value of the 'Title' attribute.intgetWidth()Returns the value of the 'Width' attribute.booleanisAsyncDialog()Returns the value of the 'Async Dialog' attribute.booleanisOkButtonEnabled()Returns the value of the 'Ok Button Enabled' attribute.booleanisResizable()Returns the value of the 'Resizable' attribute.voidsetActiveChildViewModel(IViewModel value)Sets the value of the 'Active Child View Model' reference.voidsetAsyncDialog(boolean value)Sets the value of the 'Async Dialog' attribute.voidsetHeight(int value)Sets the value of the 'Height' attribute.voidsetOkButtonEnabled(boolean value)Sets the value of the 'Ok Button Enabled' attribute.voidsetResizable(boolean value)Sets the value of the 'Resizable' attribute.voidsetTitle(String value)Sets the value of the 'Title' attribute.voidsetWidth(int value)Sets the value of the 'Width' attribute.-
Methods inherited from interface org.eclipse.emf.ecore.EObject
eAllContents, eClass, eContainer, eContainingFeature, eContainmentFeature, eContents, eCrossReferences, eGet, eGet, eInvoke, eIsProxy, eIsSet, eResource, eSet, eUnset
-
Methods inherited from interface com._1c.g5.aef2.viewModels.IContainerViewModel
getChildren
-
Methods inherited from interface com._1c.g5.aef2.viewModels.IViewModel
getEventChannel, getParent, setEventChannel, setParent
-
-
-
-
Method Detail
-
getTitle
String getTitle()
Returns the value of the 'Title' attribute. The title of the dialog.- Returns:
- the value of the 'Title' attribute.
- See Also:
setTitle(String),AefStandardPackage.getDialogViewModel_Title()
-
setTitle
void setTitle(String value)
Sets the value of the 'Title' attribute.- Parameters:
value- the new value of the 'Title' attribute.- See Also:
getTitle()
-
getHeight
int getHeight()
Returns the value of the 'Height' attribute. The height of the dialog.- Returns:
- the value of the 'Height' attribute.
- See Also:
setHeight(int),AefStandardPackage.getDialogViewModel_Height()
-
setHeight
void setHeight(int value)
Sets the value of the 'Height' attribute.- Parameters:
value- the new value of the 'Height' attribute.- See Also:
getHeight()
-
getWidth
int getWidth()
Returns the value of the 'Width' attribute. The width of the dialog.- Returns:
- the value of the 'Width' attribute.
- See Also:
setWidth(int),AefStandardPackage.getDialogViewModel_Width()
-
setWidth
void setWidth(int value)
Sets the value of the 'Width' attribute.- Parameters:
value- the new value of the 'Width' attribute.- See Also:
getWidth()
-
isResizable
boolean isResizable()
Returns the value of the 'Resizable' attribute. The resizable flag.- Returns:
- the value of the 'Resizable' attribute.
- See Also:
setResizable(boolean),AefStandardPackage.getDialogViewModel_Resizable()
-
setResizable
void setResizable(boolean value)
Sets the value of the 'Resizable' attribute.- Parameters:
value- the new value of the 'Resizable' attribute.- See Also:
isResizable()
-
isAsyncDialog
boolean isAsyncDialog()
Returns the value of the 'Async Dialog' attribute. The async dialog creation flag- Returns:
- the value of the 'Async Dialog' attribute.
- See Also:
setAsyncDialog(boolean),AefStandardPackage.getDialogViewModel_AsyncDialog()
-
setAsyncDialog
void setAsyncDialog(boolean value)
Sets the value of the 'Async Dialog' attribute.- Parameters:
value- the new value of the 'Async Dialog' attribute.- See Also:
isAsyncDialog()
-
isOkButtonEnabled
boolean isOkButtonEnabled()
Returns the value of the 'Ok Button Enabled' attribute. The default value is"true". The 'ok' button enabled state.- Returns:
- the value of the 'Ok Button Enabled' attribute.
- See Also:
setOkButtonEnabled(boolean),AefStandardPackage.getDialogViewModel_OkButtonEnabled()
-
setOkButtonEnabled
void setOkButtonEnabled(boolean value)
Sets the value of the 'Ok Button Enabled' attribute.- Parameters:
value- the new value of the 'Ok Button Enabled' attribute.- See Also:
isOkButtonEnabled()
-
getActiveChildViewModel
IViewModel getActiveChildViewModel()
Returns the value of the 'Active Child View Model' reference. Currently active child view model.- Returns:
- the value of the 'Active Child View Model' reference.
- See Also:
setActiveChildViewModel(IViewModel),AefStandardPackage.getDialogViewModel_ActiveChildViewModel()
-
setActiveChildViewModel
void setActiveChildViewModel(IViewModel value)
Sets the value of the 'Active Child View Model' reference.- Parameters:
value- the new value of the 'Active Child View Model' reference.- See Also:
getActiveChildViewModel()
-
-