org.semanticweb.owlapi.util
Class Version

java.lang.Object
  extended by org.semanticweb.owlapi.util.Version

public class Version
extends java.lang.Object

Author: Matthew Horridge
The University of Manchester
Information Management Group
Date: 09-Dec-2009

A simple utility class that describes the version of a piece of software e.g. reasoner version.

A version number is assumed to be the following format: major.minor.patch.build.


Constructor Summary
Version(int major, int minor, int patch, int build)
           
 
Method Summary
 int getBuild()
           
 int getMajor()
           
 int getMinor()
           
 int getPatch()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Version

public Version(int major,
               int minor,
               int patch,
               int build)
Method Detail

getMajor

public int getMajor()

getMinor

public int getMinor()

getPatch

public int getPatch()

getBuild

public int getBuild()