PluggableAdaptor.st
changeset 2383 8b55b558093b
parent 2378 d2cfc503d936
child 2619 4b16e812918f
equal deleted inserted replaced
2382:9c27d7006631 2383:8b55b558093b
   286      is called when the adaptor receives an update message from the model, 
   286      is called when the adaptor receives an update message from the model, 
   287      and should return true if a new value should be fetched from the model."
   287      and should return true if a new value should be fetched from the model."
   288 
   288 
   289     getBlock := newGetBlock.
   289     getBlock := newGetBlock.
   290     putBlock := newPutBlock.
   290     putBlock := newPutBlock.
   291     self assert:newUpdateBlock numArgs == 3.
   291     self assert:(newUpdateBlock isNil or:[newUpdateBlock numArgs == 3]).
   292     updateBlock := newUpdateBlock.
   292     updateBlock := newUpdateBlock.
   293 
   293 
   294     "Modified: 21.2.1997 / 18:18:38 / cg"
   294     "Modified: 21.2.1997 / 18:18:38 / cg"
   295 !
   295 !
   296 
   296 
   368 ! !
   368 ! !
   369 
   369 
   370 !PluggableAdaptor class methodsFor:'documentation'!
   370 !PluggableAdaptor class methodsFor:'documentation'!
   371 
   371 
   372 version
   372 version
   373     ^ '$Header: /cvs/stx/stx/libview2/PluggableAdaptor.st,v 1.19 2008-02-04 09:32:48 cg Exp $'
   373     ^ '$Header: /cvs/stx/stx/libview2/PluggableAdaptor.st,v 1.20 2008-02-05 15:03:44 cg Exp $'
   374 ! !
   374 ! !