var fDesc=new Array();
fDesc[0] = "UPDM enables practitioners to create models using the Department of Defense and Ministry of Defence architectural frameworks.
MDG Technology for UPDM allows Enterprise Architect users to:
-Create architectural models for complex system-of-systems, which may include hardware, software, data, personnel and organizations
-Define consistent, accurate architectures with clear separation of concerns to describe services, systems, operations, strategies and capabilities
-Analyze, specify, design, and verify system models using appropriate levels of abstraction
-Employ a rigorous, standards based approach to defining and exchanging architecture information using UML, XMI and related standards
Features:
-Comprehensive UML Profiles for UPDM 2.0, which supports DoDAF 2.0 and MODAF 1.2
-A visual, clickable framework interface for UPDM model hierarchies
-UPDM model templates with context-sensitive modeling to maximize productivity
-Model validation to help ensure consistency and correctness
-Easy navigation of architecture diagrams in the dynamic Model Views window
-Profiles for Enterprise Architect’s Element List and Relationship Matrix to display and edit the model in tabular form
-Detailed example model";
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 = '';
}
}