]> source.dussan.org Git - aspectj.git/blob
961c6cbde452a2934ee17fff2ef6f2893a34cdd4
[aspectj.git] /
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
14 import java.io.File;
15 import java.util.List;
16
17 /**
18  * Subtypes can override whatever they want...
19  *
20  * @author AndyClement
21  *
22  */
23 public abstract class AbstractStateListener implements IStateListener {
24
25         public void detectedClassChangeInThisDir(File f) {      }
26
27         public void aboutToCompareClasspaths(List oldClasspath, List newClasspath) {    }
28
29         public void pathChangeDetected() {      }
30
31         public void detectedAspectDeleted(File f) {     }
32
33         public void buildSuccessful(boolean wasFullBuild) {     }
34
35         public void recordDecision(String decision) {}
36
37         public void recordInformation(String info) {}
38
39 }