/** * Write a description of class TestCrapsInterface here.: This class just * creates a JFrame and sets it visible to the user * * @author Gerald Gordon * @version March 31, 2005 */ public class TestInterfaceCraps { public static void main(String [] args) { CrapsInterface window = new CrapsInterface(); window.setVisible(true); } }