updated comments.

X-SVN-Rev: 7940
This commit is contained in:
Syn Wee Quek 2002-03-12 00:00:44 +00:00
parent 600998cd7f
commit 72e4fe082e

View file

@ -5,8 +5,8 @@
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/util/VersionInfo.java,v $
* $Date: 2002/03/10 19:40:17 $
* $Revision: 1.4 $
* $Date: 2002/03/12 00:00:44 $
* $Revision: 1.5 $
*
* jitterbug 1741
*****************************************************************************************
@ -104,7 +104,9 @@ public final class VersionInfo
* @param version version String in the format of "major.minor.milli.micro"
* or "major.minor.milli" or "major.minor" or "major",
* where major, minor, milli, micro are non-negative numbers
* less than 255
* less than 255. If the trailing version numbers are not
* specified they are taken as 0s. E.g. Version "3.1" is
* equivalent to "3.1.0.0".
* @return an instance of VersionInfo with the argument version.
* @exception throws an IllegalArgumentException when the argument version
* is not in the right format
@ -176,6 +178,7 @@ public final class VersionInfo
/**
* Returns an instance of VersionInfo with the argument version.
* Equivalent to getInstance(major, minor, milli, 0).
* @param major major version, non-negative number less than 255.
* @param minor minor version, non-negative number less than 255.
* @param milli milli version, non-negative number less than 255.
@ -190,6 +193,7 @@ public final class VersionInfo
/**
* Returns an instance of VersionInfo with the argument version.
* Equivalent to getInstance(major, minor, 0, 0).
* @param major major version, non-negative number less than 255.
* @param minor minor version, non-negative number less than 255.
* @exception throws an IllegalArgumentException when either arguments are
@ -203,6 +207,7 @@ public final class VersionInfo
/**
* Returns an instance of VersionInfo with the argument version.
* Equivalent to getInstance(major, 0, 0, 0).
* @param major major version, non-negative number less than 255.
* @exception throws an IllegalArgumentException when either arguments are
* negative or greater than 255