DictionaryAdaptor.st
branchjv
changeset 3855 1db7742d33ad
parent 2745 c46c41c89a78
equal deleted inserted replaced
3854:4afd107bc911 3855:1db7742d33ad
       
     1 "
       
     2  COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libview2' }"
    12 "{ Package: 'stx:libview2' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
     2 
    15 
     3 ProtocolAdaptor subclass:#DictionaryAdaptor
    16 ProtocolAdaptor subclass:#DictionaryAdaptor
     4 	instanceVariableNames:'myAspect'
    17 	instanceVariableNames:'myAspect'
     5 	classVariableNames:''
    18 	classVariableNames:''
     6 	poolDictionaries:''
    19 	poolDictionaries:''
     7 	category:'Interface-Support-Models'
    20 	category:'Interface-Support-Models'
     8 !
    21 !
     9 
    22 
    10 !DictionaryAdaptor class methodsFor:'documentation'!
    23 !DictionaryAdaptor class methodsFor:'documentation'!
       
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) Claus Gittinger / 2006 by eXept Software AG
       
    28               All Rights Reserved
       
    29 
       
    30  This software is furnished under a license and may be used
       
    31  only in accordance with the terms of that license and with the
       
    32  inclusion of the above copyright notice.   This software may not
       
    33  be provided or otherwise made available to, or used by, any
       
    34  other person.  No title to or ownership of the software is
       
    35  hereby transferred.
       
    36 "
       
    37 !
    11 
    38 
    12 documentation
    39 documentation
    13 "
    40 "
    14     Similar to AspectAdaptor, but accesses a Dictionary instead of
    41     Similar to AspectAdaptor, but accesses a Dictionary instead of
    15     a classes instance variables.
    42     a classes instance variables.
   164 !DictionaryAdaptor class methodsFor:'documentation'!
   191 !DictionaryAdaptor class methodsFor:'documentation'!
   165 
   192 
   166 version
   193 version
   167     ^ '$Header: /cvs/stx/stx/libview2/DictionaryAdaptor.st,v 1.2 2009-09-18 16:14:09 cg Exp $'
   194     ^ '$Header: /cvs/stx/stx/libview2/DictionaryAdaptor.st,v 1.2 2009-09-18 16:14:09 cg Exp $'
   168 ! !
   195 ! !
       
   196