home *** CD-ROM | disk | FTP | other *** search
- /*
- Copyright (c) 1996, NeXT Software, Inc.
- All rights reserved.
-
- You may freely copy, distribute and reuse the code in this example.
- NeXT disclaims any warranty of any kind, expressed or implied,
- as to its fitness for any particular use.
- */
- #import <EOControl/EOControl.h>
-
- @interface Talent : NSObject
- {
- NSString *firstName;
- NSString *lastName;
- id photo;
- NSMutableArray *roles;
- NSMutableArray *moviesDirected;
- }
-
- - (NSArray *)moviesStarredIn;
-
- - (void)setFirstName:(NSString *)value;
- - (NSString *)firstName;
-
- - (void)setLastName:(NSString *)value;
- - (NSString *)lastName;
-
- - (void)setPhoto:(id)value;
- - (id)photo;
-
- - (NSArray *)roles;
- - (void)addToRoles:(id)object;
- - (void)removeFromRoles:(id)object;
-
- - (NSArray *)moviesDirected;
- - (void)addToMoviesDirected:(id)object;
- - (void)removeFromMoviesDirected:(id)object;
-
- @end
-