-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.4.0
-
generic
-
generic
Name: vtR10009 Date: 07/24/2001
The bug is found in jdk1.4.0beta-b65 and disappears in the last JDK builds
(checked builds b69, b72). This bug is created specially for exclusion tests
in JCK Merlin-beta, which is based on jdk1.4.0beta-b65.
I suggest to close this bug as "fixed".
Values returned by method toString() for some predefined MediaSizeName objects
do not correspond to standart IPP values.
Acording to the IPP(RFC2911) :
"The following standard values are defined for American Standard (i.e.
ANSI) engineering media sizes:
'a': Specifies the engineering ANSI A size medium: 8.5 inches x 11
inches
'b': Specifies the engineering ANSI B size medium: 11 inches x 17
inches
'c': Specifies the engineering ANSI C size medium: 17 inches x 22
inches
'd': Specifies the engineering ANSI D size medium: 22 inches x 34
inches
'e': Specifies the engineering ANSI E size medium: 34 inches x 44
inches"
Metod toString() for these fields returns invalid values in the API
implementation(build 1.4.0-beta-b65).
This bug causes failure of JCK-merlin-beta test:
api/javax_print/attribute/standard/MediaSizeName/index.html#Fields
However last API implementation (build 1.4.0-beta-b72) passes these tests
and bug was filled only for test exclusion from JCK-merlin-beta.
To reproduce the bug run the following test with JDK 1.4.0-beta-b65 build:
------------------------------- test.java --------------------------------
import javax.print.attribute.standard.MediaSizeName;
public class test {
public static void main(String args[]) {
boolean isFailed = false;
String errMsg = " ";
String[] ess = {"a", "b", "c", "d", "e"};
String[] esn = {"A", "B", "C", "D", "E"};
MediaSizeName[] ex = {MediaSizeName.A, MediaSizeName.B, MediaSizeName.C,
MediaSizeName.D, MediaSizeName.E};
for (int i = 0; i < ex.length; ++i){
if (ex[i].toString().compareTo(ess[i]) != 0){
isFailed = true;
errMsg += "MediaSizeName."+esn[i] + ".toString() "
+ ex[i].toString() + " ";
}
}
if (isFailed == true){
System.out.println("Failed : " + errMsg);
return ;
}
System.out.println("OKAY");
}
}
---------------------------Logs--------------------------------------
> $jdk_b65/bin/javac test.java
> $jdk_b65/bin/java test
Failed : MediaSizeName.A.toString() A MediaSizeName.B.toString() B
MediaSizeName.C.toString() C MediaSizeName.D.toString() D
MediaSizeName.E.toString() E
> $jdk_b65/bin/java -version
java version "1.4.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b65)
Java HotSpot(TM) Client VM (build 1.4.0-beta-b65, mixed mode)
======================================================================
- duplicates
-
JDK-4447015 toString returns non-IPP compliant strings for MediaName and MediaSizeName
-
- Resolved
-