Main.java :  » Web-Server » Jigsaw » org » w3c » jigadm » Java Open Source

Java Open Source » Web Server » Jigsaw 
Jigsaw » org » w3c » jigadm » Main.java
// Main.java
// $Id: Main.java,v 1.2 1998/01/22 13:22:54 bmahe Exp $
// (c) COPYRIGHT MIT and INRIA, 1996.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.jigadm;

/**
 * a place holder for running the administration tool
 */

public class Main {

    public static void main(String[] args) {
  if(args.length == 0) {
      String[] arg = {"http://localhost:8009/"};
      org.w3c.jigadm.gui.ServerBrowser.main(arg);
  } else {
      org.w3c.jigadm.gui.ServerBrowser.main(args);
  }
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.