org.apache.batik.anim.timing
public class Interval extends Object
| Field Summary | |
|---|---|
| protected float | begin
The begin time for the interval. |
| protected LinkedList | beginDependents
The list of {@link InstanceTime} objects that are dependent
on the begin time of this Interval. |
| protected InstanceTime | beginInstanceTime
The InstanceTime that defined the begin time of the current interval. |
| protected float | end
The end time for the interval. |
| protected LinkedList | endDependents
The list of {@link InstanceTime} objects that are dependent
on the end time of this Interval. |
| protected InstanceTime | endInstanceTime
The InstanceTime that defined the end time of the current interval. |
| Constructor Summary | |
|---|---|
| Interval(float begin, float end, InstanceTime beginInstanceTime, InstanceTime endInstanceTime)
Creates a new Interval. | |
| Method Summary | |
|---|---|
| float | getBegin()
Returns the begin time of this interval. |
| InstanceTime | getBeginInstanceTime()
Returns the {@link InstanceTime} that defined the begin time of this
interval. |
| float | getEnd()
Returns the end time of this interval. |
| InstanceTime | getEndInstanceTime()
Returns the {@link InstanceTime} that defined the end time of this
interval. |
| String | toString()
Returns a string representation of this Interval. |
Parameters: begin the begin time of the Interval end the end time of the Interval beginInstanceTime the {@link InstanceTime} object that defined the begin time of the Interval endInstanceTime the {@link InstanceTime} object that defined the end time of the Interval