home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Source / MiscInspectorKit / MiscMultiSelInspector.m < prev    next >
Encoding:
Text File  |  1994-03-08  |  565 b   |  31 lines

  1. /* MiscMultiSelInspector.m                 
  2.  *
  3.  * This default inspector comes up when there is a Multi Selection.
  4.  *
  5.  * For more interface-info see the header file. In depth information
  6.  * can be found here in the source-code.
  7.  *
  8.  * Written by:         Thomas Engel
  9.  * Created:            09.02.1994 (Copyleft)
  10.  * Last modified:     09.02.1994
  11.  */
  12.  
  13. #import <misckit/misckit.h>
  14.  
  15. @implementation MiscMultiSelInspector
  16.  
  17. - (BOOL)doesHandleSelection
  18. {
  19.     if( [self selectionCount] > 1 )
  20.             return YES;
  21.     else    return NO;
  22. }
  23.  
  24. @end
  25.  
  26. /*
  27.  * History: 09.02.1994 First code entered.
  28.  *
  29.  *
  30.  * Bugs: - No;
  31.  */