/* jade/flow/Port.java 99/01
 * Samuel Watkins / Lateral Software
 */

package flow;

/**
 * This interface may be implemented by any class that represents
 * a communications port, for example a Device, one end of a Pipe,
 * a Console or a Display.  The interface has been designed to work in
 * conjunction with the Channel interface to support very flexible
 * communications programming, specifically to support single-object
 * Pipes, bi-directional communications and more complex communications
 * elements.
 *
 * @author  Samuel Watkins
 */
public interface Port {
	
}