View Javadoc

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