ImageSequence.st
author Claus Gittinger <cg@exept.de>
Wed, 01 Apr 1998 14:46:30 +0200
changeset 886 1f614850a058
parent 631 5e1743a03c89
child 887 5e198d0881fa
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1997 by eXept Software AG 
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.


"

OrderedCollection subclass:#ImageSequence
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Graphics-Images'
!

!ImageSequence class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1997 by eXept Software AG 
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.


"
!

documentation
"
    An ImageSequence represents a sequence of images as contained
    in an animated gif or in a movie file.
    ImageSequence itself is abstract and possibly redefined to hold
    additional attributes by specific movie representations.

    [author:]
        Claus Gittinger

    [see also:]
        ImageFrame
        Image
"
! !

!ImageSequence class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview2/ImageSequence.st,v 1.3 1998-04-01 12:46:30 cg Exp $'
! !