Home | History | Annotate | Download | only in gle2

Lines Matching refs:mAction

33     private final IAction mAction;
41 mAction = action;
46 mAction.addPropertyChangeListener(listener);
51 return mAction.getAccelerator();
56 return mAction.getActionDefinitionId();
61 return mAction.getDescription();
66 return mAction.getDisabledImageDescriptor();
71 return mAction.getHelpListener();
76 return mAction.getHoverImageDescriptor();
81 return mAction.getId();
86 return mAction.getImageDescriptor();
91 return mAction.getMenuCreator();
96 return mAction.getStyle();
101 return mAction.getText();
106 return mAction.getToolTipText();
111 return mAction.isChecked();
116 return mAction.isEnabled();
121 return mAction.isHandled();
126 mAction.removePropertyChangeListener(listener);
131 mAction.run();
136 mAction.runWithEvent(event);
141 mAction.setActionDefinitionId(id);
146 mAction.setChecked(checked);
151 mAction.setDescription(text);
156 mAction.setDisabledImageDescriptor(newImage);
161 mAction.setEnabled(enabled);
166 mAction.setHelpListener(listener);
171 mAction.setHoverImageDescriptor(newImage);
176 mAction.setId(id);
181 mAction.setImageDescriptor(newImage);
186 mAction.setMenuCreator(creator);
191 mAction.setText(text);
196 mAction.setToolTipText(text);
201 mAction.setAccelerator(keycode);