01: package org.incava.util; 02: 03: /** 04: * A set of timed events. 05: */ 06: public class TimedEventSet { 07: public long duration = 0; 08: 09: public void add(long duration) { 10: this.duration += duration; 11: } 12: }