View Javadoc

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