View Javadoc

1   package net.sf.tomp.xtcl.command;
2   
3   /***
4    * DOCUMENT ME!
5    * 
6    * @author tomp
7    */
8   public abstract class FileCommand extends VarCommand {
9       /*** DOCUMENT ME! */
10      protected String fileName;
11  
12      /***
13       * DOCUMENT ME!
14       * 
15       * @param fN DOCUMENT ME!
16       */
17      public void setFile(String fN) {
18          fileName = fN;
19      }
20  }
21  
22  /*
23   * The contents of this file are subject to the Mozilla Public License Version
24   * 1.1 (the "License"); you may not use this file except in compliance with the
25   * License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
26   * Software distributed under the License is distributed on an "AS IS" basis,
27   * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
28   * the specific language governing rights and limitations under the License. The
29   * Original Code is: all this file. The Initial Developer of the Original Code
30   * is: Tomas Pitner, Masaryk University in Brno, Czech Republic. Contributor(s):
31   */