/**
 * PRAXIS-INFO
 * This praxis illustrates both wait, notify and locks, three of the
 * most exciting and important concepts in computer science.
 * 
 * A lock is implemented using wait and notify.
 * 
 * NAVIGATION-INFO
 * AutomaticShuttleTrafficControl
 * ALock
 * AControlledShuttleAnimator
 * 
 */

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