Package org.apache.batik
Class Version
- java.lang.Object
-
- org.apache.batik.Version
-
public final class Version extends java.lang.Object
This class defines the Batik version number.- Version:
- $Id: Version.java 1808978 2017-09-20 09:23:26Z ssteiner $
-
-
Constructor Summary
Constructors Constructor Description Version()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.String
getVersion()
Returns the Batik version.
-
-
-
Method Detail
-
getVersion
public static java.lang.String getVersion()
Returns the Batik version.This is based on the Implementation-Version attribute in the batik-util.jar (which is where this Version class lives) and the 'HeadURL' SVN keyword. The keyword be substituted with the URL of this file, which is then inspected to determine if this file was compiled from the trunk, a tag (a release version), or a branch. The format of the returned string will be one of the following:
Source Version string Release version version Trunk version+rrevision Branch version+rrevision; branch-name Unknown development version Prior to release 1.7, the version string would be the straight tag (e.g.
"batik-1_6"
) or the string"development.version"
. revision is the Subversion working copy's revision number.
-
-