Skip to content

Commit 101faed

Browse files
committed
change renamed classes in other files, break swift sample
1 parent 717d394 commit 101faed

File tree

8 files changed

+1017
-239
lines changed

8 files changed

+1017
-239
lines changed

FirebaseDatabaseUI/FUIArrayDelegate.h

Lines changed: 17 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -21,54 +21,45 @@
2121
@class FUIArray;
2222

2323
/**
24-
* A protocol to allow instances of FirebaseArray to raise events through a
25-
* delegate. Raises all
26-
* Firebase events except FIRDataEventTypeValue.
24+
* A protocol to allow instances of FUIArray to raise events through a
25+
* delegate. Raises all Firebase events except FIRDataEventTypeValue.
2726
*/
2827
@protocol FUIArrayDelegate<NSObject>
2928

3029
@optional
3130

3231
/**
33-
* Delegate method which is called whenever an object is added to a
34-
* FirebaseArray. On a
35-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
36-
* [FIRDataEventTypeChildAdded](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
37-
* event being raised.
38-
* @param object The object added to the FirebaseArray
32+
* Delegate method which is called whenever an object is added to an FUIArray.
33+
* On a FUIArray synchronized to a Firebase reference, this corresponds to an
34+
* @c FIRDataEventTypeChildAdded event being raised.
35+
* @param object The object added to the FUIArray
3936
* @param index The index the child was added at
4037
*/
4138
- (void)array:(FUIArray *)array didAddObject:(id)object atIndex:(NSUInteger)index;
4239

4340
/**
44-
* Delegate method which is called whenever an object is chinged in a
45-
* FirebaseArray. On a
46-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
47-
* [FIRDataEventTypeChildChanged](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
48-
* event being raised.
49-
* @param object The object that changed in the FirebaseArray
41+
* Delegate method which is called whenever an object is changed in an
42+
* FUIArray. On a FUIArray synchronized to a Firebase reference, this
43+
* corresponds to an @c FIRDataEventTypeChildChanged event being raised.
44+
* @param object The object that changed in the FUIArray
5045
* @param index The index the child was changed at
5146
*/
5247
- (void)array:(FUIArray *)array didChangeObject:(id)object atIndex:(NSUInteger)index;
5348

5449
/**
55-
* Delegate method which is called whenever an object is removed from a
56-
* FirebaseArray. On a
57-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
58-
* [FIRDataEventTypeChildRemoved](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
59-
* event being raised.
60-
* @param object The object removed from the FirebaseArray
50+
* Delegate method which is called whenever an object is removed from an
51+
* FUIArray. On a FUIArray synchronized to a Firebase reference, this
52+
* corresponds to an @c FIRDataEventTypeChildRemoved event being raised.
53+
* @param object The object removed from the FUIArray
6154
* @param index The index the child was removed at
6255
*/
6356
- (void)array:(FUIArray *)array didRemoveObject:(id)object atIndex:(NSUInteger)index;
6457

6558
/**
6659
* Delegate method which is called whenever an object is moved within a
67-
* FirebaseArray. On a
68-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
69-
* [FIRDataEventTypeChildMoved](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
70-
* event being raised.
71-
* @param object The object that has moved locations in the FirebaseArray
60+
* FUIArray. On a FUIArray synchronized to a Firebase reference, this
61+
* corresponds to an @c FIRDataEventTypeChildMoved event being raised.
62+
* @param object The object that has moved locations in the FUIArray
7263
* @param fromIndex The index the child is being moved from
7364
* @param toIndex The index the child is being moved to
7465
*/

FirebaseDatabaseUITests/FirebaseDatabaseTestUtils.h

Lines changed: 0 additions & 76 deletions
This file was deleted.

FirebaseDatabaseUITests/FirebaseDatabaseTestUtils.m

Lines changed: 0 additions & 135 deletions
This file was deleted.

0 commit comments

Comments
 (0)