Mobile API Reference  MicroStrategy 2019
DataProviderProtocol.h
Go to the documentation of this file.
1 //
2 // DataProviderProtocol.h
3 // MicroStrategyMobile
4 //
5 // Created by kyang on 3/5/11.
6 // Copyright 2011 MicroStrategy Inc. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @class MSIPropertyGroup;
12 @class MSIHeader;
13 @class MSIMetricValue;
14 @class MSIDataElement;
15 
16 @protocol MSIDataProviderProtocol<NSObject>
17 @optional
18 - (MSIPropertyGroup*) getCellPropertyGroupAtRow:(NSInteger)rowIndex atColumn:(NSInteger)colIndex;
19 - (MSIPropertyGroup*) getPropertyGroupForHeader:(MSIHeader*)header;
20 - (NSMutableArray*) getHeaderElements:(MSIHeader*)iHeader;
21 - (NSString*) getFormattedMetricValue:(MSIMetricValue*)iMetricValue;
22 - (NSString*) getDataElementID:(MSIDataElement*)iDataElement;
26 - (NSString*)visualizationPropertyByName:(NSString*)propertyName;
30 - (NSString*) error;
31 @end
Definition: MSIDataElement.h:15
Definition: Header.h:12
Definition: MetricValue.h:12
Definition: DataProviderProtocol.h:16
Definition: MSIPropertyGroup.h:16