Package com._1c.g5.v8.dt.ui.aef.actions
Interface IDtAction
- 
- All Known Implementing Classes:
- AbstractDtModelEditingSupportAwareAction,- DtCollapseAllAction,- DtCommandActionBase,- DtDeleteAction,- DtEditAction,- DtExpandAllAction,- DtMoveDownAction,- DtMoveUpAction,- DtSortAction,- DtWizardAction,- LoadIntegrationServiceChannelsAction
 
 public interface IDtActionDefines public contract of DT actions.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecuteWith(org.eclipse.emf.ecore.EObject model, org.eclipse.emf.ecore.EStructuralFeature feature, ISelection selection)Executes the action for a givenmodel, modelfeatureandselection.org.eclipse.swt.graphics.ImagegetIcon()StringgetToolTip()booleanisEnabledFor(org.eclipse.emf.ecore.EObject model, org.eclipse.emf.ecore.EStructuralFeature feature, ISelection selection)Checks whether the action is enabled for a givenmodel, modelfeatureandselection.
 
- 
- 
- 
Method Detail- 
getIconorg.eclipse.swt.graphics.Image getIcon() - Returns:
- action icon image.
 
 - 
getToolTipString getToolTip() - Returns:
- action tool tip text.
 
 - 
isEnabledForboolean isEnabledFor(org.eclipse.emf.ecore.EObject model, org.eclipse.emf.ecore.EStructuralFeature feature, ISelection selection)Checks whether the action is enabled for a givenmodel, modelfeatureandselection.- Parameters:
- model- model to check.
- feature- feature to check.
- selection- selection to check.
- Returns:
- trueif action is enabled,- falseotherwise.
 
 - 
executeWithvoid executeWith(org.eclipse.emf.ecore.EObject model, org.eclipse.emf.ecore.EStructuralFeature feature, ISelection selection)Executes the action for a givenmodel, modelfeatureandselection.- Parameters:
- model- model to execute with.
- feature- feature to execute with.
- selection- selection to execute with.
 
 
- 
 
-