Lines Matching refs:jobAttributes

210     private JobAttributes jobAttributes;
300 this.jobAttributes = new JobAttributes();
304 this.jobAttributes, this.pageAttributes);
308 JobAttributes jobAttributes,
310 initPrintJob2D(frame, doctitle, jobAttributes, pageAttributes);
314 JobAttributes jobAttributes,
323 (jobAttributes == null ||
324 jobAttributes.getDialog() == DialogType.NATIVE)) {
330 this.jobAttributes = (jobAttributes != null)
331 ? jobAttributes : new JobAttributes();
336 int[][] pageRanges = this.jobAttributes.getPageRanges();
339 this.jobAttributes.setPageRanges(new int[][] {
342 this.jobAttributes.setToPage(last);
343 this.jobAttributes.setFromPage(first);
354 DestinationType dest= this.jobAttributes.getDestination();
359 String destStr = jobAttributes.getFileName();
361 (jobAttributes.getDialog() == JobAttributes.DialogType.NONE)) {
400 DialogType d = this.jobAttributes.getDialog();
408 this.jobAttributes.getDefaultSelection();
496 jobAttributes.setCopies(c.getValue());
501 jobAttributes.setDefaultSelection(DefaultSelectionType.RANGE);
503 jobAttributes.setDefaultSelection(DefaultSelectionType.SELECTION);
505 jobAttributes.setDefaultSelection(DefaultSelectionType.ALL);
510 jobAttributes.setDestination(DestinationType.FILE);
511 jobAttributes.setFileName(dest.getURI().getPath());
513 jobAttributes.setDestination(DestinationType.PRINTER);
518 jobAttributes.setPrinter(serv.getName());
523 jobAttributes.setPageRanges(members);
528 jobAttributes.setMultipleDocumentHandling(
531 jobAttributes.setMultipleDocumentHandling(
537 jobAttributes.setSides(SidesType.TWO_SIDED_LONG_EDGE);
539 jobAttributes.setSides(SidesType.TWO_SIDED_SHORT_EDGE);
541 jobAttributes.setSides(SidesType.ONE_SIDED);
587 jobAttributes.getCopies()+
589 jobAttributes.getDefaultSelection()+
590 "\ndest "+jobAttributes.getDestination()+
591 "\nfile "+jobAttributes.getFileName()+
592 "\nfromPage "+jobAttributes.getFromPage()+
593 "\ntoPage "+jobAttributes.getToPage()+
595 jobAttributes.getMultipleDocumentHandling()+
596 "\nPrinter "+jobAttributes.getPrinter()+
597 "\nSides2 "+jobAttributes.getSides()
631 String printerName = jobAttributes.getPrinter();
649 DestinationType dest = jobAttributes.getDestination();
653 String fileName = jobAttributes.getFileName();
689 attributes.add(new SunMinMaxPage(jobAttributes.getMinPage(),
690 jobAttributes.getMaxPage()));
691 SidesType sType = jobAttributes.getSides();
701 jobAttributes.getMultipleDocumentHandling();
709 attributes.add(new Copies(jobAttributes.getCopies()));
711 attributes.add(new PageRanges(jobAttributes.getFromPage(),
712 jobAttributes.getToPage()));
1156 jobAttributes.setDestination(DestinationType.PRINTER);
1158 jobAttributes.setDestination(DestinationType.FILE);
1163 jobAttributes.setPrinter(str);
1167 jobAttributes.setFileName(str);
1171 jobAttributes.setCopies(Integer.parseInt(str));
1208 (jobAttributes.getDestination() == DestinationType.PRINTER) ?
1210 str = jobAttributes.getPrinter();
1214 str = jobAttributes.getFileName();
1218 int copies = jobAttributes.getCopies();