home *** CD-ROM | disk | FTP | other *** search
-
- /* Generated by Interface Builder */
-
- #import "MyObject.h"
- #import <appkit/Control.h>
- #import <appkit/ScrollView.h>
- #import <appkit/Text.h>
- #import <strings.h>
-
- @implementation MyObject
-
- - setTextOutlet:anObject
- {
- textOutlet = anObject;
- return self;
- }
-
- - buttonAction:sender
- {
- strcat(myString, "hello, world\n");
- scrollText = [textOutlet docView];
- [scrollText setText:myString];
- return self;
- }
-
-
- @end
-