If you read up on JavaBeans or read a lot of homework type examples you can get the impression that
you should add get and set methods for all fields.
Good OO design often goes another way, toward private fields with no getters and setters. You may ask what an object can do if all its data is so private? Look to the methods to actually DO the work of the program. If you find yourself getting a couple fields from an object, doing something with them and maybe putting the results back into the object, all that work probably should have been in the object itself. Move enough work into the object and it can keep its data secret.
That little rant may have been totally off topic for what you're doing now. But if it sounded interesting, scroll on down to the OO, UML, etc forum and follow up on it.