diff options
author | Dirk-Willem van Gulik <dirkx@apache.org> | 1999-11-08 19:12:49 +0000 |
---|---|---|
committer | Dirk-Willem van Gulik <dirkx@apache.org> | 1999-11-08 19:12:49 +0000 |
commit | 10070e8383ff94f3f256e346b8c4a2a493533cfb (patch) | |
tree | 59080d7faae7c0bd9ff4e5a48f4df4394d468a02 /src/org/apache/fop/apps/Version.java | |
parent | b510e7f15a798e944bb138993f2b586413adecbe (diff) | |
download | xmlgraphics-fop-10070e8383ff94f3f256e346b8c4a2a493533cfb.tar.gz xmlgraphics-fop-10070e8383ff94f3f256e346b8c4a2a493533cfb.zip |
Initial revision
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193213 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/org/apache/fop/apps/Version.java')
-rw-r--r-- | src/org/apache/fop/apps/Version.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/org/apache/fop/apps/Version.java b/src/org/apache/fop/apps/Version.java new file mode 100644 index 000000000..bcc2c26e0 --- /dev/null +++ b/src/org/apache/fop/apps/Version.java @@ -0,0 +1,18 @@ +package org.apache.xml.fop.apps; + +/** + * class representing the version of FOP. + * + * added at the request of Stefano Mazzocchi for use by Cocoon. + */ +public class Version { + + /** + * get the version of FOP + * + * @return the version string + */ + public static String getVersion() { + return "FOP 0.12.0pre5"; + } +} |