Package net.sourceforge.processdash.data

Examples of net.sourceforge.processdash.data.DataContext


    public List<ScriptID> getScripts(String path) {
        List<ScriptID> result = new ArrayList<ScriptID>();

        while (path != null) {
            DataContext ctx = data.getSubcontext(path);
            for (ItemDefinition item : SCRIPT_ITEMS)
                if (item.test(ctx))
                    result.add(item.getScriptID(path));

            path = DataRepository.chopPath(path);
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.data.DataContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.