Home
last modified time | relevance | path

Searched refs:DelegateAction (Results 1 – 1 of 1) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DOutlinePage.java981 mMenuManager.add(new DelegateAction(prefix + ActionFactory.CUT.getId())); in setupContextMenu()
982 mMenuManager.add(new DelegateAction(prefix + ActionFactory.COPY.getId())); in setupContextMenu()
983 mMenuManager.add(new DelegateAction(prefix + ActionFactory.PASTE.getId())); in setupContextMenu()
987 mMenuManager.add(new DelegateAction(prefix + ActionFactory.DELETE.getId())); in setupContextMenu()
996 if (action instanceof DelegateAction) { in setupContextMenu()
997 ((DelegateAction) action).updateFromEditorPart(mGraphicalEditorPart); in setupContextMenu()
1025 private static class DelegateAction extends Action { class in OutlinePage
1029 public DelegateAction(String canvasActionId) { in DelegateAction() method in OutlinePage.DelegateAction