ImageSequence.st
changeset 3917 26886da33871
parent 887 5e198d0881fa
equal deleted inserted replaced
3916:c42311c324e6 3917:26886da33871
     6  only in accordance with the terms of that license and with the
     6  only in accordance with the terms of that license and with the
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
       
    11 "
       
    12 "{ Package: 'stx:libview2' }"
    11 
    13 
    12 
    14 "{ NameSpace: Smalltalk }"
    13 "
       
    14 
    15 
    15 OrderedCollection subclass:#ImageSequence
    16 OrderedCollection subclass:#ImageSequence
    16 	instanceVariableNames:'loop iterationCount'
    17 	instanceVariableNames:'loop iterationCount'
    17 	classVariableNames:''
    18 	classVariableNames:''
    18 	poolDictionaries:''
    19 	poolDictionaries:''
    39 
    40 
    40 documentation
    41 documentation
    41 "
    42 "
    42     An ImageSequence represents a sequence of images as contained
    43     An ImageSequence represents a sequence of images as contained
    43     in an animated gif or in a movie file.
    44     in an animated gif or in a movie file.
    44     ImageSequence itself is abstract and possibly redefined to hold
    45     ImageSequence may be redefined to hold
    45     additional attributes by specific movie representations.
    46     additional attributes by specific movie representations.
    46 
    47 
    47     [author:]
    48     [author:]
    48         Claus Gittinger
    49         Claus Gittinger
    49 
    50 
    96 ! !
    97 ! !
    97 
    98 
    98 !ImageSequence class methodsFor:'documentation'!
    99 !ImageSequence class methodsFor:'documentation'!
    99 
   100 
   100 version
   101 version
   101     ^ '$Header: /cvs/stx/stx/libview2/ImageSequence.st,v 1.4 1998-04-01 12:54:59 cg Exp $'
   102     ^ '$Header$'
   102 ! !
   103 ! !
       
   104