vote up 0 vote down star

A client of mine asked me to create a Class Hierarchy for Automating HTML form generation , Validation , Submission and Processing.

I am unclear what this means.

Would it just be the route of how this process is done ?

If some one could you me a link to a tutorial that could be great.

flag

41% accept rate

6 Answers

vote up 0 vote down

I think he needs some class diagram where inheritance chain will be shown

link|flag
Do you know of any tutorial's on how to build one ? – Oliver Bayes-Shelton Oct 8 at 9:44
jena.sourceforge.net/examples/class-hierarchy/… – Sly Oct 8 at 12:11
vote up 1 vote down

A class hierarchy usually means an inheritance hierarchy.

The client most probably meant a "class design" or a "class diagram".

Wikipedia on Object Oriented Design

link|flag
Do you know of any tutorial's on how to build one ? – Oliver Bayes-Shelton Oct 8 at 9:44
There are many many approaches. Most common is the use of UML, a visual language to draw class diagrams (and others). There are a lot of tools around. You can't learn UML and OO design in a few hours. – Stefan Steinegger Oct 8 at 9:52
vote up 0 vote down

Perheps the client means a set of classes that handles Form generation, Validation, Submission and Processing?

link|flag
vote up 0 vote down

It would be the inheritance chain of your classes (you code in C++ or C#) that you are going to use to create these forms automatically in webpages etc...

link|flag
vote up 1 vote down

He wants you to define a diagram where you will explain how the classes will carry out HTML form generation, validation, submission and processing, by acting together.

This could be done in UML for instance, just do a brief search on Google images to get a quick understanding of what this means; UML Distilled helps me a lot when I have to do such things, you can find chapter samples online.

link|flag
Thank you very much :) – Oliver Bayes-Shelton Oct 8 at 9:49
vote up 1 vote down

A class can extends another class. When you have a several inheritance ( extends ) bounds beetween class, you can call that class hiearchie.

http://img5.yfrog.com/i/image1y.gif "real world exemple of class hierachie

link|flag
Image not found :( – Oliver Bayes-Shelton Oct 8 at 10:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.