My Project
 All Classes Functions Properties
CBItem.h
1 /*******************************************************************************
2  * Copyright 2013 ClearBlade, Inc
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Any redistribution of this program in any form must include this copyright
9  *******************************************************************************/
10 
11 #import <Foundation/Foundation.h>
15 @interface CBItem : NSObject
19 @property (strong, nonatomic) NSMutableDictionary *data;
23 @property (strong, nonatomic) NSString *collectionID;
30 -(CBItem *) initWithData: (NSDictionary *) inputData collectionID:(NSString *) colID;
35 -(void) save;
40 -(void) refresh;
45 -(void) destroy;
51 -(id) getValueFor: (NSString *)key;
52 
53 @end
void refresh()
Definition: CBItem.m:45
NSMutableDictionary * data
Definition: CBItem.h:19
NSString * collectionID
Definition: CBItem.h:23
void save()
Definition: CBItem.m:31
Definition: CBItem.h:15
void destroy()
Definition: CBItem.m:53