Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Version.java 463B

123456789101112131415161718192021222324
  1. /*
  2. * $Id$
  3. * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
  4. * For details on use and redistribution please refer to the
  5. * LICENSE file included with these sources."
  6. */
  7. package org.apache.fop.apps;
  8. /**
  9. * class representing the version of FOP.
  10. */
  11. public class Version {
  12. /**
  13. * get the version of FOP
  14. *
  15. * @return the version string
  16. */
  17. public static String getVersion() {
  18. return "1.0dev";
  19. }
  20. }