01: // Main.java
02: // $Id: Main.java,v 1.2 2002/02/04 17:28:12 cbournez Exp $
03: // (c) COPYRIGHT MIT and INRIA, 2002.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.offline.command;
07:
08: /**
09: * A place holder for running Jigshell.
10: */
11:
12: public class Main {
13:
14: public static void main(String[] args) {
15:
16: new org.w3c.tools.offline.command.CommandInterpreter(args);
17: }
18: }
|