01: /*
02: * ExecuteFile.java
03: *
04: * Copyright (C) 2007 Ferran Busquets
05: *
06: * This program is free software: you can redistribute it and/or modify
07: * it under the terms of the GNU General Public License as published by
08: * the Free Software Foundation, either version 3 of the License, or
09: * any later version.
10: *
11: * This program is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with this program. If not, see <http://www.gnu.org/licenses/>.
18: *
19: */
20: package org.naturalcli.commands;
21:
22: import org.naturalcli.Command;
23: import org.naturalcli.InvalidSyntaxException;
24: import org.naturalcli.NaturalCLI;
25:
26: /**
27: * Implements a command that executes a command list inside a file.
28: *
29: * @see ExecuteFileCommandExecutor
30: * @author Ferran Busquets
31: */
32: public class ExecuteFileCommand extends Command {
33:
34: /**
35: * Constructor.
36: *
37: * @param naturalCLI the naturalCLI processor to use.
38: */
39: public ExecuteFileCommand(NaturalCLI naturalCLI) {
40: try {
41: prepare("execute file <filename:string>",
42: "Execute the commands on file.",
43: new ExecuteFileCommandExecutor(naturalCLI));
44: } catch (InvalidSyntaxException e) {
45: throw new RuntimeException(e);
46: }
47: }
48:
49: }
|