home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / InterfaceBuilder / ProgressViewPalette / ProgressViewPalette.m < prev    next >
Text File  |  1997-01-20  |  802b  |  35 lines

  1. /*
  2.  * ProgressViewPalette.m
  3.  * Copyright (c) 1997 NeXT Software, Inc.
  4.  * All rights reserved.
  5.  * Written by James DiPalma.
  6.  *
  7.  * You may freely copy, distribute and reuse the code in this example.
  8.  * NeXT disclaims any warranty of any kind, expressed or implied,
  9.  * as to its fitness for any particular use.
  10.  */
  11.  
  12. #import "ProgressViewPalette.h"
  13.  
  14. @implementation ProgressViewPalette
  15.  
  16. - (void)finishInstantiate
  17. {
  18.     /* `finishInstantiate' can be used to associate non-view objects with
  19.      * a view in the palette's nib.  For example:
  20.      *   [self associateObject:aNonUIObject ofType:IBObjectPboardType
  21.      *                withView:aView];
  22.      */
  23. }
  24.  
  25. @end
  26.  
  27. @implementation ProgressView (ProgressViewPaletteInspector)
  28.  
  29. - (NSString *)inspectorClassName
  30. {
  31.     return @"ProgressViewInspector";
  32. }
  33.  
  34. @end
  35.