home *** CD-ROM | disk | FTP | other *** search
-
- id componentNames;
- id currentComponentName;
-
- - initComponentNames
- {
- id aPlistString;
-
- id aPathName = [WOApp _pathForResource: @"Components" ofType: @"plist"
- inComponentWithName: @"ComponentChoice"];
- aPlistString = [NSString stringWithContentsOfFile: aPathName];
- componentNames = [aPlistString propertyList];
- }
-
- - awake
- {
- [self initComponentNames];
- }
-
- - currentExampleName
- {
- return [NSString stringWithFormat: @"%@Ex", currentComponentName];
- }
-
- - setCurrentExampleName:aValue
- {
- return nil;
- }
-