You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Fop.java 437B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  3. * For details on use and redistribution please refer to the
  4. * LICENSE file included with these sources."
  5. */
  6. package org.apache.fop.apps;
  7. public class Fop {
  8. public static void main (String [] args) {
  9. CommandLineOptions options = new CommandLineOptions (args);
  10. Starter starter = options.getStarter();
  11. starter.run();
  12. }
  13. }