You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NullIdeProgressMonitor.java 917B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* *******************************************************************
  2. * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC).
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Common Public License v1.0
  6. * which accompanies this distribution and is available at
  7. * http://www.eclipse.org/legal/cpl-v10.html
  8. * ******************************************************************/
  9. package org.aspectj.ajde;
  10. /**
  11. * @author Mik Kersten
  12. */
  13. public class NullIdeProgressMonitor implements BuildProgressMonitor {
  14. public void start(String configFile) {
  15. }
  16. public void setProgressText(String text) {
  17. }
  18. public void setProgressBarVal(int newVal) {
  19. }
  20. public void incrementProgressBarVal() {
  21. }
  22. public void setProgressBarMax(int maxVal) {
  23. }
  24. public int getProgressBarMax() {
  25. return 0;
  26. }
  27. public void finish() {
  28. }
  29. }