Package com.adobe.internal.xmp
Interface XMPVersionInfo
- 
public interface XMPVersionInfoXMP Toolkit Version Information.Version information for the XMP toolkit is stored in the jar-library and available through a runtime call,
XMPMetaFactory.getVersionInfo(), addition static version numbers are defined in "version.properties".- Since:
 - 23.01.2006
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBuild()intgetMajor()java.lang.StringgetMessage()intgetMicro()intgetMinor()booleanisDebug() 
 - 
 
- 
- 
Method Detail
- 
getMajor
int getMajor()
- Returns:
 - Returns the primary release number, the "1" in version "1.2.3".
 
 
- 
getMinor
int getMinor()
- Returns:
 - Returns the secondary release number, the "2" in version "1.2.3".
 
 
- 
getMicro
int getMicro()
- Returns:
 - Returns the tertiary release number, the "3" in version "1.2.3".
 
 
- 
getBuild
int getBuild()
- Returns:
 - Returns a rolling build number, monotonically increasing in a release.
 
 
- 
isDebug
boolean isDebug()
- Returns:
 - Returns true if this is a debug build.
 
 
- 
getMessage
java.lang.String getMessage()
- Returns:
 - Returns a comprehensive version information string.
 
 
 - 
 
 -