All Downloads are FREE. Search and download functionalities are using the official Maven repository.

public.javadoc.script.js Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
function show(type)
{
    count = 0;
    for (var key in methods) {
        var row = document.getElementById(key);
        if ((methods[key] &  type) != 0) {
            row.style.display = '';
            row.className = (count++ % 2) ? rowColor : altColor;
        }
        else
            row.style.display = 'none';
    }
    updateTabs(type);
}

function updateTabs(type)
{
    for (var value in tabs) {
        var sNode = document.getElementById(tabs[value][0]);
        var spanNode = sNode.firstChild;
        if (value == type) {
            sNode.className = activeTableTab;
            spanNode.innerHTML = tabs[value][1];
        }
        else {
            sNode.className = tableTab;
            spanNode.innerHTML = "" + tabs[value][1] + "";
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy