TimedEventSet.java :  » Code-Analyzer » doctorj » org » incava » util » Java Open Source

Java Open Source » Code Analyzer » doctorj 
doctorj » org » incava » util » TimedEventSet.java
package org.incava.util;

/**
 * A set of timed events.
 */
public class TimedEventSet
{
    public long duration = 0;

    public void add(long duration)
    {
        this.duration += duration;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.