Home | History | Annotate | Download | only in print

Lines Matching refs:PrintAttributes

48 public final class PrintAttributes implements Parcelable {
88 PrintAttributes() {
92 private PrintAttributes(@NonNull Parcel parcel) {
261 public PrintAttributes asPortrait() {
266 PrintAttributes attributes = new PrintAttributes();
299 public PrintAttributes asLandscape() {
304 PrintAttributes attributes = new PrintAttributes();
379 PrintAttributes other = (PrintAttributes) obj;
413 builder.append("PrintAttributes{");
441 public void copyFrom(PrintAttributes other) {
1386 * Builder for creating {@link PrintAttributes}.
1389 private final PrintAttributes mAttributes = new PrintAttributes();
1431 * @see PrintAttributes#COLOR_MODE_MONOCHROME
1432 * @see PrintAttributes#COLOR_MODE_COLOR
1445 * @see PrintAttributes#DUPLEX_MODE_NONE
1446 * @see PrintAttributes#DUPLEX_MODE_LONG_EDGE
1447 * @see PrintAttributes#DUPLEX_MODE_SHORT_EDGE
1455 * Creates a new {@link PrintAttributes} instance.
1459 public @NonNull PrintAttributes build() {
1464 public static final Parcelable.Creator<PrintAttributes> CREATOR =
1465 new Creator<PrintAttributes>() {
1467 public PrintAttributes createFromParcel(Parcel parcel) {
1468 return new PrintAttributes(parcel);
1472 public PrintAttributes[] newArray(int size) {
1473 return new PrintAttributes[size];