
/*
 * This is an abstract class.
 * It's stores anything common to all the selection-statement classes.
 * It's also used to refer to selection-statements in a generic way
 *  that excludes non-selection statements.
 *
 * Right now, it's also serving as a placeholder for future needs when
 * producing C/C++ code from TDL code.
 *
 */

public abstract class DataSelectionStatement
					extends DataStatementWithSubstatements
{
}

