/* * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. * * Distributable under LGPL license. * See terms of license at gnu.org. */ package net.java.sip.communicator.impl.version; import net.java.sip.communicator.service.version.*; /** * The version service keeps track of the SIP Communicator version that we are * currently running. Other modules (such as a Help->About dialog) query and * use this service in order to show the current application version. *
* This version service implementation is based around the VersionImpl class * where all details of the version are statically defined. * * @author Emil Ivov */ public class VersionServiceImpl implements VersionService { /** * Returns a Version object containing version details of the * SIP Communicator version that we're currently running. * * @return a Version object containing version details of the * SIP Communicator version that we're currently running. */ public Version getCurrentVersion() { return VersionImpl.currentVersion(); } /** * Returns a Version instance corresponding to the version * string. * * @param version a version String that we have obtained by calling a * Version.toString() method. * @return the Version object corresponding to the * version string. */ public Version parseVersionString(String version) { /** @todo implement parseVersionString() */ return null; } }