package atmsdriver;

/**
 *  A console application to drive the ATMS Server.
 * @author jdalbey
 */
public class ConsoleDriver
{
//
//Given
// <Highway Number> <Dir> <Postmile> <Range> <DotColor> 
//
//IF default direction of Highway Number = Dir THEN
//    Set StartPost = Postmile
//    Set EndPost = Postmile + Range
//ELSE
//    Set StartPost = Postmile - Range
//    Set EndPost = Postmile
//END IF
//
//FOR each Station in Highway Number LOOP
//
//    IF Station.Postmile within range of StartPost:EndPost THEN
//        IF default direction of Highway Number = Dir THEN
//            Set ML color to DotColor
//        ELSE
//            Set OPP color to DotColor
//        END IF
//    END IF
//
//END LOOP
//
//    
}
