Interface EditableComboViewModel
-
- All Superinterfaces:
ComboSelectViewModel
,ComboViewModel
,ControlViewModel
,org.eclipse.emf.ecore.EObject
,IControlViewModel
,IViewModel
,org.eclipse.emf.common.notify.Notifier
,SelectViewModel
- All Known Subinterfaces:
BorderValueControlViewModel
- All Known Implementing Classes:
BorderValueControlViewModelImpl
,EditableComboViewModelImpl
public interface EditableComboViewModel extends ComboSelectViewModel
A representation of the model object 'Editable Combo View Model'.The following features are supported:
- See Also:
DtAefPackage.getEditableComboViewModel()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.eclipse.swt.graphics.Image
getImage()
Returns the value of the 'Image' attribute.String
getValue()
Returns the value of the 'Value' attribute.boolean
isTextReadOnly()
Returns the value of the 'Text Read Only' attribute.void
setImage(org.eclipse.swt.graphics.Image value)
Sets the value of the 'Image
' attribute.void
setTextReadOnly(boolean value)
Sets the value of the 'Text Read Only
' attribute.void
setValue(String value)
Sets the value of the 'Value
' attribute.-
Methods inherited from interface com._1c.g5.aef2.standard.viewModels.ComboViewModel
getItems, getQuickSearchText, getSelectedItem, isQuickSearchAllowed, setQuickSearchAllowed, setQuickSearchText, setSelectedItem
-
Methods inherited from interface com._1c.g5.aef2.standard.viewModels.ControlViewModel
getApplyValueChange, getContexts, getExternalValidationStatus, getLayoutData, getStatus, isEditable, isEnabled, setApplyValueChange, setEditable, setEnabled, setExternalValidationStatus, setLayoutData, setStatus
-
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.IViewModel
getEventChannel, getParent, setEventChannel, setParent
-
Methods inherited from interface org.eclipse.emf.common.notify.Notifier
eAdapters, eDeliver, eNotify, eSetDeliver
-
Methods inherited from interface com._1c.g5.v8.dt.ui.aef.viewModels.SelectViewModel
getButtons
-
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of the 'Value' attribute. The selected value.- Returns:
- the value of the 'Value' attribute.
- See Also:
setValue(String)
,DtAefPackage.getEditableComboViewModel_Value()
-
setValue
void setValue(String value)
Sets the value of the 'Value
' attribute.- Parameters:
value
- the new value of the 'Value' attribute.- See Also:
getValue()
-
getImage
org.eclipse.swt.graphics.Image getImage()
Returns the value of the 'Image' attribute. The image of selected value.- Returns:
- the value of the 'Image' attribute.
- See Also:
setImage(Image)
,DtAefPackage.getEditableComboViewModel_Image()
-
setImage
void setImage(org.eclipse.swt.graphics.Image value)
Sets the value of the 'Image
' attribute.- Parameters:
value
- the new value of the 'Image' attribute.- See Also:
getImage()
-
isTextReadOnly
boolean isTextReadOnly()
Returns the value of the 'Text Read Only' attribute. Indicates that whether editable combo text input is supported or not- Returns:
- the value of the 'Text Read Only' attribute.
- See Also:
setTextReadOnly(boolean)
,DtAefPackage.getEditableComboViewModel_TextReadOnly()
-
setTextReadOnly
void setTextReadOnly(boolean value)
Sets the value of the 'Text Read Only
' attribute.- Parameters:
value
- the new value of the 'Text Read Only' attribute.- See Also:
isTextReadOnly()
-
-