home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Examples / AppKit / Draw / graphicsUndo.subproj / LineJoinGraphicsChange.m < prev    next >
Text File  |  1995-11-28  |  442b  |  32 lines

  1. #import "drawundo.h"
  2.  
  3. @interface LineJoinGraphicsChange(PrivateMethods)
  4.  
  5. @end
  6.  
  7. @implementation LineJoinGraphicsChange
  8.  
  9. - initGraphicView:aGraphicView lineJoin:(int)aJoinValue
  10. {
  11.     [super initGraphicView:aGraphicView];
  12.     joinValue = aJoinValue;
  13.     return self;
  14. }
  15.  
  16. - (NSString *)changeName
  17. {
  18.     return LINEJOIN_OP;
  19. }
  20.  
  21. - (int)lineJoin
  22. {
  23.     return joinValue;
  24. }
  25.  
  26. - (Class)changeDetailClass
  27. {
  28.     return [LineJoinChangeDetail class];
  29. }
  30.  
  31. @end
  32.