home *** CD-ROM | disk | FTP | other *** search
- #pragma .h #import <objc/Object.h>
- #import "IBExample.h"
- #import <appkit/Window.h>
- #import <appkit/ScrollView.h>
- #import <appkit/Text.h>
-
- @implementation IBExample:Object
- { id theText ;
- }
-
- -setText: (char *) aString ;
- { // put theText into textView
- [theText setText: aString] ;
- return self ;
- }
-
-
- -setTheText: anObject ;
- { theText = [anObject docView] ;
- return self ;
- }
-
- @end