00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSString;
00010
00011 @interface UIMovieAlternateTrack : NSObject
00012 {
00013 int _trackID;
00014 NSString *_languageCode;
00015 NSString *_name;
00016 }
00017
00018 + (id)createOffTrack;
00019 + (id)threeCharCodesForEncodedISO639_2_T:(id)fp8;
00020 - (id)initWithDictionary:(id)fp8;
00021 - (void)dealloc;
00022 - (id)humanReadableLanguage;
00023 - (id)languageCode;
00024 - (id)name;
00025 - (void)setName:(id)fp8;
00026 - (int)trackID;
00027
00028 @end
00029