var fDesc=new Array(); fDesc[0] = "Objecteering makes easy to write and produce quality documentation, by making the most of the models you build. It provides assistance in what you should write, with only truly necessary parts having to be written by you. You can then automatically produce documents of a quality far superior to those produced manually.

For example, you can generate composite documentation that includes a glossary, requirements, a section dedicated to use cases, a section dedicated to class diagrams and a traceability matrix, with systematic use of hypertext links."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }