home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep 4.2J (Developer)
/
os42jdev.iso
/
NextDeveloper
/
Examples
/
AppKit
/
Draw
/
graphicsUndo.subproj
/
ArrowGraphicsChange.m
< prev
next >
Wrap
Text File
|
1995-11-28
|
438b
|
32 lines
#import "drawundo.h"
@interface ArrowGraphicsChange(PrivateMethods)
@end
@implementation ArrowGraphicsChange
- initGraphicView:aGraphicView lineArrow:(int)anArrowValue
{
[super initGraphicView:aGraphicView];
arrowValue = anArrowValue;
return self;
}
- (NSString *)changeName
{
return ARROW_OP;
}
- (Class)changeDetailClass
{
return [ArrowChangeDetail class];
}
- (int)lineArrow
{
return arrowValue;
}
@end