Package net.sourceforge.processdash.log

Examples of net.sourceforge.processdash.log.ChangeFlagged


        if (tle == null)
            refreshFilteredEntries();

        else {
            ChangeFlagged cf = (ChangeFlagged) tle;
            if (cf.getChangeFlag() == ChangeFlagged.ADDED)
                maybeAddTimeLogEntry(tle);
            else if (cf.getChangeFlag() == ChangeFlagged.MODIFIED)
                maybeModifyTimeLogEntry(tle);
            else if (cf.getChangeFlag() == ChangeFlagged.DELETED)
                maybeDeleteTimeLogEntry(tle);
        }
    }
View Full Code Here


            TimeLogEntry result = (TimeLogEntry) super.next();
            return new TimeLogEntryVO(result, ChangeFlagged.NO_CHANGE);
        }

        protected boolean includeInResults(Object o) {
            ChangeFlagged tle = (ChangeFlagged) o;
            return (tle.getChangeFlag() == ChangeFlagged.ADDED);
        }
View Full Code Here

            return result;
        }

        protected boolean includeInResults(Object o) {
            TimeLogEntry tle = (TimeLogEntry) o;
            ChangeFlagged mod = (ChangeFlagged) getModification(tle.getID());
            // filter out deleted entries in the parent map.
            return (mod == null || mod.getChangeFlag() != ChangeFlagged.DELETED);
        }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.log.ChangeFlagged

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.