Interface MBindingTable
-
- All Superinterfaces:
MApplicationElement
public interface MBindingTable extends MApplicationElement
A representation of the model object 'Binding Table'.A set of Bindings that will be active if the matching
MBindingContext
is active.- Since:
- 1.0
- Restriction:
- This interface is not intended to be implemented by clients.
The following features are supported:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MBindingContext
getBindingContext()
Returns the value of the 'Binding Context' reference.List<MKeyBinding>
getBindings()
Returns the value of the 'Bindings' containment reference list.void
setBindingContext(MBindingContext value)
Sets the value of the 'Binding Context
' reference.-
Methods inherited from interface org.eclipse.e4.ui.model.application.MApplicationElement
getContributorURI, getElementId, getPersistedState, getTags, getTransientData, setContributorURI, setElementId
-
-
-
-
Method Detail
-
getBindings
List<MKeyBinding> getBindings()
Returns the value of the 'Bindings' containment reference list. The list contents are of typeMKeyBinding
.Developers: Add more detailed documentation by editing this comment in org.eclipse.ui.model.workbench/model/UIElements.ecore. There is a GenModel/documentation node under each type and attribute.
- Returns:
- the value of the 'Bindings' containment reference list.
-
getBindingContext
MBindingContext getBindingContext()
Returns the value of the 'Binding Context' reference.Developers: Add more detailed documentation by editing this comment in org.eclipse.ui.model.workbench/model/UIElements.ecore. There is a GenModel/documentation node under each type and attribute.
- Returns:
- the value of the 'Binding Context' reference.
- See Also:
setBindingContext(MBindingContext)
-
setBindingContext
void setBindingContext(MBindingContext value)
Sets the value of the 'Binding Context
' reference.- Parameters:
value
- the new value of the 'Binding Context' reference.- See Also:
getBindingContext()
-
-