org.ditchnet.PaneVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-tabpane Show documentation
Show all versions of bboss-tabpane Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
The newest version!
package org.ditchnet;
import java.util.Date;
public class PaneVersion
{
public static final String description="1.0.2";
public static final short version=100;
public static final Date releaseDate = new Date("2009/07/02");
/**
* Prints the value of the description and cvs fields to System.out.
* @param args
*/
public static void main(String[] args) {
System.out.println("\nVersion: \t" + description + "\nDate:\t" + releaseDate);
}
/**
* Returns the catenation of the description and cvs fields.
* @return String with description
*/
public static String printDescription() {
return "Pane " + description ;
}
/**
* Returns the version field as a String.
* @return String with version
*/
public static String printVersion() {
return Short.toString(version);
}
/**
* Compares the specified version number against the current version number.
* @param v short
* @return Result of == operator.
*/
public static boolean compareTo(short v) {
return version == v;
}
}