Home | History | Annotate | Download | only in gle2

Lines Matching refs:action

33 import org.eclipse.jface.action.Action;
34 import org.eclipse.jface.action.ActionContributionItem;
35 import org.eclipse.jface.action.IAction;
36 import org.eclipse.jface.action.Separator;
72 IAction action = new PickLayoutAction("Choose Layout...", KEY_LV_ITEM);
73 new ActionContributionItem(action).fill(menu, -1);
84 action = new SetListTypeAction("Spinner Item",
86 new ActionContributionItem(action).fill(menu, -1);
87 action = new SetListTypeAction("Spinner Dropdown Item",
89 new ActionContributionItem(action).fill(menu, -1);
93 action = new SetListTypeAction("Simple List Item",
95 new ActionContributionItem(action).fill(menu, -1);
96 action = new SetListTypeAction("Simple 2-Line List Item",
99 new ActionContributionItem(action).fill(menu, -1);
100 action = new SetListTypeAction("Checked List Item",
103 new ActionContributionItem(action).fill(menu, -1);
104 action = new SetListTypeAction("Single Choice List Item",
107 new ActionContributionItem(action).fill(menu, -1);
108 action = new SetListTypeAction("Multiple Choice List Item",
113 action = new SetListTypeAction("Simple Expandable List Item",
115 new ActionContributionItem(action).fill(menu, -1);
116 action = new SetListTypeAction("Simple 2-Line Expandable List Item",
119 new ActionContributionItem(action).fill(menu, -1);
122 action = new PickLayoutAction("Choose Header...", KEY_LV_HEADER);
123 new ActionContributionItem(action).fill(menu, -1);
124 action = new PickLayoutAction("Choose Footer...", KEY_LV_FOOTER);
125 new ActionContributionItem(action).fill(menu, -1);
134 private class SetListTypeAction extends Action {
155 * Action which brings up a resource chooser to choose an arbitrary layout as the
158 private class PickLayoutAction extends Action {