00001
00002
00003
00004
00005
00006
00007 #import <iTunesStore/ISStorePage.h>
00008
00009 @class NSMutableArray;
00010
00011 @interface ISSearch : ISStorePage
00012 {
00013 int _entityType;
00014 NSMutableArray *_predicates;
00015 }
00016
00017 + (id)searchForAlbumsOfArtist:(id)fp8;
00018 + (id)searchForQueryString:(id)fp8;
00019 + (id)searchForTracksOfAlbum:(id)fp8;
00020 + (id)searchForTrackWithID:(unsigned int)fp8;
00021 - (void)dealloc;
00022 - (void)searchUsingURL:(id)fp8;
00023 - (void)invalidate;
00024 - (BOOL)fetchIfNecessary;
00025 - (void)addPredicate:(id)fp8;
00026 - (void)setPredicates:(id)fp8;
00027 - (int)entityType;
00028 - (void)setEntityType:(int)fp8;
00029 - (id)_argumentsFromPredicates;
00030
00031 @end
00032