Uses of Class
com.kitfox.svg.animation.TimeBase
-
Packages that use TimeBase Package Description com.kitfox.svg.animation com.kitfox.svg.animation.parser -
-
Uses of TimeBase in com.kitfox.svg.animation
Subclasses of TimeBase in com.kitfox.svg.animation Modifier and Type Class Description class
TimeCompound
This represents a summation of other time elements.class
TimeDiscrete
This is a time that represents a specific number of millisecondsclass
TimeIndefinite
This represents the indefinite (infinite) amount of time.class
TimeLookup
This is a time that represents a specific number of millisecondsclass
TimeSum
This is a time that represents a specific number of millisecondsFields in com.kitfox.svg.animation declared as TimeBase Modifier and Type Field Description private TimeBase
AnimationElement. beginTime
private TimeBase
AnimationElement. durTime
private TimeBase
AnimationElement. endTime
private TimeBase
AnimateBase. repeatDur
(package private) TimeBase
TimeSum. t1
(package private) TimeBase
TimeSum. t2
Fields in com.kitfox.svg.animation with type parameters of type TimeBase Modifier and Type Field Description (package private) java.util.List<TimeBase>
TimeCompound. componentTimes
This is a list of times.Methods in com.kitfox.svg.animation that return TimeBase Modifier and Type Method Description TimeBase
AnimationElement. getBeginTime()
TimeBase
AnimationElement. getDurTime()
TimeBase
AnimationElement. getEndTime()
TimeBase
AnimateBase. getRepeatDur()
protected static TimeBase
TimeBase. parseTimeComponent(java.lang.String text)
Methods in com.kitfox.svg.animation with parameters of type TimeBase Modifier and Type Method Description void
AnimationElement. setBeginTime(TimeBase beginTime)
void
AnimationElement. setDurTime(TimeBase durTime)
void
AnimationElement. setEndTime(TimeBase endTime)
void
AnimateBase. setRepeatDur(TimeBase repeatDur)
Constructors in com.kitfox.svg.animation with parameters of type TimeBase Constructor Description TimeSum(TimeBase t1, TimeBase t2, boolean add)
Creates a new instance of TimeDiscreteConstructor parameters in com.kitfox.svg.animation with type arguments of type TimeBase Constructor Description TimeCompound(java.util.List<TimeBase> timeBases)
Creates a new instance of TimeDiscrete -
Uses of TimeBase in com.kitfox.svg.animation.parser
Methods in com.kitfox.svg.animation.parser that return TimeBase Modifier and Type Method Description TimeBase
AnimTimeParser. Expr()
Expression structureTimeBase
AnimTimeParser. Sum()
TimeBase
AnimTimeParser. Term()
-