Mobile API Reference  MicroStrategy 2019
ElementSelectionsController.h
Go to the documentation of this file.
1 //
2 // ElementSelectionsController.h
3 // MSTRMobile
4 //
5 // Created by Firat Alpergin on 3/16/10.
6 // Copyright 2010 MicroStrategy. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import "OperatorCallback.h"
11 
12 @class PromptHelper, ObjectInfo, Elements, ElementListController;
13 
14 @interface ElementSelectionsController : UITableViewController <OperatorCallback> {
15  NSMutableArray *elementList;
17  ObjectInfo* promptAttribute;
18  NSString* shortFilterXML;
19  NSArray* suggestedAnswers;
20  NSString* barcodeFormId;
21  NSString* geoMapping;
22  NSString* geoAttributeId;
23  NSString* dataSourcesXML;
24 
28 }
29 
30 @property (nonatomic, retain) NSMutableArray *elementList;
31 @property (nonatomic, assign) PromptHelper *promptHelper;
32 @property (nonatomic, retain) ObjectInfo* promptAttribute;
33 @property (nonatomic, retain) NSString* shortFilterXML;
34 @property (nonatomic, retain) NSArray* suggestedAnswers;
35 @property (nonatomic, retain) ElementListController* currentController;
36 @property (nonatomic, copy) NSString* barcodeFormId;
37 @property (nonatomic, copy) NSString* geoMapping;
38 @property (nonatomic, copy) NSString* geoAttributeId;
39 @property (nonatomic, copy) NSString* dataSourcesXML;
40 
41 -(void)elementEditDone:(BOOL)shouldUpdate;
42 
43 @end
signed char BOOL
Definition: PDCwtypes.h:101
Definition: PromptHelper.h:92
NSString * geoAttributeId
Definition: ElementSelectionsController.h:22
NSString * geoMapping
Definition: ElementSelectionsController.h:21
PromptHelper * promptHelper
Definition: ElementSelectionsController.h:16
NSString * dataSourcesXML
Definition: ElementSelectionsController.h:23
PromptStepperOperatorView * deleteView
Definition: ElementSelectionsController.h:26
ObjectInfo * promptAttribute
Definition: ElementSelectionsController.h:17
ElementListController * currentController
Definition: ElementSelectionsController.h:27
NSArray * suggestedAnswers
Definition: ElementSelectionsController.h:19
NSString * shortFilterXML
Definition: ElementSelectionsController.h:18
NSString * barcodeFormId
Definition: ElementSelectionsController.h:20
NSMutableArray * elementList
Definition: ElementSelectionsController.h:15
PromptStepperOperatorView * addView
Definition: ElementSelectionsController.h:25
Definition: ElementSelectionsController.h:14
Definition: PromptStepperOperatorView.h:27
Definition: ElementListController.h:23
Definition: OperatorCallback.h:11