Searched refs:crossFeedResolution (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DResolutionSyntax.java94 private int crossFeedResolution; field in class:ResolutionSyntax
118 * @param crossFeedResolution
127 * (unchecked exception) Thrown if <CODE>crossFeedResolution</CODE> <
130 public ResolutionSyntax(int crossFeedResolution, int feedResolution, argument
133 if (crossFeedResolution < 1) {
134 throw new IllegalArgumentException("crossFeedResolution is < 1");
143 this.crossFeedResolution = crossFeedResolution * units;
204 return convertFromDphi (crossFeedResolution, units);
278 return (this.crossFeedResolution <
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterResolution.java81 * @param crossFeedResolution
90 * (unchecked exception) Thrown if <CODE>crossFeedResolution</CODE> <
93 public PrinterResolution(int crossFeedResolution, int feedResolution, argument
95 super (crossFeedResolution, feedResolution, units);

Completed in 110 milliseconds