/* Copyright (c) 2006 L. Searchwell. All Rights Reserved. */ public class LymonDriver { public static void main(String args[]) { /* Process command-line arguments. */ if((args != null) && (args.length > 0)) { //Work in CLUI Mode: PalindromeCLUI PC= new PalindromeCLUI(); PC.check(args); System.exit(0); } else { //Work in GUI Mode: /*PalindromeGUI PG =*/ new PalindromeGUI(); } } }