Lines Matching refs:actions
120 * found with the {@link #getActions} method. These actions
131 * strokes to actions.
133 * can use actions that extend <code>TextAction</code>.
153 * components in order to bind events to actions. Swing encourages the
546 * actions as a way to restrict the cursor movement.
557 * actions as a way to restrict the cursor movement. A null return value
643 * actions. Setting to <code>null</code> effectively disables
1159 * the cut, copy, and paste actions associated with a
1181 * The sets of bindings and actions may be empty but must be
1186 * @param actions the set of actions
1188 public static void loadKeymap(Keymap map, KeyBinding[] bindings, Action[] actions) {
1190 for (Action a : actions) {
1367 * keymap actions.
3734 * Returns the number of accessible actions available in this object
3742 Action [] actions = JTextComponent.this.getActions();
3743 return actions.length;
3749 * @param i zero-based index of the actions
3755 Action [] actions = JTextComponent.this.getActions();
3756 if (i < 0 || i >= actions.length) {
3759 return (String)actions[i].getValue(Action.NAME);
3765 * @param i zero-based index of actions
3771 Action [] actions = JTextComponent.this.getActions();
3772 if (i < 0 || i >= actions.length) {
3780 actions[i].actionPerformed(ae);
4131 Action[] actions = new Action[bindings.size()];
4134 actions[i++] = e.nextElement();
4136 return actions;
4364 Object[] actions = keymap.getBoundActions();
4365 int keymapCount = (actions == null) ? 0 : actions.length;