home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / RB3641.ZIP / EX1 / TESTCOLL.CLS < prev    next >
Text File  |  1991-12-05  |  341b  |  20 lines

  1.  
  2. OrderedCollection subclass: #TestOdCollection
  3.   instanceVariableNames: ''
  4.   classVariableNames: ''
  5.   poolDictionaries: ''  !
  6.  
  7.  
  8. !TestOdCollection class methods ! !
  9.  
  10.  
  11.  
  12. !TestOdCollection methods !
  13.    
  14. readList
  15.         "comment"
  16.     | temporaries |
  17.     self add: 'Row 1';
  18.            add: 'Row 2';
  19.            add: 'Row 3'.! !
  20.