You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by ar...@apache.org on 2001/02/21 02:06:43 UTC

cvs commit: xml-fop/src/org/apache/fop/apps Fop.java

arved       01/02/20 17:06:43

  Added:       src/org/apache/fop/apps Fop.java
  Log:
  Updated command line
  
  Revision  Changes    Path
  1.1                  xml-fop/src/org/apache/fop/apps/Fop.java
  
  Index: Fop.java
  ===================================================================
  /* 
   * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
   * For details on use and redistribution please refer to the 
   * LICENSE file included with these sources."
   */
  
  
  package org.apache.fop.apps;
  
  public class Fop {
      public static void main (String [] args) {
          CommandLineOptions options = new CommandLineOptions (args);
          Starter starter = options.getStarter();
          starter.run();
      }
  }