Package net.sourceforge.processdash.process

Examples of net.sourceforge.processdash.process.ProcessUtil


        // this method to do nothing.
    }

    @Override
    public JFreeChart createChart() {
        ProcessUtil process = new ProcessUtil(getDataContext());
        List<String> phases = getPhaseList(process);

        List timeLogEntries = getTimeLogEntries();
        GapSkipTracker gaps = createGapTracker();
        IntervalXYDataset dataset = createDataset(process, phases,
View Full Code Here


    private void initSizeTypeData() {
        StringBuffer options = new StringBuffer("<option>\n");
        StringBuffer sizeData = new StringBuffer(
            "<script>DashSET.itemSizes = { \n");

        String sizeUnits = new ProcessUtil(getDataContext()).getSizeUnits();
        SortedMap<String, SizePerItemTable> tables = SizePerItemTable
                .getDefinedTables(getDataRepository(), sizeUnits);
        for (Entry<String, SizePerItemTable> e : tables.entrySet()) {
            String sizePerItemTableName = e.getKey();
            SizePerItemTable sizePerItemTable = e.getValue();
View Full Code Here

    @Override
    protected void writeContents() throws IOException {
        out.println(HEADER);
       
        DataContext data = getDataContext();
        ProcessUtil process = new ProcessUtil(data);
        List phases = process.getProcessListPlain("Phase_List");
        phases = process.filterPhaseList(phases);

        List<String> missingPhases = new ArrayList<String>();
        for (Iterator i = phases.iterator(); i.hasNext();) {
            String phase = (String) i.next();
            if (getBoolParam("Check" + phase)) {
View Full Code Here

        defectsWithNoDescription = new ArrayList();
        failureDefectsWithNoFixNumber = new ArrayList();
        samePhaseDefects = new ArrayList();
        misorderedDefects = new ArrayList();

        ProcessUtil procUtil = new ProcessUtil(getDataContext());
        phaseList = procUtil.getProcessListPlain("Phase_List");
        phaseList.add(AFTER_DEVELOPMENT);
        failurePhaseList = procUtil.getProcessListPlain("Failure_Phase_List");
        failurePhaseList.add(AFTER_DEVELOPMENT);

        runDefectAnalysis();

        out.println(HEADER);
View Full Code Here

        return Compiler.escapeLiteral(str);
    }
   
    protected ProcessUtil getProcessUtil() {
        if (processUtil == null)
            processUtil = new ProcessUtil(getDataContext());
        return processUtil;
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.process.ProcessUtil

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.