i'm currently preparing the srs documents for a project , i wounder how these documents and flow charts are transformed to classes , packages and functions?
any suggestion to books or tutorials that explain this transformation process ?
Asked
Active
Viewed 238 times
0

Mostafa Darwish
- 273
- 1
- 4
- 14
-
There's no "transformation"! Somebody has to write code! – John Saunders Oct 28 '14 at 00:52
-
@JohnSaunders ok is there is any guidelines for translating these documents into classes and functions ? – Mostafa Darwish Oct 28 '14 at 02:17
-
Yes, here's one: create code that meets all of the requirements. What is it you think that computer programmers do? – John Saunders Oct 28 '14 at 02:42
1 Answers
0
What you might looking for is called "Object Oriented Design". This generally describes the process of modeling classes and structures out of real world or business objects (described in your specification). This is quite a wide topic, but as a good starting point I would recommend the book Object-Oriented Analysis and Design.
For some other suggestions see this question.