-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
beta
-
generic
-
generic
Name: ooR10006 Date: 03/05/2001
The spec for javax.print.attribute.standard.Fidelity, getName() method says:
"...For class Fidelity the category name is "printer-is-accepting-jobs"..."
In fact, merlin b54 API implementation, getName() returns "ipp-attribute-fidelity" string.
The following test shows this:
import javax.print.attribute.standard.Fidelity;
public class Test {
public static void main(String[] args){
System.out.println(Fidelity.FIDELITY_FALSE.getName());
return;
}
}
Due to this new JCK test fails:
api/javax_print/attribute/standard/index.html#GetName[Fidelity2005]
======================================================================