blob: 3ec6ef16b42a15c707158a3a40883c3d17aafde6 [file] [log] [blame]
package aQute.bnd.service;
import java.io.*;
import java.util.concurrent.atomic.*;
public class BndListener {
final AtomicInteger inside = new AtomicInteger();
public void changed(File file) {
}
public void begin() { inside.incrementAndGet();}
public void end() { inside.decrementAndGet(); }
public boolean isInside() {
return inside.get()!=0;
}
}