aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/apps/Version.java
blob: bcc2c26e0657006a033faad849c082896979748a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
    }
}