Lines Matching defs:pageAttributes

211     private PageAttributes pageAttributes;
301 this.pageAttributes = new PageAttributes();
304 this.jobAttributes, this.pageAttributes);
309 PageAttributes pageAttributes) {
310 initPrintJob2D(frame, doctitle, jobAttributes, pageAttributes);
315 PageAttributes pageAttributes) {
332 this.pageAttributes = (pageAttributes != null)
333 ? pageAttributes : new PageAttributes();
347 int[] res = this.pageAttributes.getPrinterResolution();
465 if (pageAttributes.getOrigin()==OriginType.PRINTABLE) {
549 pageAttributes.setColor(ColorType.COLOR);
551 pageAttributes.setColor(ColorType.MONOCHROME);
557 pageAttributes.setOrientationRequested(
560 pageAttributes.setOrientationRequested(
566 pageAttributes.setPrintQuality(PrintQualityType.DRAFT);
568 pageAttributes.setPrintQuality(PrintQualityType.HIGH);
570 pageAttributes.setPrintQuality(PrintQualityType.NORMAL);
578 pageAttributes.setMedia(mType);
603 pageAttributes.getColor()+
605 pageAttributes.getOrientationRequested()+
606 "\nquality "+pageAttributes.getPrintQuality()+
607 "\nMedia2 "+pageAttributes.getMedia()
714 if (pageAttributes.getColor() == ColorType.COLOR) {
721 if (pageAttributes.getOrientationRequested() ==
730 MediaType media = pageAttributes.getMedia();
737 pageAttributes.getPrintQuality();
844 if (pageAttributes != null &&
845 pageAttributes.getOrigin()==OriginType.PRINTABLE) {
857 if (pageAttributes != null) {
858 int []res = pageAttributes.getPrinterResolution();
1179 pageAttributes.setOrientationRequested(
1182 pageAttributes.setOrientationRequested(
1189 pageAttributes.setMedia(SIZES[MediaType.LETTER.hashCode()]);
1191 pageAttributes.setMedia(SIZES[MediaType.LEGAL.hashCode()]);
1193 pageAttributes.setMedia(SIZES[MediaType.EXECUTIVE.hashCode()]);
1195 pageAttributes.setMedia(SIZES[MediaType.A4.hashCode()]);
1227 (pageAttributes.getOrientationRequested() ==
1230 MediaType media = SIZES[pageAttributes.getMedia().hashCode()];