KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > incava > util > TimedEventSet


1 package org.incava.util;
2
3 /**
4  * A set of timed events.
5  */

6 public class TimedEventSet
7 {
8     public long duration = 0;
9
10     public void add(long duration)
11     {
12         this.duration += duration;
13     }
14 }
15
Popular Tags