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 : UIView <UITableViewDelegate , UITableViewDataSource>
00017
00018 -(instancetype)init;
00019 -(void)refreshTable;
00020
00021 -(void) start;
00022
00023 -(void)updateTractorInformation:(unsigned long)tractorID;
00024 -(void)readyTractoryID:(unsigned long)tractorID;
00025
00026
00027 -(void)updateTractorInformationImproved:(JDFieldArray *)tractor withThings:(NSArray *)things;
00028
00029 -(void)setTractorThresholdList:(JDThresholdList *)tractorThresholdList;
00030
00031 -(void)setDownloadingMessage;
00032 -(void)endDownloadingMessage;
00033 -(void)setDownloadFailedMessage;
00034 -(void)endDownloadFailedMessage;
00035
00036 @end
00037
00038 #endif