Static initializer for DWAC objects. DWAC objects are special constructs of Application Components.
This class participates in the engine library.
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.
This class participates in the engine library.
Demonstrate how a DWAC can be used.
<div id = "oExampleDiv"></div>
<script type = "text/javascript">
window.onload = function(){
var oDWAC = org.cote.js.dwac.DistributedComponent.newInstance(;
document.getElementById("oExampleDiv")
,"/Path/To/Dwac.xml"
,"Example Template 1"
);
}
</script>