// License: GPL. For details, see LICENSE file. package java.util.concurrent.locks; /** * classpath emulation */ public interface Lock { public void lock(); public void unlock(); }