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.

AbstractStateListener.java 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * Copyright (c) 2005 IBM and other contributors
  3. * All rights reserved.
  4. * This program and the accompanying materials are made available
  5. * under the terms of the Eclipse Public License v 2.0
  6. * which accompanies this distribution and is available at
  7. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  8. *
  9. * Contributors:
  10. * Andy Clement initial implementation
  11. * ******************************************************************/
  12. package org.aspectj.ajdt.internal.core.builder;
  13. import java.io.File;
  14. import java.util.List;
  15. /**
  16. * Subtypes can override whatever they want...
  17. *
  18. * @author AndyClement
  19. *
  20. */
  21. public abstract class AbstractStateListener implements IStateListener {
  22. public void detectedClassChangeInThisDir(File f) { }
  23. public void aboutToCompareClasspaths(List<String> oldClasspath, List<String> newClasspath) { }
  24. public void pathChangeDetected() { }
  25. public void detectedAspectDeleted(File f) { }
  26. public void buildSuccessful(boolean wasFullBuild) { }
  27. public void recordDecision(String decision) {}
  28. public void recordInformation(String info) {}
  29. }