Distributed Application Components extends the Application Component to support a single file deployment. Application Components, Templates, Fragments, Modules, and Tasks may be combined into a single XML file for ease of sharing and reuse.
Static initializer for DWAC objects. DWAC objects are special constructs of Application Components.
d = newInstance( o, u, t, k, i )
d as DWACInstance: Instance of an ApplicationComponent instrumented with the DWAC loader.
An Application Component instance decorated with the DWAC loading modifiers.
Demonstrate how a DWAC can be used.
<div id = "oExampleDiv"></div>
<script type = "text/javascript">
window.onload = function(){
var oDWAC = Hemi.app.dwac.newInstance(;
document.getElementById("oExampleDiv")
,"/Path/To/Dwac.xml"
,"Example Template 1"
);
}
</script>
[ Hemi JavaScript Framework - Stephen W. Cote, 2002 - 2009. ]