package { /** * Class with definitions of letter orger modes. * @author Łukasz Zieliński */ public class OrderMode { /** * Showing letters in random order. */ static const RANDOM:String = 'random'; /** * Showing first, second, third, ..., last but not least, the last letter. */ static const FIRST_TO_LAST:String = 'firstToLast'; } }