Class BezierList
- java.lang.Object
-
- org.processmining.plugins.inductiveVisualMiner.animation.BezierList
-
- Type Parameters:
T-
public class BezierList extends java.lang.ObjectKeep a set of elements. The index is kept.- Author:
- sleemans
-
-
Constructor Summary
Constructors Constructor Description BezierList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intadd(com.kitfox.svg.animation.Bezier bezier, double startOpacity, double endOpacity)Adds an object to the list and returns the index at which it was inserted.voidcleanUp()removes temporary storagecom.kitfox.svg.animation.BeziergetBezier(int index)doublegetEndOpacity(int index)intgetNumberOfBeziers()doublegetStartOpacity(int index)
-
-
-
Method Detail
-
add
public int add(com.kitfox.svg.animation.Bezier bezier, double startOpacity, double endOpacity)Adds an object to the list and returns the index at which it was inserted.- Parameters:
bezier-- Returns:
-
getBezier
public com.kitfox.svg.animation.Bezier getBezier(int index)
-
getStartOpacity
public double getStartOpacity(int index)
-
getEndOpacity
public double getEndOpacity(int index)
-
getNumberOfBeziers
public int getNumberOfBeziers()
-
cleanUp
public void cleanUp()
removes temporary storage
-
-