Package net.sourceforge.processdash.tool.redact.HierarchyInfo

Examples of net.sourceforge.processdash.tool.redact.HierarchyInfo.Node


        }
    }
   
    public String getTeamProjectName(String filename) {
        String projectId = getProjectIdForFile(filename);
        Node n = hierarchyInfo.findNodeForTeamProject(projectId);
        return (n == null ? null : n.newName);
    }
View Full Code Here


    private class DefectPhaseFilter implements StringMapper {

        private boolean isGeneric = false;

        public void setCurrentFilename(String name) {
            Node info = hierarchyInfo.findNodeForDefectFile(name);
            isGeneric = (info != null && "Generic".equals(info.templateId));
        }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.tool.redact.HierarchyInfo.Node

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.