package lectures.animation.threads.wait_notify;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/AnimationThreadsWaitNotify.pptx", "Lectures/AnimationThreadsWaitNotify.pdf", "Videos/AnimationThreadsWaitNotify.avi"})
public interface Lock {
    public void getLock();
    public void releaseLock();  

}