Package net.sourceforge.processdash.log.time

Examples of net.sourceforge.processdash.log.time.ModifiableTimeLog



    private void performDataRename(PendingDataChange p) {
        DefectLogEditor.rename(oldProps, useProps, p.oldPrefix, p.newPrefix,
                dashboard);
        ModifiableTimeLog timeLog = (ModifiableTimeLog) dashboard.getTimeLog();
        timeLog.addModification(PathRenamer.getRenameModification(p.oldPrefix,
                p.newPrefix));
        dashboard.getData().renameData(p.oldPrefix, p.newPrefix);
    }
View Full Code Here


     */
    protected void renameData(PendingDataChange p) {
        DashHierarchy newHierarchy = dashboard.getHierarchy();
        DefectLogEditor.rename(origHierarchy, newHierarchy, p.oldPrefix,
                p.newPrefix, dashboard);
        ModifiableTimeLog timeLog = (ModifiableTimeLog) dashboard.getTimeLog();
        timeLog.addModification(PathRenamer.getRenameModification(p.oldPrefix,
                p.newPrefix));
        dashboard.getData().renameData(p.oldPrefix, p.newPrefix);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.log.time.ModifiableTimeLog

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.