A very easy way to start in Eclipse is to create a UML model containing the classes and their operations you are designing, and then generate the Java skeletons with EMF instead of manually defining the Java classes. (Another option would be to work on the ECore-level, but I always stick to UML)
In the second step, you fill in the gaps in the generated skeletons. You can follow the EMF tutorial on this.
Use the Edit framework or any other GUI to provide data entry for the objects.
Then you might want to play with stereotypes and see how you can use them to add additional data to your model elements, e.g. to parametrise the skeleton generation from UML through ECore to Java, or for your own purposes. For example, since you already have a class diagram editor through Eclipse, you can easily whip up a plugin that will show a context menu for your stereotyped elements to do something with them.
Of course, all this becomes much more interesting if you have an actual (OO) problem to work on. Maybe you have some old code/project that you want to refactor this way?