The goal of this project is to become more familiar with creating and using classes and objects in Java, to further introduce you to the concepts of abstraction and modularization, and to introduce you to collections of items. In this project you will build on your Project 3. You will add a new Text class that will enable you to show text.
Add an AlphabetPanel class and implement the following:
Be sure to:
this.setFocusable(true); // enables panel to listen to key events this.addKeyListener(new KeyAdapter(){ public void keyTyped(KeyEvent e) { // logic to handle key events });