ImageSequence.st
author Claus Gittinger <cg@exept.de>
Fri, 27 Jun 1997 19:24:28 +0200
changeset 631 5e1743a03c89
parent 617 20a86b0e23d2
child 886 1f614850a058
permissions -rw-r--r--
checkin from browser

"
 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.


"

Object subclass:#ImageSequence
	instanceVariableNames:'frames'
	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 methodsFor:'accessing'!

frames
    "return the value of the instance variable 'frames' (automatically generated)"

    ^ frames

    "Created: 24.6.1997 / 20:43:20 / cg"
!

frames:something
    "set the value of the instance variable 'frames' (automatically generated)"

    frames := something.

    "Created: 24.6.1997 / 20:43:21 / cg"
! !

!ImageSequence class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview2/ImageSequence.st,v 1.2 1997-06-27 17:24:28 cg Exp $'
! !