Home | History | Annotate | Download | only in node

Lines Matching refs:commands

18   private final PCommand[] commands;
22 commands = new PCommand[originalChildCommands.size()];
23 originalChildCommands.toArray(commands);
24 for (int i = 0; i < commands.length; i++) {
25 commands[i].parent(this); // set parent.
45 for (int i = 0; i < commands.length; i++) {
46 if (commands[i] == oldChild) {
47 commands[i] = (PCommand) newChild;
58 for (int i = 0; i < commands.length; i++) {
59 commands[i].apply(sw);