CameraCopyProgressParams.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.epson.cameracopy.ui;
  2. import android.content.Context;
  3. import android.os.RemoteException;
  4. import com.epson.iprint.prtlogger.PrintLog;
  5. import epson.print.screen.PrintProgress;
  6. import epson.print.screen.PrintSetting;
  7. import epson.print.service.IEpsonService;
  8. /* renamed from: com.epson.cameracopy.ui.CameraCopyProgressParams */
  9. public class CameraCopyProgressParams implements PrintProgress.ProgressParams {
  10. public boolean getApfMode() {
  11. return false;
  12. }
  13. public boolean getEpsonColorMode() {
  14. return false;
  15. }
  16. public int getOriginalSheetSize() {
  17. return 1;
  18. }
  19. public PrintSetting.Kind getPrintSettingType() {
  20. return null;
  21. }
  22. public boolean isPaperLandscape() {
  23. return false;
  24. }
  25. public boolean print(IEpsonService iEpsonService, boolean z) throws RemoteException {
  26. return false;
  27. }
  28. public PrintLog getPrintLog() {
  29. PrintLog printLog = new PrintLog();
  30. printLog.uiRoute = 5;
  31. return printLog;
  32. }
  33. public PrintSetting getPrintSetting(Context context) {
  34. return new PrintSetting(context, PrintSetting.Kind.cameracopy);
  35. }
  36. }