• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
2  *
3  * This program and the accompanying materials are made available under
4  * the terms of the Common Public License v1.0 which accompanies this distribution,
5  * and is available at http://www.eclipse.org/legal/cpl-v10.html
6  *
7  * $Id: emmarun.java,v 1.1.1.1.2.1 2004/07/16 23:32:29 vlad_r Exp $
8  */
9 import com.vladium.emma.Command;
10 import com.vladium.emma.EMMARuntimeException;
11 
12 // ----------------------------------------------------------------------------
13 /**
14  * @author Vlad Roubtsov, (C) 2003
15  */
16 public
17 final class emmarun
18 {
19     // public: ................................................................
20 
21     // TODO: set m_out consistently with LoggerInit
22 
main(final String [] args)23     public static void main (final String [] args)
24         throws EMMARuntimeException
25     {
26         final Command command = Command.create ("run", emmarun.class.getName (), args);
27         command.run ();
28     }
29 
30     // protected: .............................................................
31 
32     // package: ...............................................................
33 
34     // private: ...............................................................
35 
36 } // end of class
37 // ----------------------------------------------------------------------------