- All Known Implementing Classes:
ImageSequenceController
public interface ImageSequenceControl
Controller for an
ImageSequence
which grants write only access to the
sequence.- Author:
- Dominick Leppich
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(int index, VideoImage image) Add aVideoImage
at a specified position in the sequence.void
add
(VideoImage image) Add aVideoImage
at the end of the sequence.void
clear()
Clear the sequence of images.remove
(int index) Remove the image at the specified position.
-
Method Details
-
add
Add aVideoImage
at the end of the sequence.- Parameters:
image
- -VideoImage
-
add
Add aVideoImage
at a specified position in the sequence.- Parameters:
index
- - Index to insert the imageimage
- -VideoImage
-
clear
void clear()Clear the sequence of images. -
remove
Remove the image at the specified position.- Parameters:
index
- - Index of the image to remove- Returns:
- The
VideoImage
which was removed
-