...And thats it. Simple? Yep! Some notes about the Class definition: You need to state "public" before saying the name of the Class. Next, the class name itself is capitalised. The reasons for this will become clear later on, but basically its so that it is easier to distinguish between your Classes and Methods inside of the class (Which should start with a lowercase letter). Finally, you need to note that there are curly brackets around the main body of the code (The Constructor, Accessors and Mutators). This system of having curly brackets around bits of code happens quite a bit in Java, and some of the time the Java compiler might moan at you for including too many or too few brackets. To help stop this from happening, it is a good idea to make sure you indent your brackets.
The example above will compile okay, but it wont actually do anything. If you are using BlueJ, then you'll be able to create objects but they will be pretty useless...In the section after the next one, I'll show you how to do things with the Class, but first you need to know a little bit about Variables. If you've programmed in pretty much anything else ever then you'll know enough about Variables and can skip the section.