Lines Matching defs:copies

31  * Instances of this class control the number of copies, default selection,
164 * It is used to control how the sheets of multiple copies of a single
174 "separate-documents-collated-copies",
175 "separate-documents-uncollated-copies"
180 * that the job should be divided into separate, collated copies.
188 * that the job should be divided into separate, uncollated copies.
244 private int copies;
267 * Number of copies defaults to <code>1</code>. Multiple document handling defaults
297 * @param copies an integer greater than 0
335 public JobAttributes(int copies, DefaultSelectionType defaultSelection,
340 setCopies(copies);
375 copies = obj.copies;
394 * Returns the number of copies the application should render for jobs
401 return copies;
405 * Specifies the number of copies the application should render for jobs
409 * @param copies an integer greater than 0
410 * @throws IllegalArgumentException if <code>copies</code> is less than
413 public void setCopies(int copies) {
414 if (copies <= 0) {
416 "copies");
418 this.copies = copies;
422 * Sets the number of copies the application should render for jobs using
423 * these attributes to the default. The default number of copies is 1.
662 * Specifies the handling of multiple copies, including collation, for
675 * Specifies the handling of multiple copies, including collation, for
695 * Sets the handling of multiple copies, including collation, for jobs
994 return (copies == rhs.copies &&
1014 int rest = ((copies + fromPage + maxPage + minPage + prFirst + prLast +
1056 return "copies=" + getCopies() + ",defaultSelection=" +