checkin from browser
authorClaus Gittinger <cg@exept.de>
Fri, 27 Jun 1997 19:24:28 +0200
changeset 631 5e1743a03c89
parent 630 48657c687a8b
child 632 844b1aaf3eeb
checkin from browser
ImageSequence.st
--- a/ImageSequence.st	Fri Jun 27 18:47:27 1997 +0200
+++ b/ImageSequence.st	Fri Jun 27 19:24:28 1997 +0200
@@ -53,8 +53,26 @@
 "
 ! !
 
+!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.1 1997-06-24 11:16:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ImageSequence.st,v 1.2 1997-06-27 17:24:28 cg Exp $'
 ! !