git clone of logicmail with some fixes/features added
at master 42 lines 1.5 kB view raw
1//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2// This file is part of J2MEUnit, a Java 2 Micro Edition unit testing framework. 3// 4// J2MEUnit is free software distributed under the Common Public License (CPL). 5// It may be redistributed and/or modified under the terms of the CPL. You 6// should have received a copy of the license along with J2MEUnit. It is also 7// available from the website of the Open Source Initiative at 8// http://www.opensource.org. 9// 10// J2MEUnit is distributed in the hope that it will be useful, but WITHOUT ANY 11// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 12// FOR A PARTICULAR PURPOSE. 13//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 14package j2meunit.util; 15 16/******************************************************************** 17 * This class contains the current version number of J2MEUnit. 18 */ 19public class Version 20{ 21 //~ Constructors ----------------------------------------------------------- 22 23 /*************************************** 24 * Creates a new Version object. 25 */ 26 private Version() 27 { 28 // don't instantiate 29 } 30 31 //~ Methods ---------------------------------------------------------------- 32 33 /*************************************** 34 * Returns the current version of J2MEUnit. 35 * 36 * @return A string containing the version ID 37 */ 38 public static String id() 39 { 40 return "1.1.1"; 41 } 42}