AspectAdaptor.st
changeset 85 141c920b1d3d
parent 83 97fd04d167c8
child 96 948318b2fbd4
--- a/AspectAdaptor.st	Mon Jul 03 04:47:44 1995 +0200
+++ b/AspectAdaptor.st	Sun Jul 23 04:25:16 1995 +0200
@@ -35,7 +35,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libview2/AspectAdaptor.st,v 1.4 1995-07-02 16:15:06 claus Exp $
+$Header: /cvs/stx/stx/libview2/AspectAdaptor.st,v 1.5 1995-07-23 02:25:16 claus Exp $
 "
 !
 
@@ -49,7 +49,7 @@
     Without an aspect adaptor, you needed to copy the individual
     values out-of and into multiple valueHolders.
     An aspectAdaptor makes this easier, by playing model with
-    vale/value: symbols towards the editField, and forwarding changes and
+    value/value: symbols towards the editField, and forwarding changes and
     updates to/from the complex model using different aspect symbols.
 
     Notice: this class was implemented using protocol information
@@ -142,6 +142,11 @@
      and setSelector to change it."
 
     ^ (self new) accessWith:getSelector assignWith:putSelector
+!
+
+subject:anObject sendsUpdates:aBoolean accessWith:getSel assignWith:putSel aspect:aspect
+    ^ (self subject:anObject sendsUpdates:aBoolean) 
+		accessWith:getSel assignWith:putSel aspect:aspect
 ! !
 
 !AspectAdaptor methodsFor:'change & update'!