var fDesc=new Array();
fDesc[0] = "jacoZoom is a tool for programmers and not for end users!
jacoZoom is a java class library which allows you to use ActiveX Controls and ActiveX Servers (COM/DCOM/Automation) with java. It is based on JNI and thus can be used with any java environment on the MS Windows platform.
jacoZoom contains a typelibrary parser, which produces java wrapper classes directly corresponding to the COM-objects and interfaces.
Main features:
- Embedding of ActiveX Controls in java user interfaces
- Embedding of OLE Documents in java user interfaces
- Support of both COM method-calling mechanisms: vTable and dispatch interfaces
- Event handling support for COM events
- Smart code generation for Java wrapper classes with method overloads for optional parameters
- New dialog frontend for generating wrapper classes, compiling them and creating JAR with them";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}