So "what they did in class" was to assign a lot of blank methods that you are supposed to implement. You would've heard the teacher's spiel about doing your own work, too, except you weren't there for that either. My point here is this: do your own work. We're here to help people learn, not to do people's work. Oh, and btw: you also didn't follow the forum rules by posting code tags, and you also did not ask any questions.
BestJewSinceJC
Posting Maven
2,772 posts since Sep 2008
Reputation Points: 874
Solved Threads: 354
FYI in the link that Patrick gave you, the ideas are good so far as I've seen, but the syntax would not compile. You cannot create a new 'Account' Object by saying account myaccount = new account(). You must say Account account = new Account(); (or whatever the constructor is). Java is case sensitive. And these are the "official" Java tutorials on class, objects, etc and they are excellent. So if you get through the tutorial Patrick gave you and still don't get it, try out the java sun one.
BestJewSinceJC
Posting Maven
2,772 posts since Sep 2008
Reputation Points: 874
Solved Threads: 354