res.vminspect.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of purej-vminspect Show documentation
Show all versions of purej-vminspect Show documentation
An easy to use, feature-rich, JMX-based and embeddable Java VM monitoring tool with a web-based user-interface
// Simple function to show or hide the element with the given id
function showHide(id) {
if (document.getElementById(id).style.display=='none') {
if (document.getElementById(id + 'Img') != null) {
document.getElementById(id + 'Img').src='?resource=bullets/minus.png';
}
document.getElementById(id).style.display='inline';
} else {
if (document.getElementById(id + 'Img') != null) {
document.getElementById(id + 'Img').src='?resource=bullets/plus.png';
}
document.getElementById(id).style.display='none';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy