var fDesc=new Array(); fDesc[0] = "This distro contains the all you need to develop applications reusing the Eclipse architecture: both to develop Eclipse plug-ins, and to develop RCP applications, i.e. applications reusing components from Eclipse. In particular, it contains all the source code for the Eclipse platform and tools, which allows you to easily browse and debug the Eclipse code when accessed from your application.

Main features:

-Free and open-source,
-Easy to download and install, and
-Simple to maintain, without version and dependency issues."; 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 = ''; } }