/jEdit/tags/jedit-4-5-pre1/installer/ConsoleProgress.java

# · Java · 44 lines · 22 code · 7 blank · 15 comment · 0 complexity · 5dfe4099387d010273c940ac95e584f5 MD5 · raw file

  1. /*
  2. * ConsoleProgress.java
  3. *
  4. * Originally written by Slava Pestov for the jEdit installer project. This work
  5. * has been placed into the public domain. You may use this work in any way and
  6. * for any purpose you wish.
  7. *
  8. * THIS SOFTWARE IS PROVIDED AS-IS WITHOUT WARRANTY OF ANY KIND, NOT EVEN THE
  9. * IMPLIED WARRANTY OF MERCHANTABILITY. THE AUTHOR OF THIS SOFTWARE, ASSUMES
  10. * _NO_ RESPONSIBILITY FOR ANY CONSEQUENCE RESULTING FROM THE USE, MODIFICATION,
  11. * OR REDISTRIBUTION OF THIS SOFTWARE.
  12. */
  13. package installer;
  14. /*
  15. * Displays install progress when running in text-only mode.
  16. */
  17. public class ConsoleProgress implements Progress
  18. {
  19. public void setMaximum(int max)
  20. {
  21. }
  22. public void advance(int value)
  23. {
  24. }
  25. public void done()
  26. {
  27. System.out.println("*** Installation complete");
  28. }
  29. public void message(String message)
  30. {
  31. System.out.println(message);
  32. }
  33. public void error(String message)
  34. {
  35. System.err.println("*** An error occurred: " + message);
  36. }
  37. }