/*
 * Created on Dec 16, 2004
 */

package javax.realtime.test.bridge;

import javax.realtime.DSS.PriorityInheritanceResource;

/**
 * A simple <A HREF="Resource.html"><CODE>Resource</CODE></A>, contended for by
 * <A HREF="Car.html"><CODE>Car</CODE></A>'s.
 * @author gary
 */

public class Bridge extends PriorityInheritanceResource {
	
	/**
	 * Construct a <A HREF="Bridge.html"><CODE>Bridge</CODE></A> object with the given
	 * name.
	 * @param name the name of this <A HREF="Bridge.html"><CODE>Bridge</CODE></A>
	 */
	public Bridge( String name ) {
		// for priority ceiling version
		// super( name, 4 );
		super( name );
	}

}

