Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you are about to hand over a fairly complex software system to someone for them to maintain and develop (co-worker, system integrator or customer), which type of documentation do you think is the most important? (in addition to well documented source code)

I'm looking for what's actually useful. There are lots and lots of documents I can think of but documentation is allways hard to maintain and tends to get low prio, so I'm really after the golden nuggets.

share|improve this question

1 Answer

  • I like to get an overall complete JavaDoc or doxygen Documentation, because it is compatible to import in Eclipse.
  • Additional Class Hierarchy diagramms are important if your project has lots of inherited Classes.
  • Additional Sequence diagramms are important if you delegate function calls through a lot of Classes or one call triggers a lot of following actions.
  • Also a documentation of used design patterns is nice so others do not break with the style.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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