Commit bb84ec23 authored by Rushikesh Padsala's avatar Rushikesh Padsala
Browse files

Initial commit

parent 3045af21
Pipeline #1722 passed with stage
in 3 seconds
3FB55F0B-5A98-4fd3-930E-9D0361290739/EA8.htm;
445BEAEB-F8FA-45b7-8889-BEE19DFAF65E/EA4.htm;
848B9B10-C62E-44e6-82B3-759BA0649BAB/EA7.htm;
B32C5DFF-7B7A-484b-AC1C-1DD3B0289284/EA6.htm;
B78AE8DA-DB29-469f-BB7B-DE3AB98A4D89/EA5.htm;
BE20E2FF-E4DE-4c00-8A84-9312C07E7014/EA3.htm;
C892B87E-A8D6-420c-88CE-8B781D2AD7A8/EA1.htm;
D3F0DDA1-D02B-4d46-9681-6E2DE5F7137C/EA9.htm;
tocTab[tocTab.length] = new Array("0", "1", "FWEArea", "", "4.png", "", "", "{BE20E2FF-E4DE-4c00-8A84-9312C07E7014}", "Package");
var tocRoot, tocBranch, tocSel, tocLoading, tocLastID, tableSel = null, tabHead, data, tocTab, tocInitRoot, tocMemToc,
rFStatus, oldData, tableSelTable;
var prevPage = "";
var initI;
var icon = new Array();
var preloadIcons =
new Array(1, 10, 101, 102, 103, 104, 106, 107, 108, 11, 113, 116, 118, 16, 175, 176, 177, 178, 179, 180, 181, 182,
183, 184, 185, 186, 187, 188, 189, 19, 20, 21, 24, 25, 26, 28, 29, 31, 34, 4, 5, 52, 53, 56, 57, 6, 60, 68, 69,
7, 8, 82, 9, 99);
var browser = browserCheck();
var content = 0;
var Linkguid = "";
function browserCheck()
{
browser = navigator.userAgent.toLowerCase();
if (browser.indexOf('msie') != -1)
{
if (browser.substring(browser.indexOf('msie') + 5, browser.indexOf('.', browser.indexOf('msie'))) > 6)
return ("ie7");
if (browser.substring(browser.indexOf('msie') + 5, browser.indexOf('.', browser.indexOf('msie'))) > 5)
return ("ie6");
else
return ("ie_old");
}
else if (browser.indexOf('firefox') != -1)
return ("ff");
else if (browser.indexOf('opera') != -1)
return ("op");
else if (browser.indexOf('gecko') != -1)
return ("ff");
}
function changeCSS(theClass, element, value, target)
{
var cssRules;
target = eval(target + '.document.styleSheets');
if (browser == 'ie6' || browser == 'ie7')
{
cssRules = 'rules';
} else
{
cssRules = 'cssRules';
}
for (var S = 0; S < target.length; S++)
{
for (var R = 0; R < target[S][cssRules].length; R++)
{
if (target[S][cssRules][R].selectorText == theClass)
{
try
{
target[S][cssRules][R].style[element] = value;
}
catch (e)
{
}
}
}
}
}
function initItem(item)
{
if (prevPage != cont.document.location.href)
tableSel = null;
if (tableSel == null)
{
if (cont.document.getElementById('TableGroup') != null)
{
toggleItem(cont.document.getElementById('TableGroup').getElementsByTagName('li')[0].id.replace("Title",
""));
}
prevPage = cont.document.location.href;
}
}
function initLoad(src, toc, home)
{
var qs = document.location.search.substring(1);
if (qs.substring(0, qs.indexOf('=')) == 'goto')
{
var gotoPage = qs.substring(qs.indexOf('=') + 1).split(':');
var fExt = home.substring(home.lastIndexOf('.'));
var home = "./EARoot/";
for (var i = 0; i < gotoPage.length; i++)
{
home += "EA" + gotoPage[i];
if (i != gotoPage.length - 1)
home += "/";
else
home += fExt;
}
}
content = document.createElement('div');
content.className = "IndexBody";
content.innerHTML = " <iframe src='" + toc + "' name='toc' id='tocIFrame' frameborder='0'></iframe>\n";
if (qs.substring(0, qs.indexOf('=')) == 'guid')
{
Linkguid = qs.substring(qs.indexOf('=') + 1).split('?guid=');
var sGuid = new String(Linkguid);
if (sGuid.substring(0, 1) == "{" && sGuid.substring(sGuid.length, sGuid.length - 1) == "}")
sGuid = sGuid.substring(1, sGuid.length - 1);
Linkguid = sGuid;
LoadGuidMap(OnReadyLoadGuidMap);
} else
{
// We don't have a guid in the address bar, so set the default homepage and continue
content.innerHTML += " <iframe src='" + home + "' name='cont' id='contentIFrame' frameborder='0'></iframe>";
content.innerHTML += " <div id=\"resizeFrames\"></div>";
// Pass in the guid of the home page or class.
initPreLoad(content);
}
}
function LoadGuidMap(ResponseFunc)
{
// Get the correct file
var FirstTwoHexDigits = new String(Linkguid);
FirstTwoHexDigits = FirstTwoHexDigits.slice(0, 2).toLowerCase();
var src = "js/data/guidmaps/" + "GuidMap" + FirstTwoHexDigits + ".xml";
RequestPage(src, ResponseFunc); // Request the page passing in the filelocation and the response function.
}
function OnReadyLoadGuidMap()
{
if (data.readyState == 4)
{
try
{
var Home = GetPageAddressFromMapString(data.responseText);
//Set the home page.
content.innerHTML += " <iframe src='" + Home + "' name='cont' id='contentIFrame' frameborder='0'></iframe>";
content.innerHTML += " <div id=\"resizeFrames\"></div>";
//Make sure memory for the string is cleared. The browser should do this anyway but just in case.
Home = null;
// Continue loading the rest of the page.
initPreLoad(content);
}
catch (e)
{
return;
}
}
}
function GetPageAddressFromMapString(MapString)
{
var LG = new String(Linkguid);
var Page = new String(MapString);
LG = LG.toLowerCase(); //Make searching case insensitive.
Page = Page.toLowerCase();
var Pos1 = Page.search(LG); // Search the the guid in the string and return the position.
Page = Page.slice(Pos1); // Remove the top half of the string.
var Pos2 = Page.search("/"); //Search for the start of the web address.
var Pos3 = Page.search(";"); //Search for the end of the web address.
Page = Page.slice(Pos2 + 1, Pos3); // extract the web address.
// Leave the page address in the original case as Linux is case sensitive.
var sExt = ".html";
Pos1 = Page.search(sExt);
if (Pos1 == -1)
{
sExt = ".htm";
Pos1 = Page.search(sExt);
}
Page = Page.slice(0, Pos1);
Page = Page.toUpperCase();
Page = "EARoot/" + Page + sExt; // At the root back onto the page.
return Page;
}
function guidLink(guid, qs)
{
guid = guid.substring(1, guid.length - 1); //Remove the brakets
Linkguid = guid;
LoadGuidMap(OnReadyGuidLink);
}
function OnReadyGuidLink()
{
if (data.readyState == 4)
{
try
{
// Get the page location from the guid map.
var Page = GetPageAddressFromMapString(data.responseText);
cont.location = Page;
//Make sure memory for the string is cleared. The browser should do this anyway but just in case.
Page = null;
Linkguid = null;
}
catch (e)
{
return;
}
}
}
function RequestPage(Page, ResponseFunc)
{
try
{
data = new XMLHttpRequest();
data.onreadystatechange = ResponseFunc;
data.open("GET", Page, true);
data.send(null);
}
catch (e)
{
data = new ActiveXObject("Microsoft.XMLHTTP");
if (data)
{
data.onreadystatechange = ResponseFunc;
data.open("GET", Page, true);
data.send();
}
}
}
function initPage(src)
{
if (browser == "ie_old")
return;
if (toc.document != top.frames[0].document)
{
toc = top.frames[0];
}
if (cont.document != top.frames[1].document)
{
cont = top.frames[1];
}
if (!cont.document)
{
setTimeout("initPage('" + src + "')", "1000");
return;
}
var curPage = cont.document.location + "";
if (curPage.indexOf('EARoot') != -1)
curPage = curPage.substring(curPage.indexOf('EARoot'));
else
curPage = curPage.substring(curPage.lastIndexOf('/') + 1);
for (var j = 0; j < cont.document.getElementsByTagName('div').length; j++)
{
if (cont.document.getElementsByTagName('div')[j].className == "ObjectDetailsNotes")
{
var tmpStr = cont.document.getElementsByTagName('div')[j].innerHTML;
//tmpStr=tmpStr.replace(/&nbsp;<WBR>/g," "); //GAS 810 - removed as it adversely affect PreserveWS
tmpStr = tmpStr.replace(/&gt;/g, ">");
tmpStr = tmpStr.replace(/&lt;/g, "<");
tmpStr = tmpStr.replace(/#gt;/g, "&gt;");
tmpStr = tmpStr.replace(/#lt;/g, "&lt;");
cont.document.getElementsByTagName('div')[j].innerHTML = tmpStr;
}
}
if (src != null)
initItem();
if (curPage.substr(0, curPage.indexOf('.')) == "blank")
return;
//Check ToC is loaded
if (toc.document.body == null)
{
setTimeout("initPage('" + src + "')", "1");
return;
} else if (toc.document.body.childNodes && toc.document.body.childNodes.length == 1)
{
setTimeout("initPage('" + src + "')", "1");
return;
} else if (toc.document.body.lastChild && toc.document.body.lastChild.childNodes
&& toc.document.body.lastChild.childNodes.length == 0)
{
setTimeout("initPage('" + src + "')", "1");
return;
} else if (!toc.document.body.childNodes || !toc.document.body.lastChild || !toc.document.body.lastChild.childNodes)
{
setTimeout("initPage('" + src + "')", "1");
return;
}
else
{
var parTree = curPage.substr(0, curPage.lastIndexOf('/')).substr(curPage.indexOf('/') + 1).replace(/EA/g, "").replace(/\//g, ".");
if (parTree)
{
if (parTree.indexOf('0') != 0) parTree = "0." + parTree;
parTree = parTree.split('.');
var tocTmp;
for (var j = 0; parTree.length > j; j++)
{
if (j >= 1)
tocTmp += "." + parTree[j];
else
tocTmp = parTree[j];
if (toc.document.getElementById('toc' + tocTmp) == null)
{
setTimeout("initPage('" + src + "')", "1");
return;
}
var tmpCurToc = toc.document.getElementById('toc' + tocTmp).parentNode.childNodes;
toc.tocMemToc = parTree.length - j;
if (tmpCurToc.length > 3 && tmpCurToc[tmpCurToc.length - 4].src.substring(tmpCurToc[tmpCurToc.length - 4].src.lastIndexOf('images')).indexOf('plus') != -1)
{
toc.tocClick(tmpCurToc[tmpCurToc.length - 4]);
}
}
}
if (toc.document.getElementById(curPage) == null)
{
setTimeout("initPage('"+src+"')","1");
return;
}
if (toc.document.getElementById(curPage).parentNode.parentNode.parentNode.parentNode
&& toc.document.getElementById(curPage).parentNode.parentNode.parentNode.parentNode.childNodes.length > 3)
{
if (toc.document.getElementById(
curPage).parentNode.parentNode.parentNode.parentNode.childNodes[toc.document.getElementById(
curPage).parentNode.parentNode.parentNode.parentNode.childNodes.length - 4].src.indexOf('plus') != -1)
{
toc.tocClick(toc.document.getElementById(
curPage).parentNode.parentNode.parentNode.parentNode.childNodes[toc.document.getElementById(
curPage).parentNode.parentNode.parentNode.parentNode.childNodes.length - 4]);
}
}
if (toc.document.getElementById(curPage).parentNode.parentNode.childNodes[toc.document.getElementById(
curPage).parentNode.parentNode.childNodes.length - 4].src.indexOf('plus') != -1)
{
toc.tocClick(
toc.document.getElementById(curPage).parentNode.parentNode.childNodes[toc.document.getElementById(
curPage).parentNode.parentNode.childNodes.length - 4]);
}
if (tocSel)
tocSel.parentNode.childNodes[tocSel.parentNode.childNodes.length - 2].style.backgroundColor = "";
//Highlight selected ToC item and store in memory
if (toc.document.getElementById(curPage))
{
tocSel = toc.document.getElementById(curPage).parentNode;
tocSel.parentNode.childNodes[tocSel.parentNode.childNodes.length - 2].style.backgroundColor = "#B2B4BF";
if (tocSel.offsetTop < toc.document.body.scrollTop || tocSel.offsetTop > toc.document.body.offsetHeight
+ toc.document.body.scrollTop)
{
toc.scrollTo(0, tocSel.offsetTop - 20);
}
}
}
}
function initPreLoad(content)
{
var preload = document.getElementById('IndexHeader').parentNode.insertBefore(document.createElement('div'),
document.getElementById('IndexHeader').nextSibling);
preload.id = "Preload";
preload.appendChild(document.createElement('p'));
preload.firstChild.appendChild(document.createTextNode("Loading..."));
if (browser == "ie_old")
return;
if (browser == "ie6" || browser == "ie7")
changeCSS('#Preload', 'height', top.document.body.clientHeight - 67 + 'px', 'this');
else
changeCSS('#Preload', 'height', top.innerHeight - 67 + 'px', 'this');
for (var i = 0; i < preloadIcons.length; i++)
{
icon[preloadIcons[i]] = new Image();
icon[preloadIcons[i]].src = "images/" + preloadIcons[i] + ".png";
}
var preloader = document.body.appendChild(document.createElement('div'));
preloader.style.display = "none";
preloader.id = "preloader";
preloader.appendChild(content);
resizeFrames('init');
}
function initPreLoaded()
{
if (browser == "op")
setCSS();
var preloader = document.getElementById('preloader');
document.getElementById('Preload').parentNode.replaceChild(preloader.firstChild,
document.getElementById('Preload'));
preloader.parentNode.removeChild(preloader);
if (browser != "op")
setTimeout('setCSS();', '1000');
}
function resizeFrames(str)
{
var resizeFrames = document.getElementById('resizeFrames');
if (str == "init")
{
resizeFrames.onmousedown = resizeFramesOn;
resizeFrames.onmouseup = resizeFramesOff;
resizeFrames.onmouseout = resizeFramesOff;
resizeFrames.onmousemove = resizeFramesMove;
}
}
function resizeFramesOn(e)
{
rFStatus = 1;
var resizeFrames = document.getElementById('resizeFrames');
tmpRF = resizeFrames.parentNode.appendChild(document.createElement('div'));
tmpRF.style.left = (document.getElementById('tocIFrame').clientWidth + 1) + "px";
tmpRF.id = "tmpRF";
resizeFrames.style.width = "100%"
resizeFrames.style.left = "0px";
}
function resizeFramesOff(e)
{
rFStatus = 0;
var resizeFrames = document.getElementById('resizeFrames');
if (document.getElementById('tmpRF') != null)
document.getElementById('tmpRF').parentNode.removeChild(document.getElementById('tmpRF'));
resizeFrames.style.width = "5px";
resizeFrames.style.left = (document.getElementById('tocIFrame').clientWidth + 1) + "px";
}
function resizeFramesMove(e)
{
if (rFStatus != 0)
{
if (rFStatus == 2)
var posX = e + 2;
else if (browser == "ff")
var posX = e.pageX;
else
var posX = event.x;
if (posX <= 150)
posX = 150;
else if (posX >= top.document.body.clientWidth / 2)
posX = top.document.body.clientWidth / 2;
document.getElementById('contentIFrame').style.left = (posX + 3) + "px";
document.getElementById('contentIFrame').style.width = (top.document.body.clientWidth - posX - 4) + "px";
if (document.getElementById('tmpRF') != null)
document.getElementById('tmpRF').style.left = (posX - 2) + "px";
if (browser == "ie6")
document.getElementById('tocIFrame').style.width = (posX - 4) + "px";
else
document.getElementById('tocIFrame').style.width = (posX - 3) + "px";
if (tableSelTable != null)
{
if (tableSelTable.childNodes.length > 1 && document.getElementById('tmpRF') != null)
{
tableSelTable.style.width = (document.body.clientWidth
- (document.getElementById('tmpRF').offsetLeft + 6) - 20) + "px";
if (tableSelTable.childNodes[0].style)
tableSelTable.childNodes[0].style.width = (tableSelTable.offsetWidth - 19) + "px";
if (tableSelTable.childNodes[1].style)
tableSelTable.childNodes[1].style.width = (tableSelTable.offsetWidth - 19) + "px";
}
}
}
}
function resizePage()
{
if (rFStatus == 1)
return;
rFStatus = 2;
if (document.getElementById('resizeFrames') == null)
return;
if (browser == "ie6")
{
pHeight = top.document.body.clientHeight;
} else
{
pHeight = top.document.documentElement.clientHeight;
}
resizeFramesMove(document.getElementById('resizeFrames').offsetLeft);
document.getElementById('contentIFrame').style.height = pHeight - 74 + 'px';
if (browser == "ie7")
{
document.getElementById('resizeFrames').style.height = pHeight - 72 + 'px';
changeCSS('#tmpRF', 'height', pHeight - 72 + 'px', 'this');
} else
{
document.getElementById('resizeFrames').style.height = pHeight - 70 + 'px';
changeCSS('#tmpRF', 'height', pHeight - 70 + 'px', 'this');
}
document.getElementById('tocIFrame').style.height = pHeight - 74 + 'px';
rFStatus = 0;
}
function setCSS()
{
if (browser == "ie6")
{
pHeight = top.document.body.clientHeight;
} else
{
pHeight = top.document.documentElement.clientHeight;
}
if (browser == "ie6" || browser == "ie7")
{
changeCSS('.IndexBody', 'width', '', 'this');
changeCSS('.IndexBody', 'top', '0px', 'this');
changeCSS('.IndexBody', 'position', 'relative', 'this');
changeCSS('#contentIFrame', 'height', pHeight - 74 + 'px', 'this');
changeCSS('#contentIFrame', 'left', '257px', 'this');
changeCSS('#resizeFrames', 'background', '#000000', 'this');
changeCSS('#resizeFrames', 'filter', 'progid:DXImageTransform.Microsoft.Alpha(opacity=0)', 'this');
changeCSS('#resizeFrames', 'height', pHeight - 72 + 'px', 'this');
changeCSS('#tmpRF', 'border', '0px', 'this');
changeCSS('#tmpRF', 'height', pHeight - 70 + 'px', 'this');
changeCSS('#tocIFrame', 'height', pHeight - 74 + 'px', 'this');
}
changeCSS('#contentIFrame', 'width', top.document.body.clientWidth - 258 + 'px', 'this');
}
function tocBuild(data)
{
var tocType = new Array();
var tocTypes = new Array();
var tocErrs = new Array();
for (var i = 0; i < tocTab.length; i++)
{
if (!tocTab[i][8])
tocTab[i][8] = 'misc';
if (tocTab[i][8].toLowerCase().indexOf('diagram') != -1 && (tocTab[i][6] == "" || tocTab[i][6] == "0"))
tocTab[i][8] = "0Diagram";
if (tocTab[i][8].toLowerCase().indexOf('package') != -1)
tocTab[i][8] = "1Package";
if (!tocType[tocTab[i][8]])
{
tocType[tocTab[i][8]] = new Array();
tocTypes[tocTypes.length] = tocTab[i][8];
}
tocType[tocTab[i][8]][tocType[tocTab[i][8]].length] = i;
}
tocTypes.sort();
for (var i = 0; i < tocTypes.length; i++)
{
for (var j = 0; j < tocType[tocTypes[i]].length; j++)
{
var build = tocBuildItem(tocType[tocTypes[i]][j]);
if (build != true)
{
build = build.substring(1);
tocErrs[tocErrs.length] = build;
}
}
}
var errRuns = 0;
var errTotal = tocErrs.length;
while (tocErrs.length != 0)
{
if (errNums == tocErrs.length)
{
errRuns++;
if (errRuns > errTotal)
{
break;
}
}
var errNums = tocErrs.length;
var tmp = tocBuildItem(tocErrs.shift());
if (tmp != true)
{
tocErrs[tocErrs.length] = tmp.substring(1);
}
}
while (tocErrs.length != 0)
{
tocTab[tocErrs[0]][6] = "0";
tocBuildItem(tocErrs.shift());
}
if (tocLastID != 0)
{
var tocLastSrc = document.getElementById("toc"
+ tocLastID).parentNode.childNodes[document.getElementById("toc" + tocLastID).parentNode.childNodes.length
- 4];
tocLastSrc.src = tocLastSrc.src.substring(tocLastSrc.src.lastIndexOf('images')).replace("01", "02");
}
}
function tocBuildItem(i)
{
var childItem = false;
if (tocTab[i][0].indexOf(':') != -1)
tocBranch = document.getElementById("toc" + tocTab[i][0].substring(0, tocTab[i][0].lastIndexOf(':')));
else if (tocTab[i][0].indexOf('.') != -1)
tocBranch = document.getElementById("toc" + tocTab[i][0].substring(0, tocTab[i][0].lastIndexOf('.')));
else if (tocTab[i][0] != "0")
tocBranch = document.getElementById("toc0");
else if (tocTab[i][1] == 3)
tocBranch = document.getElementById("System").parentNode.lastChild;
else
tocBranch = tocRoot;
//Check if item is child
if (tocTab[i][5] && tocTab[i][6] && tocTab[i][6] != "0")
{
if (document.getElementById(tocTab[i][6]) == null)
return 'i' + i;
tocBranch = document.getElementById(tocTab[i][6]).parentNode.lastChild;
childItem = true;
}
tocBranch = tocBranch.appendChild(document.createElement('li'));
if (tocTab[i][0] != 0 || tocTab[i][1] == 3)
{
tocImage = tocBranch.appendChild(document.createElement('img'));
if (tocTab[i][0].indexOf('.') == -1 && (tocTab[i][0].indexOf(':') == -1 || tocTab[i][0].indexOf('0') == 0))
tocImage.src = "images/join01.gif";
else if (tocTab[i][0].indexOf('.') != -1 || tocTab[i][0].indexOf(':') != -1)
{
var tocTmp = tocTab[i][0].replace(':', '.');
for (var m = 0; tocTmp.split('.').length > m + 1; m++)
{
if (document.getElementById("toc" + tocTmp.substring(0,
tocTmp.lastIndexOf('.'))).parentNode.childNodes[m].src.substring(document.getElementById("toc"
+ tocTmp.substring(0,
tocTmp.lastIndexOf('.'))).parentNode.childNodes[m].src.lastIndexOf('images')).indexOf('02')
!= -1 || document.getElementById("toc"
+ tocTmp.substring(0,
tocTmp.lastIndexOf('.'))).parentNode.childNodes[m].src.substring(document.getElementById("toc"
+ tocTmp.substring(0,
tocTmp.lastIndexOf('.'))).parentNode.childNodes[m].src.lastIndexOf('images')).indexOf('04')
!= -1)
tocImage.src = "images/join04.gif";
else
tocImage.src = "images/join03.gif";
tocImage = tocBranch.appendChild(document.createElement('img'));
}
tocImage.src = "images/join01.gif";
}
tocImage.onclick = function()
{
tocClick(this);
}
if (tocTab[i][1] == 3)
{
tocImage.src = tocImage.src.substring(tocImage.src.lastIndexOf('images')).replace("01", "02");
if (tocImage.parentNode.parentNode.childNodes.length > 1)
{
tocTmp = tocImage.parentNode.previousSibling.childNodes[
tocImage.parentNode.previousSibling.childNodes.length - 4];
tocTmp.src = tocTmp.src.substring(tocTmp.src.lastIndexOf('images')).replace("02", "01");
}
}
//Check if item has children data
if (tocTab[i][1] && tocTab[i][1] != 3)
{
tocImage.id = tocTab[i][7];
tocImage.alt = tocTab[i][7];
} else if (childItem == true)
{
while (tocImage.parentNode.childNodes.length
< document.getElementById(tocTab[i][6]).parentNode.childNodes.length - 2)
{
tocImage.parentNode.insertBefore(document.createElement('img'), tocImage).src = "images/join03.gif";
}
tocImage.src = tocImage.src.substring(tocImage.src.lastIndexOf("images")).replace('01', '02');
if (document.getElementById(tocTab[i][6]).parentNode.lastChild.childNodes.length > 1)
{
tocTmpSrc = document.getElementById(
tocTab[i][6]).parentNode.lastChild.lastChild.previousSibling.childNodes[document.getElementById(
tocTab[i][6]).parentNode.lastChild.lastChild.previousSibling.childNodes.length - 4];
tocTmpSrc.src = tocTmpSrc.src.substring(tocTmpSrc.src.lastIndexOf('images')).replace('02', '01');
}
tocImage = document.getElementById(
tocTab[i][6]).parentNode.childNodes[document.getElementById(tocTab[i][6]).parentNode.childNodes.length
- 4];
tocImage.parentNode.lastChild.style.display = "none";
}
if ((tocTab[i][1] && tocTab[i][1] != 3) || childItem == true)
{
tocImage.id = tocImage.id.substr(1, tocImage.id.length - 2);
tocImage.src = tocImage.src.substring(tocImage.src.lastIndexOf('images')).replace('join', 'plus');
}
}
//Set Icon
if (tocTab[i][3])
{
tocImg = tocBranch.appendChild(document.createElement('a'));
tocImg.href = tocTab[i][3];
tocImg.target = top.frames[1].name;
} else
tocImg = tocBranch;
tocTab[i][4] = tocTab[i][4].substring(0, tocTab[i][4].indexOf('.'))
tocImg = tocImg.appendChild(document.createElement('img'));
if (top.icon[tocTab[i][4]])
tocImg.src = top.icon[tocTab[i][4]].src;
else
tocImg.src = "images/" + tocTab[i][4] + ".png";
if (tocTab[i][3])
tocImg.id = tocTab[i][3];
//Set Text/Link
if (tocTab[i][5] && tocTab[i][8] != "0Diagram")
tocBranch.lastChild.id = tocTab[i][5];
else
tocBranch.lastChild.id = "0";
tocBranch.lastChild.style.marginRight = "4px";
if (tocTab[i][3])
{
tocText = tocBranch.appendChild(document.createElement('a'));
tocText.href = tocTab[i][3];
tocText.target = top.frames[1].name;
if (tocTab[i][9])
tocText.id = tocTab[i][9];
else if (tocTab[i][7])
tocText.id = tocTab[i][7];
} else
tocText = tocBranch;
var j = 0;
var nodeText;
//Replace values
while (tocTab[i][2].indexOf('&quot;') != -1)
tocTab[i][2] = tocTab[i][2].replace('&quot;', '\"');
while (tocTab[i][2].indexOf('<br />') != -1)
tocTab[i][2] = tocTab[i][2].replace('<br />', '\n');
while (tocTab[i][2].indexOf('&#39;') != -1)
tocTab[i][2] = tocTab[i][2].replace('&#39;', '\'');
if (tocTab[i][2] == "")
tocTab[i][2] = " ";
nodeText = tocText.appendChild(document.createTextNode(tocTab[i][2]));
while (nodeText.nodeValue.indexOf('&lt;') != -1)
nodeText.nodeValue = nodeText.nodeValue.replace('&lt;', '<');
while (nodeText.nodeValue.indexOf('&gt;') != -1)
nodeText.nodeValue = nodeText.nodeValue.replace('&gt;', '>');
tocBranch.appendChild(document.createElement('ul')).id = "toc" + tocTab[i][0];
tocLastID = tocTab[i][0];
return true;
}
function tocClick(tocSrc)
{
if (tocSrc.src.substring(tocSrc.src.lastIndexOf('images')).indexOf('minus') != -1)
{
tocSrc.parentNode.childNodes[tocSrc.parentNode.childNodes.length - 1].style.display = "none";
tocSrc.src = tocSrc.src.substring(tocSrc.src.lastIndexOf('images')).replace('minus', 'plus');
}
else if (tocSrc.src.substring(tocSrc.src.lastIndexOf('images')).indexOf('plus') != -1)
{
tocSrc.parentNode.childNodes[tocSrc.parentNode.childNodes.length - 1].style.display = "block";
tocSrc.src = tocSrc.src.substring(tocSrc.src.lastIndexOf('images')).replace('plus', 'minus');
//Check if children data built
if (tocSrc.parentNode.childNodes[tocSrc.parentNode.childNodes.length - 1].childNodes.length == 0)
{
tocLoadData(tocSrc.id + ".xml");
}
}
}
function tocInit()
{
if (browser == "ie_old")
{
top.document.getElementById(
'Preload').childNodes[0].innerHTML
= "<strong>It appears you are using an outdated version of Internet Explorer, please download a later version from <a href=\"http://www.microsoft.com/windows/ie/default.mspx\">Microsoft</a></strong>";
return;
}
tocLoading = document.body.appendChild(document.createElement('div'));
tocRoot = document.body.appendChild(document.createElement('ul'));
tocRoot.id = "tocRoot";
tocInitRoot = 1;
tocLoadData('root.xml');
}
function tocLoadData(src)
{
var tmp = document.location + "";
tmp = tmp.substring(0, tmp.indexOf('toc.'));
src = tmp + "js/data/" + src;
tocTab = new Array();
RequestPage(src, tocLoadDataProcess);
}
function tocLoadDataProcess()
{
if (data.readyState == 4)
{
if (oldData == data)
return;
oldData = data;
try
{
eval(data.responseText);
tocBuild();
tocInitRoot++;
if (tocInitRoot == 2)
{
tocLoadData(tocTab[0][7].substring(1, tocTab[0][7].length - 1) + ".xml");
} else if (tocInitRoot == 3 && top.document.getElementById('Preload') != null)
{
tocInitRoot = 0;
top.initPreLoaded();
}
}
catch (e)
{
if (top.document.getElementById('Preload') != null)
{
var msg =
"<strong>An error occured while loading data files, please confirm that all files have been generated and are intact.</strong>";
if (browser == "op")
{
msg +=
"<br\/><br\/><br\/>A possible cause for this error is <strong>'Allow File XMLHttpRequest'</strong> is disabled. This option can be changed via <a href=\"about:config#UserPrefs|AllowFileXMLHttpRequest\">Preferences Editor</a>.<br\/><br\/><i>Note: Ensure you scroll down and click 'save' at the bottom of the page.<\i>";
}
top.document.getElementById('Preload').childNodes[0].innerHTML = msg;
}
return;
}
}
}
function toggleDiv(idDiv, idImage)
{
var ele = cont.document.getElementById(idDiv);
if (ele && ele.style.display == "none")
{
ele.style.display = "block";
cont.document.getElementById(idImage).src = cont.document.getElementById(idImage).src.substring(0,
cont.document.getElementById(idImage).src.lastIndexOf('images'))
+ cont.document.getElementById(idImage).src.substring(
cont.document.getElementById(idImage).src.lastIndexOf('images')).replace('plus', 'minus');
} else if (ele)
{
ele.style.display = "none";
cont.document.getElementById(idImage).src = cont.document.getElementById(idImage).src.substring(0,
cont.document.getElementById(idImage).src.lastIndexOf('images'))
+ cont.document.getElementById(idImage).src.substring(
cont.document.getElementById(idImage).src.lastIndexOf('images')).replace('minus', 'plus');
}
}
function toggleData(src)
{
var dataRoot = cont.document.getElementById(src).parentNode.parentNode.parentNode;
if (cont.document.getElementById(src).src.substring(
cont.document.getElementById(src).src.lastIndexOf('images')).indexOf('plus') != -1)
cont.document.getElementById(src).src = cont.document.getElementById(src).src.substring(0,
cont.document.getElementById(src).src.lastIndexOf('images'))
+ cont.document.getElementById(src).src.substring(
cont.document.getElementById(src).src.lastIndexOf('images')).replace('plus', 'minus');
else
cont.document.getElementById(src).src = cont.document.getElementById(src).src.substring(0,
cont.document.getElementById(src).src.lastIndexOf('images'))
+ cont.document.getElementById(src).src.substring(
cont.document.getElementById(src).src.lastIndexOf('images')).replace('minus', 'plus');
for (var i = 0; i < dataRoot.getElementsByTagName('tr').length; i++)
{
if (dataRoot.getElementsByTagName('tr')[i].id.indexOf(src)
!= -1 && cont.document.getElementById(src).src.substring(
cont.document.getElementById(src).src.lastIndexOf('images')).indexOf('minus')
!= -1 && dataRoot.getElementsByTagName('tr')[i].getElementsByTagName('td')[1].firstChild != null)
dataRoot.getElementsByTagName('tr')[i].style.display = "";
else if (dataRoot.getElementsByTagName('tr')[i].id.indexOf(src) != -1)
dataRoot.getElementsByTagName('tr')[i].style.display = "none";
}
if (cont.document.getElementById('TableGroup') != null)
{
toggleItem(tableSel, 2);
}
}
function toggleItem(item, type)
{
if (tableSel != null)
{
var obj = cont.document.getElementById(tableSel + "Table");
if (obj != null)
{
cont.document.getElementById(tableSel + "Title").style.background = "#FFFFFF";
cont.document.getElementById(tableSel + "Title").style.color = "#000000";
obj.style.display = "none";
}
}
tableSel = item;
tableSelTable = cont.document.getElementById(item + "Table");
tableSelTitle = cont.document.getElementById(item + "Title");
tableSelTitle.style.background = "#DDDDDD";
tableSelTitle.style.color = "#666666";
tableSelTable.style.display = "block";
if (browser == "ff" || browser == "op" || browser == "ie7")
{
var contWHeight = document.documentElement.clientHeight - 78;
var contWWidth = cont.document.documentElement.clientWidth;
} else
{
var contWHeight = document.body.clientHeight - 74;
var contWWidth = document.body.clientWidth - (top.document.getElementById('resizeFrames').offsetLeft + 6);
}
if (tableSelTable.id == "LinkedDocumentTable")
tableSelTable.style.overflow = "scroll";
if (cont.document.body.offsetHeight - contWHeight > 0)
{
if (tableSelTable.id != "LinkedDocumentTable")
tableSelTable.style.overflow = "scroll";
if (browser == "ff" || browser == "op")
{
tableSelTable.style.height = tableSelTable.offsetHeight
- (cont.document.body.offsetHeight - cont.innerHeight) - 12 + "px";
} else
{
tableSelTable.style.height = tableSelTable.offsetHeight - (cont.document.body.offsetHeight - contWHeight)
- 3 + "px";
if (cont.document.body.offsetWidth > contWWidth || type == null)
{
tableSelTable.style.width = contWWidth - 20 + "px";
if (tableSelTable.getElementsByTagName('table').length != 0)
tableSelTable.getElementsByTagName(
'table')[0].style.width = tableSelTable.getElementsByTagName('table')[0].offsetWidth - 18
+ "px";
}
}
if (tableSelTable.getElementsByTagName('table').length != 0)
{
tabHead = tableSelTable.appendChild(tableSelTable.getElementsByTagName('table')[0].cloneNode(true));
tabHead.style.position = "absolute";
if (browser == "ff" || browser == "op")
tabHead.style.width = tableSelTable.offsetWidth + "px";
tabHead.style.top = tableSelTable.offsetTop + 1 + "px";
for (var i = 0; i < tabHead.getElementsByTagName('tr').length; i++)
{
if (i != 0)
tabHead.getElementsByTagName('tr')[i].style.display = "none";
}
}
} else if (cont.document.getElementById('TableGroup').offsetHeight
+ cont.document.getElementById('TableGroup').offsetTop < (contWHeight - 6)
&& tableSelTable.style.overflow == "scroll")
{
if (browser == "ff" || browser == "op")
{
tableSelTable.style.height = tableSelTable.offsetHeight
- (cont.document.body.offsetHeight - cont.innerHeight) - 12 + "px";
} else
{
tableSelTable.style.height = tableSelTable.offsetHeight
+ ((contWHeight - 8) - (cont.document.getElementById('TableGroup').offsetHeight
+ cont.document.getElementById('TableGroup').offsetTop)) + "px";
}
}
if (tableSelTable.childNodes.length > 1)
{
tableSelTable.style.width = (document.body.clientWidth
- (top.document.getElementById('resizeFrames').offsetLeft + 6) - 20) + "px";
if (tableSelTable.childNodes[0].style)
tableSelTable.childNodes[0].style.width = (tableSelTable.offsetWidth - 19) + "px";
if (tableSelTable.childNodes[1].style)
tableSelTable.childNodes[1].style.width = (tableSelTable.offsetWidth - 19) + "px";
}
}
\ No newline at end of file
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script src="js/displayToc.js"></script>
<link rel="stylesheet" href="css/eacont.css" />
</head>
<body onload="tocInit()">
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding</title>
<link href="../css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
<div class="PageBody">
<img src="EA2.png" usemap="#EA2" border="0" />
<MAP NAME="EA2">
<area shape="rect" coords="272,411,464,526" href="EA5.htm" target="_self">
<area shape="rect" coords="508,641,743,867" href="EA6.htm" target="_self">
<area shape="rect" coords="255,641,501,867" href="EA8.htm" target="_self">
<area shape="rect" coords="10,641,246,867" href="EA7.htm" target="_self">
<area shape="rect" coords="280,152,458,319" href="EA4.htm" target="_self">
</MAP>
<div class="ObjectTitle">FWEBuilding : Class diagram</div>
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">12/05/2020 00:00:00</td>
</tr>
<tr>
<td width="15%" class="ObjectDetailsTopic">Modified:</td>
<td width="85%" class="ObjectDetailsValue">17/05/2020 17:54:32</td>
</tr>
<tr style="padding-top: 10px;">
<td width="15%" class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td width="85%" class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td width="15%" class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td width="85%" class="ObjectDetailsValue">Rushi</td>
</tr>
<tr id="proj01" style="display: none;">
<td width="15%" class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td width="85%" class="ObjectDetailsValue">1.0</td>
</tr>
<tr>
<td width="15%" class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td width="85%" class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td width="15%" class="ObjectDetailsTopic" style="padding-left: 18px;">ID:</td>
<td width="85%" class="ObjectDetailsValue">{B85F63E4-2135-4fa0-AFC1-AEC0B21DB1F3}</td>
</tr>
</table>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding</title>
<link href="../css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
<div class="pageHeader"></div>
<div class="PageBody">
<div id="name_classifier" style="display: none;"></div>
<span class="ObjectTitle"><script type="text/javascript">document.write(nameClassifier("FWEBuilding", " : "))</script> : Public &lt;&lt;Application Schema&gt;&gt; Package</span>
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">12/05/2020 13:16:40</td>
</tr>
<tr>
<td class="ObjectDetailsTopic">Modified:</td>
<td class="ObjectDetailsValue">12/05/2020 13:16:47</td>
</tr>
<tr style="height: 10px"><td colspan="2"></td></tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td class="ObjectDetailsValue">Rushi</td>
</tr>
<tr id="proj01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj02" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Phase:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj03" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Status:</td>
<td class="ObjectDetailsValue">Proposed</td>
</tr>
<tr id="proj04" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Complexity:</td>
<td class="ObjectDetailsValue">Easy</td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Difficulty:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj06" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Priority:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Multiplicity:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">UUID:</td>
<td class="ObjectDetailsValue">{C84B1B94-D4F7-45d3-B897-793D02D5E5DB}</td>
</tr>
<tr id="adv01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Appears In:</td>
<td class="ObjectDetailsValue">CityGML_FWE_ADE</td>
</tr>
</table>
<div class="TableGroup" id="TableGroup">
<ul class="ItemTitle">
<li onClick="parent.toggleItem('TaggedVal');" id="TaggedValTitle">Tagged Values</li>
</ul>
<div class="ItemBody" id="TaggedValTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="50%" class="TableHeading">Tag</td>
<td width="50%" class="TableHeading">Value</td>
</tr>
<tr>
<td width="50%" class="TableRow" valign="top">version</td>
<td width="50%" class="TableRow" valign="top">1.0</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario0" onclick="parent.toggleDiv('detailsDIVScenario0','DetailsImageScenario0')" />Details:
<div id="detailsDIVScenario0" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Default: FIXME<br />Description: Current version of the application schema<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">xmlns</td>
<td width="50%" class="TableRow" valign="top">FWEB</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario1" onclick="parent.toggleDiv('detailsDIVScenario1','DetailsImageScenario1')" />Details:
<div id="detailsDIVScenario1" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Default: FIXME<br />Description: Namespace prefix to be used as short form of the target namespace<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">xsdDocument</td>
<td width="50%" class="TableRow" valign="top">FWEBuilding.xsd</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario2" onclick="parent.toggleDiv('detailsDIVScenario2','DetailsImageScenario2')" />Details:
<div id="detailsDIVScenario2" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Default: FIXME<br />Description: Name of an XML Schema document to create representing the content of this package<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">xsdEncodingRule</td>
<td width="50%" class="TableRow" valign="top">iso19136_2007</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario3" onclick="parent.toggleDiv('detailsDIVScenario3','DetailsImageScenario3')" />Details:
<div id="detailsDIVScenario3" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: iso19136_2007 | iso19139_2007 | citygml | notEncoded<br />Description: XML Schema encoding rule to apply<br /></div>
</div>
</div>
</td>
</tr>
</table>
</div> </div>
<div class="pageFooter"></div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding::_AbstractBuilding</title>
<link href="../css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
<div class="pageHeader"></div>
<div class="PageBody">
<div id="name_classifier" style="display: none;"></div>
<span class="ObjectTitle"><script type="text/javascript">document.write(nameClassifier("_AbstractBuilding", " : "))</script> : Public abstract &lt;&lt;ADEElement&gt;&gt; Class</span>
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">12/05/2020 13:22:34</td>
</tr>
<tr>
<td class="ObjectDetailsTopic">Modified:</td>
<td class="ObjectDetailsValue">12/05/2020 18:51:56</td>
</tr>
<tr style="height: 10px"><td colspan="2"></td></tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td class="ObjectDetailsValue">Rushi</td>
</tr>
<tr id="proj01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj02" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Phase:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj03" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Status:</td>
<td class="ObjectDetailsValue">Proposed</td>
</tr>
<tr id="proj04" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Complexity:</td>
<td class="ObjectDetailsValue">Easy</td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Difficulty:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj06" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Priority:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Multiplicity:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">UUID:</td>
<td class="ObjectDetailsValue">{0D020004-FE19-4e89-83B8-DAD45A41A942}</td>
</tr>
<tr id="adv01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Appears In:</td>
<td class="ObjectDetailsValue"><a href="EA1.htm">FWEBuilding</a></td>
</tr>
</table>
<div class="TableGroup" id="TableGroup">
<ul class="ItemTitle">
<li onClick="parent.toggleItem('Attributes');" id="AttributesTitle">Attributes</li>
<li onClick="parent.toggleItem('AssociationsFrom');" id="AssociationsFromTitle">Associations From</li>
<li onClick="parent.toggleItem('Links');" id="LinksTitle">Other Links</li>
</ul>
<div class="ItemBody" id="AttributesTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="100%" class="TableHeading">Attribute</td>
</tr>
<tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;buildingFootprintArea</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes4')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes4" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes4_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes4_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes4_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes4_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes4_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes4_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes4_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes4_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;buildingFootprintAreaUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes5')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes5" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes5_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes5_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes5_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes5_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes5_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes5_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes5_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes5_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;heatedArea</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes6')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes6" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes6_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes6_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes6_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes6_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes6_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes6_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes6_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes6_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;heatedAreaUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes7')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes7" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes7_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes7_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes7_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes7_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes7_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes7_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes7_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes7_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;totalFloorArea</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes8')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes8" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes8_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes8_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes8_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes8_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes8_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes8_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes8_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes8_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;totalFloorAreaUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes9')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes9" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes9_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes9_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes9_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes9_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes9_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes9_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes9_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes9_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;fweAreaName</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes10')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes10" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes10_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes10_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes10_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes10_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes10_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes10_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes10_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes10_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;fweSystemName</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes11')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes11" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes11_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes11_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes11_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes11_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes11_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes11_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes11_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes11_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="AssociationsFromTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="40%" class="TableHeading">Element</td>
<td width="30%" class="TableHeading">Source Role</td>
<td width="30%" class="TableHeading">Target Role</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA5.htm">«FeatureType» BuildingSurvey</a><br />
Class &nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> buildingSurveyProperties<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink12" onclick="parent.toggleDiv('detailsDIVLink12','DetailsImageLink12')" />Details:
<div id="detailsDIVLink12" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="LinksTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="30%" class="TableHeading">Object</td>
<td width="10%" class="TableHeading">Type</td>
<td width="10%" class="TableHeading">Connection</td>
<td width="10%" class="TableHeading">Direction</td>
<td width="40%" class="TableHeading">Notes</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top">_AbstractBuilding</td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Generalization</td>
<td width="10%" class="TableRow" valign="top">To</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
</table>
</div>
</div>
<div class="pageFooter"></div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding::BuildingSurvey</title>
<link href="../css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
<div class="pageHeader"></div>
<div class="PageBody">
<div id="name_classifier" style="display: none;"></div>
<span class="ObjectTitle"><script type="text/javascript">document.write(nameClassifier("BuildingSurvey", " : "))</script> : Public &lt;&lt;FeatureType&gt;&gt; Class</span>
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">12/05/2020 14:06:12</td>
</tr>
<tr>
<td class="ObjectDetailsTopic">Modified:</td>
<td class="ObjectDetailsValue">12/05/2020 14:06:20</td>
</tr>
<tr style="height: 10px"><td colspan="2"></td></tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td class="ObjectDetailsValue">Rushi</td>
</tr>
<tr id="proj01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj02" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Phase:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj03" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Status:</td>
<td class="ObjectDetailsValue">Proposed</td>
</tr>
<tr id="proj04" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Complexity:</td>
<td class="ObjectDetailsValue">Easy</td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Difficulty:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj06" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Priority:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Multiplicity:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">UUID:</td>
<td class="ObjectDetailsValue">{9789C12A-4F35-4c7a-AF4F-D5F0EB8A8252}</td>
</tr>
<tr id="adv01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Appears In:</td>
<td class="ObjectDetailsValue"><a href="EA1.htm">FWEBuilding</a></td>
</tr>
</table>
<div class="TableGroup" id="TableGroup">
<ul class="ItemTitle">
<li onClick="parent.toggleItem('Attributes');" id="AttributesTitle">Attributes</li>
<li onClick="parent.toggleItem('AssociationsTo');" id="AssociationsToTitle">Associations To</li>
<li onClick="parent.toggleItem('AssociationsFrom');" id="AssociationsFromTitle">Associations From</li>
<li onClick="parent.toggleItem('TaggedVal');" id="TaggedValTitle">Tagged Values</li>
<li onClick="parent.toggleItem('Links');" id="LinksTitle">Other Links</li>
</ul>
<div class="ItemBody" id="AttributesTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="100%" class="TableHeading">Attribute</td>
</tr>
<tr>
<td width="100%" class="TableRow">
<i>Public int</i><br /><strong>&nbsp;&nbsp;surveyYear</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes13')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes13" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes13_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes13_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes13_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes13_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes13_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes13_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes13_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes13_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;surveyYearVersion</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes14')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes14" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes14_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes14_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes14_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes14_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes14_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to *</td>
</tr>
<tr id="DetailsImageAttributes14_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes14_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes14_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;surveyDescription</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes15')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes15" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes15_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes15_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes15_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes15_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes15_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to *</td>
</tr>
<tr id="DetailsImageAttributes15_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes15_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes15_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public int</i><br /><strong>&nbsp;&nbsp;population</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes16')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes16" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes16_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes16_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes16_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes16_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes16_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes16_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes16_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes16_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="AssociationsToTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="40%" class="TableHeading">Element</td>
<td width="30%" class="TableHeading">Source Role</td>
<td width="30%" class="TableHeading">Target Role</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA4.htm">«ADEElement» _AbstractBuilding</a><br />
Class &nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> buildingSurveyProperties<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink17" onclick="parent.toggleDiv('detailsDIVLink17','DetailsImageLink17')" />Details:
<div id="detailsDIVLink17" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="AssociationsFromTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="40%" class="TableHeading">Element</td>
<td width="30%" class="TableHeading">Source Role</td>
<td width="30%" class="TableHeading">Target Role</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA6.htm">«FeatureType» EnergySurvey</a><br />
Class «Composition»
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> energySurveyProperty<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink18" onclick="parent.toggleDiv('detailsDIVLink18','DetailsImageLink18')" />Details:
<div id="detailsDIVLink18" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA8.htm">«FeatureType» WaterSurvey</a><br />
Class «Composition»
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> waterSurveyProperty<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink19" onclick="parent.toggleDiv('detailsDIVLink19','DetailsImageLink19')" />Details:
<div id="detailsDIVLink19" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA7.htm">«FeatureType» FoodSurvey</a><br />
Class «Composition»
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> foodSurveyProperties<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink20" onclick="parent.toggleDiv('detailsDIVLink20','DetailsImageLink20')" />Details:
<div id="detailsDIVLink20" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="TaggedValTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="50%" class="TableHeading">Tag</td>
<td width="50%" class="TableHeading">Value</td>
</tr>
<tr>
<td width="50%" class="TableRow" valign="top">byValuePropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario21" onclick="parent.toggleDiv('detailsDIVScenario21','DetailsImageScenario21')" />Details:
<div id="detailsDIVScenario21" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Create a named complex type ( property type ) that requires the instance to be encoded inline<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">isCollection</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario22" onclick="parent.toggleDiv('detailsDIVScenario22','DetailsImageScenario22')" />Details:
<div id="detailsDIVScenario22" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Identifies the class as a collection<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">noPropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario23" onclick="parent.toggleDiv('detailsDIVScenario23','DetailsImageScenario23')" />Details:
<div id="detailsDIVScenario23" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Suppress creation of a named complex type ( property type ) that supports inline or byReference encoding<br /></div>
</div>
</div>
</td>
</tr>
</table>
</div> <div class="ItemBody" id="LinksTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="30%" class="TableHeading">Object</td>
<td width="10%" class="TableHeading">Type</td>
<td width="10%" class="TableHeading">Connection</td>
<td width="10%" class="TableHeading">Direction</td>
<td width="40%" class="TableHeading">Notes</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA6.htm">«FeatureType» EnergySurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Generalization</td>
<td width="10%" class="TableRow" valign="top">From</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA6.htm">«FeatureType» EnergySurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Strong</td>
<td width="10%" class="TableRow" valign="top">From</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA8.htm">«FeatureType» WaterSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Generalization</td>
<td width="10%" class="TableRow" valign="top">From</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA8.htm">«FeatureType» WaterSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Strong</td>
<td width="10%" class="TableRow" valign="top">From</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA7.htm">«FeatureType» FoodSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Generalization</td>
<td width="10%" class="TableRow" valign="top">From</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA7.htm">«FeatureType» FoodSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Strong</td>
<td width="10%" class="TableRow" valign="top">From</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
</table>
</div>
</div>
<div class="pageFooter"></div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding::EnergySurvey</title>
<link href="../css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
<div class="pageHeader"></div>
<div class="PageBody">
<div id="name_classifier" style="display: none;"></div>
<span class="ObjectTitle"><script type="text/javascript">document.write(nameClassifier("EnergySurvey", " : "))</script> : Public &lt;&lt;FeatureType&gt;&gt; Class</span>
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">12/05/2020 13:38:49</td>
</tr>
<tr>
<td class="ObjectDetailsTopic">Modified:</td>
<td class="ObjectDetailsValue">15/05/2020 19:00:43</td>
</tr>
<tr style="height: 10px"><td colspan="2"></td></tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td class="ObjectDetailsValue">Rushi</td>
</tr>
<tr id="proj01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj02" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Phase:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj03" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Status:</td>
<td class="ObjectDetailsValue">Proposed</td>
</tr>
<tr id="proj04" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Complexity:</td>
<td class="ObjectDetailsValue">Easy</td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Difficulty:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj06" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Priority:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Multiplicity:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">UUID:</td>
<td class="ObjectDetailsValue">{9218236B-4CE3-416d-8AEB-6BD049F88526}</td>
</tr>
<tr id="adv01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Appears In:</td>
<td class="ObjectDetailsValue"><a href="EA1.htm">FWEBuilding</a></td>
</tr>
</table>
<div class="TableGroup" id="TableGroup">
<ul class="ItemTitle">
<li onClick="parent.toggleItem('Attributes');" id="AttributesTitle">Attributes</li>
<li onClick="parent.toggleItem('AssociationsTo');" id="AssociationsToTitle">Associations To</li>
<li onClick="parent.toggleItem('TaggedVal');" id="TaggedValTitle">Tagged Values</li>
<li onClick="parent.toggleItem('Links');" id="LinksTitle">Other Links</li>
</ul>
<div class="ItemBody" id="AttributesTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="100%" class="TableHeading">Attribute</td>
</tr>
<tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;spaceHeatingDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes24')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes24" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes24_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes24_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes24_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes24_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes24_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes24_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes24_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes24_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;spaceHeatingDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes25')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes25" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes25_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes25_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes25_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes25_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes25_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes25_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes25_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes25_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;spaceCoolingDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes26')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes26" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes26_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes26_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes26_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes26_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes26_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes26_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes26_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes26_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;spaceCoolingDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes27')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes27" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes27_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes27_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes27_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes27_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes27_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes27_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes27_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes27_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;residentialElectricityDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes28')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes28" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes28_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes28_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes28_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes28_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes28_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes28_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes28_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes28_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;residentialElectricityDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes29')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes29" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes29_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes29_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes29_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes29_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes29_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes29_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes29_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes29_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;electricityPotentialFromPV</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes30')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes30" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes30_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes30_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes30_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes30_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes30_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes30_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes30_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes30_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;electricityPotentialfromPVUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes31')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes31" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes31_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes31_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes31_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes31_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes31_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes31_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes31_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes31_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="AssociationsToTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="40%" class="TableHeading">Element</td>
<td width="30%" class="TableHeading">Source Role</td>
<td width="30%" class="TableHeading">Target Role</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA5.htm">«FeatureType» BuildingSurvey</a><br />
Class «Composition»
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> energySurveyProperty<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink32" onclick="parent.toggleDiv('detailsDIVLink32','DetailsImageLink32')" />Details:
<div id="detailsDIVLink32" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="TaggedValTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="50%" class="TableHeading">Tag</td>
<td width="50%" class="TableHeading">Value</td>
</tr>
<tr>
<td width="50%" class="TableRow" valign="top">byValuePropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario33" onclick="parent.toggleDiv('detailsDIVScenario33','DetailsImageScenario33')" />Details:
<div id="detailsDIVScenario33" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Create a named complex type ( property type ) that requires the instance to be encoded inline<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">isCollection</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario34" onclick="parent.toggleDiv('detailsDIVScenario34','DetailsImageScenario34')" />Details:
<div id="detailsDIVScenario34" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Identifies the class as a collection<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">noPropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario35" onclick="parent.toggleDiv('detailsDIVScenario35','DetailsImageScenario35')" />Details:
<div id="detailsDIVScenario35" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Suppress creation of a named complex type ( property type ) that supports inline or byReference encoding<br /></div>
</div>
</div>
</td>
</tr>
</table>
</div> <div class="ItemBody" id="LinksTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="30%" class="TableHeading">Object</td>
<td width="10%" class="TableHeading">Type</td>
<td width="10%" class="TableHeading">Connection</td>
<td width="10%" class="TableHeading">Direction</td>
<td width="40%" class="TableHeading">Notes</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA5.htm">«FeatureType» BuildingSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Generalization</td>
<td width="10%" class="TableRow" valign="top">To</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA5.htm">«FeatureType» BuildingSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Strong</td>
<td width="10%" class="TableRow" valign="top">To</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
</table>
</div>
</div>
<div class="pageFooter"></div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding::FoodSurvey</title>
<link href="../css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
<div class="pageHeader"></div>
<div class="PageBody">
<div id="name_classifier" style="display: none;"></div>
<span class="ObjectTitle"><script type="text/javascript">document.write(nameClassifier("FoodSurvey", " : "))</script> : Public &lt;&lt;FeatureType&gt;&gt; Class</span>
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">12/05/2020 13:38:24</td>
</tr>
<tr>
<td class="ObjectDetailsTopic">Modified:</td>
<td class="ObjectDetailsValue">12/05/2020 13:38:30</td>
</tr>
<tr style="height: 10px"><td colspan="2"></td></tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td class="ObjectDetailsValue">Rushi</td>
</tr>
<tr id="proj01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj02" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Phase:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj03" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Status:</td>
<td class="ObjectDetailsValue">Proposed</td>
</tr>
<tr id="proj04" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Complexity:</td>
<td class="ObjectDetailsValue">Easy</td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Difficulty:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj06" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Priority:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Multiplicity:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">UUID:</td>
<td class="ObjectDetailsValue">{146BA401-836A-4036-B78C-5F1CB17829D7}</td>
</tr>
<tr id="adv01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Appears In:</td>
<td class="ObjectDetailsValue"><a href="EA1.htm">FWEBuilding</a></td>
</tr>
</table>
<div class="TableGroup" id="TableGroup">
<ul class="ItemTitle">
<li onClick="parent.toggleItem('Attributes');" id="AttributesTitle">Attributes</li>
<li onClick="parent.toggleItem('AssociationsTo');" id="AssociationsToTitle">Associations To</li>
<li onClick="parent.toggleItem('TaggedVal');" id="TaggedValTitle">Tagged Values</li>
<li onClick="parent.toggleItem('Links');" id="LinksTitle">Other Links</li>
</ul>
<div class="ItemBody" id="AttributesTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="100%" class="TableHeading">Attribute</td>
</tr>
<tr>
<td width="100%" class="TableRow">
<i>Public CodeList</i><br /><strong>&nbsp;&nbsp;foodCategory</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes36')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes36" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes36_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes36_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes36_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes36_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes36_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to *</td>
</tr>
<tr id="DetailsImageAttributes36_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes36_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes36_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;foodDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes37')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes37" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes37_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes37_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes37_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes37_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes37_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes37_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes37_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes37_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;foodDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes38')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes38" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes38_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes38_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes38_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes38_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes38_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes38_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes38_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes38_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;foodProduction</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes39')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes39" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes39_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes39_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes39_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes39_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes39_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes39_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes39_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes39_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;foodProductionUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes40')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes40" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes40_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes40_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes40_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes40_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes40_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes40_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes40_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes40_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;foodProductionWaterDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes41')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes41" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes41_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes41_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes41_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes41_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes41_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes41_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes41_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes41_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;foodProductionWaterDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes42')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes42" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes42_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes42_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes42_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes42_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes42_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes42_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes42_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes42_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;foodProductionEnergyDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes43')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes43" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes43_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes43_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes43_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes43_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes43_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes43_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes43_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes43_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;foodProductionEnergyDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes44')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes44" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes44_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes44_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes44_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes44_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes44_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes44_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes44_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes44_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;foodConsumption</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes45')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes45" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes45_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes45_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes45_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes45_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes45_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes45_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes45_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes45_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;foodConsumptionUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes46')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes46" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes46_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes46_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes46_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes46_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes46_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes46_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes46_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes46_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="AssociationsToTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="40%" class="TableHeading">Element</td>
<td width="30%" class="TableHeading">Source Role</td>
<td width="30%" class="TableHeading">Target Role</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA5.htm">«FeatureType» BuildingSurvey</a><br />
Class «Composition»
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> foodSurveyProperties<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink47" onclick="parent.toggleDiv('detailsDIVLink47','DetailsImageLink47')" />Details:
<div id="detailsDIVLink47" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="TaggedValTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="50%" class="TableHeading">Tag</td>
<td width="50%" class="TableHeading">Value</td>
</tr>
<tr>
<td width="50%" class="TableRow" valign="top">byValuePropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario48" onclick="parent.toggleDiv('detailsDIVScenario48','DetailsImageScenario48')" />Details:
<div id="detailsDIVScenario48" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Create a named complex type ( property type ) that requires the instance to be encoded inline<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">isCollection</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario49" onclick="parent.toggleDiv('detailsDIVScenario49','DetailsImageScenario49')" />Details:
<div id="detailsDIVScenario49" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Identifies the class as a collection<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">noPropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario50" onclick="parent.toggleDiv('detailsDIVScenario50','DetailsImageScenario50')" />Details:
<div id="detailsDIVScenario50" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Suppress creation of a named complex type ( property type ) that supports inline or byReference encoding<br /></div>
</div>
</div>
</td>
</tr>
</table>
</div> <div class="ItemBody" id="LinksTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="30%" class="TableHeading">Object</td>
<td width="10%" class="TableHeading">Type</td>
<td width="10%" class="TableHeading">Connection</td>
<td width="10%" class="TableHeading">Direction</td>
<td width="40%" class="TableHeading">Notes</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA5.htm">«FeatureType» BuildingSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Generalization</td>
<td width="10%" class="TableRow" valign="top">To</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA5.htm">«FeatureType» BuildingSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Strong</td>
<td width="10%" class="TableRow" valign="top">To</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
</table>
</div>
</div>
<div class="pageFooter"></div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding::WaterSurvey</title>
<link href="../css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
<div class="pageHeader"></div>
<div class="PageBody">
<div id="name_classifier" style="display: none;"></div>
<span class="ObjectTitle"><script type="text/javascript">document.write(nameClassifier("WaterSurvey", " : "))</script> : Public &lt;&lt;FeatureType&gt;&gt; Class</span>
<table border="0" cellpadding="0" cellspacing="0" class="ObjectDetails">
<tr>
<td width="15%" class="ObjectDetailsTopic">Created:</td>
<td width="85%" class="ObjectDetailsValue">12/05/2020 13:38:33</td>
</tr>
<tr>
<td class="ObjectDetailsTopic">Modified:</td>
<td class="ObjectDetailsValue">12/05/2020 13:38:41</td>
</tr>
<tr style="height: 10px"><td colspan="2"></td></tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="proj" onclick="parent.toggleData(this.id)" />Project:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Author:</td>
<td class="ObjectDetailsValue">Rushi</td>
</tr>
<tr id="proj01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Version:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj02" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Phase:</td>
<td class="ObjectDetailsValue">1.0</td>
</tr>
<tr id="proj03" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Status:</td>
<td class="ObjectDetailsValue">Proposed</td>
</tr>
<tr id="proj04" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Complexity:</td>
<td class="ObjectDetailsValue">Easy</td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Difficulty:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj06" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Priority:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="proj05" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Multiplicity:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr>
<td class="ObjectDetailsTopic"><img src="../images/plus03.gif" align="absmiddle" id="adv" onclick="parent.toggleData(this.id)" />Advanced:</td>
<td class="ObjectDetailsValue"></td>
</tr>
<tr id="adv00" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">UUID:</td>
<td class="ObjectDetailsValue">{F74166DF-FD23-478e-A354-E0C441182D01}</td>
</tr>
<tr id="adv01" style="display: none;">
<td class="ObjectDetailsTopic" style="padding-left: 18px;">Appears In:</td>
<td class="ObjectDetailsValue"><a href="EA1.htm">FWEBuilding</a></td>
</tr>
</table>
<div class="TableGroup" id="TableGroup">
<ul class="ItemTitle">
<li onClick="parent.toggleItem('Attributes');" id="AttributesTitle">Attributes</li>
<li onClick="parent.toggleItem('AssociationsTo');" id="AssociationsToTitle">Associations To</li>
<li onClick="parent.toggleItem('TaggedVal');" id="TaggedValTitle">Tagged Values</li>
<li onClick="parent.toggleItem('Links');" id="LinksTitle">Other Links</li>
</ul>
<div class="ItemBody" id="AttributesTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="100%" class="TableHeading">Attribute</td>
</tr>
<tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;domesticWaterDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes51')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes51" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes51_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes51_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes51_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes51_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes51_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes51_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes51_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes51_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;domesticWaterDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes52')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes52" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes52_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes52_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes52_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes52_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes52_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes52_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes52_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes52_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;domesticHotWaterDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes53')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes53" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes53_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes53_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes53_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes53_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes53_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes53_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes53_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes53_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;domesticHotWaterDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes54')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes54" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes54_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes54_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes54_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes54_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes54_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes54_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes54_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes54_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;domesticHotWaterEnergyDemand</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes55')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes55" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes55_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes55_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes55_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes55_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes55_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes55_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes55_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes55_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;domesticHotWaterEnergyDemandUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes56')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes56" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes56_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes56_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes56_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes56_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes56_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes56_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes56_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes56_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;domesticWaterWaste</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes57')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes57" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes57_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes57_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes57_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes57_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes57_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes57_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes57_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes57_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;domesticWaterWasteUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes58')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes58" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes58_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes58_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes58_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes58_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes58_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes58_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes58_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes58_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;domesticSolidWaste</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes59')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes59" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes59_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes59_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes59_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes59_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes59_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes59_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes59_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes59_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;domesticSolidWasteUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes60')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes60" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes60_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes60_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes60_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes60_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes60_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes60_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes60_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes60_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public double</i><br /><strong>&nbsp;&nbsp;totalDomesticWaste</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes61')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes61" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes61_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes61_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes61_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes61_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes61_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes61_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes61_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes61_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr> <tr>
<td width="100%" class="TableRow">
<i>Public string</i><br /><strong>&nbsp;&nbsp;totalDomesticWasteUnit</strong>
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="1">
<a href="#" onclick="parent.toggleData('DetailsImageAttributes62')" style="text-decoration: none; color: #000000;"><img src="../images/plus03.gif" align="absmiddle" id="DetailsImageAttributes62" border="0" />Details:</a>
<table border="0" cellspacing="0" cellpadding="0" class="Table" style="padding: 4px 18px;">
<tr id="DetailsImageAttributes62_00" style="display: none;">
<td width="75"><i>Alias:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes62_01" style="display: none;">
<td width="75"><i>Initial:</i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes62_02" style="display: none;">
<td width="75"><i>Stereotype: </i></td>
<td>&lt;&lt;property&gt;&gt;</td>
</tr>
<tr id="DetailsImageAttributes62_03" style="display: none;">
<td width="75"><i>Ordered: </i></td>
<td></td>
</tr>
<tr id="DetailsImageAttributes62_04" style="display: none;">
<td width="75"><i>Range: </i></td>
<td>Range:0 to 1</td>
</tr>
<tr id="DetailsImageAttributes62_05" style="display: none;">
<td width="75"><i>Transient: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes62_06" style="display: none;">
<td width="75"><i>Derived: </i></td>
<td>False</td>
</tr>
<tr id="DetailsImageAttributes62_07" style="display: none;">
<td width="75"><i>IsID: </i></td>
<td>False</td>
</tr>
</table>
inlineOrByReference=inline<br>isMetadata=false<br>
&nbsp;
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="AssociationsToTable">
<table border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="40%" class="TableHeading">Element</td>
<td width="30%" class="TableHeading">Source Role</td>
<td width="30%" class="TableHeading">Target Role</td>
</tr>
<tr>
<td width="40%" class="TableRow" valign="top">
<a href="EA5.htm">«FeatureType» BuildingSurvey</a><br />
Class «Composition»
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> waterSurveyProperty<br />
&nbsp;
</td>
<td width="30%" class="TableRow" valign="top">
<strong>Name:</strong> &nbsp;<br />
&nbsp;
</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="3">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageLink63" onclick="parent.toggleDiv('detailsDIVLink63','DetailsImageLink63')" />Details:
<div id="detailsDIVLink63" class="DetailsDiv" >
&nbsp;
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="ItemBody" id="TaggedValTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="50%" class="TableHeading">Tag</td>
<td width="50%" class="TableHeading">Value</td>
</tr>
<tr>
<td width="50%" class="TableRow" valign="top">byValuePropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario64" onclick="parent.toggleDiv('detailsDIVScenario64','DetailsImageScenario64')" />Details:
<div id="detailsDIVScenario64" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Create a named complex type ( property type ) that requires the instance to be encoded inline<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">isCollection</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario65" onclick="parent.toggleDiv('detailsDIVScenario65','DetailsImageScenario65')" />Details:
<div id="detailsDIVScenario65" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Identifies the class as a collection<br /></div>
</div>
</div>
</td>
</tr> <tr>
<td width="50%" class="TableRow" valign="top">noPropertyType</td>
<td width="50%" class="TableRow" valign="top">false</td>
</tr>
<tr>
<td class="TableRowBottomDashed" colspan="2">
<div class="DetailsDivParent"><img src="../images/minus03.gif" align="absmiddle" id="DetailsImageScenario66" onclick="parent.toggleDiv('detailsDIVScenario66','DetailsImageScenario66')" />Details:
<div id="detailsDIVScenario66" class="DetailsDiv" >
<div class="ObjectDetailsNotes">Values: true,false<br />Default: false<br />Description: Suppress creation of a named complex type ( property type ) that supports inline or byReference encoding<br /></div>
</div>
</div>
</td>
</tr>
</table>
</div> <div class="ItemBody" id="LinksTable">
<table align="center" border="0" cellspacing="0" cellpadding="0" class="Table">
<tr>
<td width="30%" class="TableHeading">Object</td>
<td width="10%" class="TableHeading">Type</td>
<td width="10%" class="TableHeading">Connection</td>
<td width="10%" class="TableHeading">Direction</td>
<td width="40%" class="TableHeading">Notes</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA5.htm">«FeatureType» BuildingSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Generalization</td>
<td width="10%" class="TableRow" valign="top">To</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
<tr>
<td width="30%" class="TableRow" valign="top"><a href="EA5.htm">«FeatureType» BuildingSurvey</a></td>
<td width="10%" class="TableRow" valign="top">Class</td>
<td width="10%" class="TableRow" valign="top">Strong</td>
<td width="10%" class="TableRow" valign="top">To</td>
<td width="40%" class="TableRow" valign="top">&nbsp;</td>
</tr>
</table>
</div>
</div>
<div class="pageFooter"></div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FWEBuilding</title>
<link href="css/ea.css" rel="stylesheet" type="text/css" />
<script>
function initPage(src) {
if(parent==this&&(this.location+"").indexOf('EARoot')!=-1)
document.location=(this.location+"").substring(0,(this.location+"").indexOf('EARoot'))+"index"+(this.location+"").substring((this.location+"").lastIndexOf('.'))+"?goto="+((this.location+"").substring((this.location+"").indexOf('EARoot')+7,(this.location+"").lastIndexOf('.')).replace(/\//g,':').replace(/EA/g,""));
else
parent.initPage(src);
}
function nameClassifier(name, separator)
{
var str = name;
var classifierName;
var node = document.getElementById('name_classifier');
if(node != null)
{
classifierName = node.innerHTML;
}
if(classifierName != "")
{
str += separator + classifierName;
}
return str;
}
</script>
</head>
<body onload="initPage(this);" class="Content">
</body>
</html>
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment