home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / WebObjectsDoc_HTML / Reuse / ReusableComponentsEx / CheckBoxMatrixEx.wo / CheckBoxMatrixEx.wos < prev   
Encoding:
Text File  |  1996-02-29  |  333 b   |  21 lines

  1. ////////////////////////
  2. //  CheckBoxMatrix
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. id aChoiceList;
  8. id aBoatStringList;
  9.  
  10. - awake
  11. {
  12.     id aMutableArray;
  13.     aBoatStringList = @("Dinghy", "Cruiser", "Sail", "Clipper");
  14.     aChoiceList = [[@("Dinghy", "Sail") mutableCopy] autorelease];
  15. }
  16.  
  17. - displayChoices
  18. {
  19.    return self;
  20. }
  21.