QUESTION How do I rename a class ? ANSWER The VisualAge version 2.0 User's Guide and Reference Guide discusses this a little on page 328. Filing out and filing in classes to rename them works fine. Another way to rename classes is this: -Change to the Script Editor for the class. -Change the class name in the class definition in the bottom window of the Script Editor to the desired name. -Save the change. A new class with the desired name will be added to the application browser. It is an empty class for now. -Select all methods showing in your method window, choose Move Methods->To a new Class from the Methods pull-down menu. Type in the new class name when prompted. -Be sure to move all class and instance methods both public and private over to the new class. -Test your new class to make sure it behaves as the other one did. -When you are positive that your new class works, you may delete the old one if it is not needed anymore.