View Javadoc

1   package net.sf.tomp.xtcl.command;
2   
3   import net.sf.tomp.xtcl.Context;
4   
5   /***
6    * Creates a File and puts it as variable to Context
7    * 
8    * @author tomp
9    */
10  public class Fil extends FileCommand {
11      /***
12       * Creates a File and puts it as variable to Context.
13       * 
14       * @param context Context
15       * @return 0
16       * @throws Exception if file creation fails
17       */
18      public int execute(Context context) throws Exception {
19  
20      	context.put(var, context.getFile(fileName));
21  
22          return done(context, 0);
23      }
24  
25      /***
26       * 
27       * @return "FILE " + var + "=" + fileName;
28       */
29      public String toString() {
30          return "FILE " + var + "=" + fileName;
31      }
32  }
33  
34  /*
35   * The contents of this file are subject to the Mozilla Public License Version
36   * 1.1 (the "License"); you may not use this file except in compliance with the
37   * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
38   * Software distributed under the License is distributed on an "AS IS" basis,
39   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
40   * the specific language governing rights and limitations under the License. The
41   * Original Code is: all this file. The Initial Developer of the Original Code
42   * is: Tomas Pitner, Masaryk University in Brno, Czech Republic. Contributor(s):
43   */