00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef Augmented_Reality_Tractor_Maintenance_JDTractorInfoScrollView_h
00010 #define Augmented_Reality_Tractor_Maintenance_JDTractorInfoScrollView_h
00011
00012 #import <UIKit/UIKit.h>
00013 #import "JDThresholdList.h"
00014 #import "JDDatabaseManager.h"
00015
00016 @interface JDTractorInfoView : UITableView <UITableViewDelegate , UITableViewDataSource>
00017
00018 -(instancetype)init;
00019 -(void)refreshTable;
00020
00021 -(void)updateTractorInformation:(unsigned long)tractorID;
00022 -(void)readyTractoryID:(unsigned long)tractorID;
00023
00024
00025 -(void)updateTractorInformationImproved:(JDFieldArray *)tractor withThings:(NSArray *)things;
00026
00027 -(void)setTractorThresholdList:(JDThresholdList *)tractorThresholdList;
00028
00029 -(void)setDownloadingMessage;
00030 -(void)endDownloadingMessage;
00031 -(void)setDownloadFailedMessage;
00032 -(void)endDownloadFailedMessage;
00033
00034
00035 @property UIRefreshControl *refreshControl;
00036
00037 @end
00038
00039 #endif