Model.st
changeset 795 f79766570dd7
parent 771 c04519bd946f
child 1236 bdd6c63288bd
equal deleted inserted replaced
794:432935e754e0 795:f79766570dd7
   217 
   217 
   218     "Created: 19.4.1996 / 10:28:53 / cg"
   218     "Created: 19.4.1996 / 10:28:53 / cg"
   219 !
   219 !
   220 
   220 
   221 interests
   221 interests
   222     "return a Collection of interests - nil if there is none.
   222     "return a Collection of interests - empty if there is none.
   223      Here, we use the normal dependents collection for interests."
   223      Here, we use the normal dependents collection for interests."
   224 
   224 
   225     ^ self dependents
   225     ^ self dependents
   226 
   226 
   227     "Created: 19.4.1996 / 12:28:23 / cg"
   227     "Created: / 19.4.1996 / 12:28:23 / cg"
   228     "Modified: 19.4.1996 / 18:07:12 / cg"
   228     "Modified: / 14.10.1996 / 22:19:58 / stefan"
   229     "Modified: 14.10.1996 / 22:19:58 / stefan"
   229     "Modified: / 30.1.1998 / 14:07:43 / cg"
   230 !
   230 !
   231 
   231 
   232 nonWeakDependents
   232 nonWeakDependents
   233     "return a Collection of dependents - nil if there is none.
   233     "return a Collection of dependents - empty if there is none.
   234      Since all dependencies are nonWeak in Model, this is a dummy."
   234      Since all dependencies are nonWeak in Model, this is a dummy."
   235 
   235 
   236     ^ self dependents
   236     ^ self dependents
   237 
   237 
   238     "Created: 19.4.1996 / 10:29:43 / cg"
   238     "Created: / 19.4.1996 / 10:29:43 / cg"
   239     "Modified: 19.4.1996 / 18:07:31 / cg"
   239     "Modified: / 30.1.1998 / 14:06:17 / cg"
   240 !
   240 !
   241 
   241 
   242 removeNonWeakDependent:anObject
   242 removeNonWeakDependent:anObject
   243     "make the argument, anObject be independent of the receiver.
   243     "make the argument, anObject be independent of the receiver.
   244      Since all dependencies are nonWeak in Model, this is simply
   244      Since all dependencies are nonWeak in Model, this is simply
   250 ! !
   250 ! !
   251 
   251 
   252 !Model class methodsFor:'documentation'!
   252 !Model class methodsFor:'documentation'!
   253 
   253 
   254 version
   254 version
   255     ^ '$Header: /cvs/stx/stx/libview2/Model.st,v 1.29 1998-01-26 11:58:12 cg Exp $'
   255     ^ '$Header: /cvs/stx/stx/libview2/Model.st,v 1.30 1998-01-30 13:23:25 cg Exp $'
   256 ! !
   256 ! !