nano-store 0.3.12 → 0.3.13
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/.rvmrc +1 -1
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/nano_store.rb +1 -1
- data/lib/nano_store/store_extension.rb +16 -16
- data/lib/nano_store/version.rb +1 -1
- data/nano-store.gemspec +2 -2
- data/spec/nano_store_spec.rb +2 -2
- data/vendor/Pods/Pods-Acknowledgements.markdown +32 -0
- data/vendor/Pods/Pods-Acknowledgements.plist +62 -0
- data/vendor/Pods/Pods-resources.sh +8 -4
- data/vendor/Pods/Pods.bridgesupport +625 -625
- data/vendor/Pods/Pods.xcconfig +3 -3
- data/vendor/Pods/PodsDummy_Pods.m +4 -0
- metadata +31 -14
- data/Gemfile.lock +0 -24
data/.gitignore
CHANGED
data/.rvmrc
CHANGED
@@ -1 +1 @@
|
|
1
|
-
rvm ruby-1.9.3-p194
|
1
|
+
rvm ruby-1.9.3-p194
|
data/README.md
CHANGED
data/Rakefile
CHANGED
data/lib/nano_store.rb
CHANGED
@@ -16,14 +16,14 @@ class NSFNanoStore
|
|
16
16
|
def close
|
17
17
|
error_ptr = Pointer.new(:id)
|
18
18
|
closed = self.closeWithError(error_ptr)
|
19
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
19
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
20
20
|
closed
|
21
21
|
end
|
22
22
|
|
23
23
|
def open
|
24
24
|
error_ptr = Pointer.new(:id)
|
25
25
|
opened = self.openWithError(error_ptr)
|
26
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
26
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
27
27
|
opened
|
28
28
|
end
|
29
29
|
|
@@ -40,14 +40,14 @@ class NSFNanoStore
|
|
40
40
|
else
|
41
41
|
self.addObject(objects, error:error_ptr)
|
42
42
|
end
|
43
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
43
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
44
44
|
self
|
45
45
|
end
|
46
46
|
|
47
47
|
def +(object)
|
48
48
|
error_ptr = Pointer.new(:id)
|
49
49
|
self.addObject(object, error:error_ptr)
|
50
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
50
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
51
51
|
self
|
52
52
|
end
|
53
53
|
|
@@ -59,7 +59,7 @@ class NSFNanoStore
|
|
59
59
|
else
|
60
60
|
result = self.removeObject(objects, error:error_ptr)
|
61
61
|
end
|
62
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
62
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
63
63
|
result
|
64
64
|
end
|
65
65
|
|
@@ -67,7 +67,7 @@ class NSFNanoStore
|
|
67
67
|
def delete_keys(keys)
|
68
68
|
error_ptr = Pointer.new(:id)
|
69
69
|
success = self.store.removeObjectsWithKeysInArray(keys, error: error_ptr)
|
70
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
70
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
71
71
|
result
|
72
72
|
end
|
73
73
|
|
@@ -76,7 +76,7 @@ class NSFNanoStore
|
|
76
76
|
def clear
|
77
77
|
error_ptr = Pointer.new(:id)
|
78
78
|
result = self.removeAllObjectsFromStoreAndReturnError(error_ptr)
|
79
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
79
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
80
80
|
result
|
81
81
|
end
|
82
82
|
|
@@ -85,7 +85,7 @@ class NSFNanoStore
|
|
85
85
|
def delete_keys(keys)
|
86
86
|
error_ptr = Pointer.new(:id)
|
87
87
|
result = self.removeObjectsWithKeysInArray(keys, error:error_ptr)
|
88
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
88
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
89
89
|
result
|
90
90
|
end
|
91
91
|
|
@@ -95,7 +95,7 @@ class NSFNanoStore
|
|
95
95
|
def save
|
96
96
|
error_ptr = Pointer.new(:id)
|
97
97
|
result = saveStoreAndReturnError(error_ptr)
|
98
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
98
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
99
99
|
result
|
100
100
|
end
|
101
101
|
|
@@ -106,7 +106,7 @@ class NSFNanoStore
|
|
106
106
|
def compact
|
107
107
|
error_ptr = Pointer.new(:id)
|
108
108
|
result = self.compactStoreAndReturnError(error_ptr)
|
109
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
109
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
110
110
|
result
|
111
111
|
end
|
112
112
|
|
@@ -114,7 +114,7 @@ class NSFNanoStore
|
|
114
114
|
def clear_index
|
115
115
|
error_ptr = Pointer.new(:id)
|
116
116
|
result = self.clearIndexesAndReturnError(error_ptr)
|
117
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
117
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
118
118
|
result
|
119
119
|
end
|
120
120
|
|
@@ -122,7 +122,7 @@ class NSFNanoStore
|
|
122
122
|
def rebuild_index
|
123
123
|
error_ptr = Pointer.new(:id)
|
124
124
|
result = self.rebuildIndexesAndReturnError(error_ptr)
|
125
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
125
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
126
126
|
result
|
127
127
|
end
|
128
128
|
|
@@ -130,7 +130,7 @@ class NSFNanoStore
|
|
130
130
|
def save_store(path, compact=true)
|
131
131
|
error_ptr = Pointer.new(:id)
|
132
132
|
result = self.saveStoreToDirectoryAtPath(path, compactDatabase:compact, error:error_ptr)
|
133
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
133
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
134
134
|
result
|
135
135
|
end
|
136
136
|
|
@@ -143,7 +143,7 @@ class NSFNanoStore
|
|
143
143
|
def transaction
|
144
144
|
error_ptr = Pointer.new(:id)
|
145
145
|
beginTransactionAndReturnError(error_ptr)
|
146
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
146
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
147
147
|
|
148
148
|
begin
|
149
149
|
yield self
|
@@ -152,8 +152,8 @@ class NSFNanoStore
|
|
152
152
|
raise e
|
153
153
|
end
|
154
154
|
success = commitTransactionAndReturnError(error_ptr)
|
155
|
-
raise NanoStoreError, error_ptr[0].description if error_ptr[0]
|
155
|
+
raise NanoStore::NanoStoreError, error_ptr[0].description if error_ptr[0]
|
156
156
|
success
|
157
157
|
end
|
158
158
|
|
159
|
-
end
|
159
|
+
end
|
data/lib/nano_store/version.rb
CHANGED
data/nano-store.gemspec
CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
|
|
14
14
|
gem.require_paths = ["lib"]
|
15
15
|
gem.version = NanoStore::VERSION
|
16
16
|
|
17
|
-
gem.add_dependency 'bubble-wrap', '
|
18
|
-
gem.add_dependency 'motion-cocoapods', '
|
17
|
+
gem.add_dependency 'bubble-wrap', '~> 1.1.0'
|
18
|
+
gem.add_dependency 'motion-cocoapods', '~> 1.1.0'
|
19
19
|
gem.add_development_dependency 'motion-redgreen'
|
20
20
|
end
|
data/spec/nano_store_spec.rb
CHANGED
@@ -12,11 +12,11 @@ describe NanoStore do
|
|
12
12
|
end
|
13
13
|
|
14
14
|
it "create :persistent store" do
|
15
|
-
path = documents_path + "/nano.db"
|
15
|
+
path = App.documents_path + "/nano.db"
|
16
16
|
store = NanoStore.store :persistent, path
|
17
17
|
store.filePath.should == path
|
18
18
|
|
19
|
-
path = documents_path + "/nano.db"
|
19
|
+
path = App.documents_path + "/nano.db"
|
20
20
|
store = NanoStore.store :file, path
|
21
21
|
store.filePath.should == path
|
22
22
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# Acknowledgements
|
2
|
+
This application makes use of the following third party libraries:
|
3
|
+
|
4
|
+
## NanoStore
|
5
|
+
|
6
|
+
Copyright (c) 2010, Tito Ciuro, Webbo, L.L.C. All rights reserved.
|
7
|
+
Redistribution and use in source and binary forms, with or without
|
8
|
+
modification, are permitted provided that the following conditions are met:
|
9
|
+
|
10
|
+
* Redistributions of source code must retain the above copyright notice, this
|
11
|
+
list of conditions and the following disclaimer.
|
12
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
14
|
+
and/or other materials provided with the distribution.
|
15
|
+
* Neither the name of Tito Ciuro, Webbo, L.L.C. nor the names of its
|
16
|
+
contributors may be used to endorse or promote products derived from this
|
17
|
+
software without specific prior written permission.
|
18
|
+
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
20
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
21
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
22
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
23
|
+
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
24
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
25
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
26
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
27
|
+
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
29
|
+
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
30
|
+
DAMAGE.
|
31
|
+
|
32
|
+
Generated by CocoaPods - http://cocoapods.org
|
@@ -0,0 +1,62 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>PreferenceSpecifiers</key>
|
6
|
+
<array>
|
7
|
+
<dict>
|
8
|
+
<key>FooterText</key>
|
9
|
+
<string>This application makes use of the following third party libraries:</string>
|
10
|
+
<key>Title</key>
|
11
|
+
<string>Acknowledgements</string>
|
12
|
+
<key>Type</key>
|
13
|
+
<string>PSGroupSpecifier</string>
|
14
|
+
</dict>
|
15
|
+
<dict>
|
16
|
+
<key>FooterText</key>
|
17
|
+
<string>Copyright (c) 2010, Tito Ciuro, Webbo, L.L.C. All rights reserved.
|
18
|
+
Redistribution and use in source and binary forms, with or without
|
19
|
+
modification, are permitted provided that the following conditions are met:
|
20
|
+
|
21
|
+
* Redistributions of source code must retain the above copyright notice, this
|
22
|
+
list of conditions and the following disclaimer.
|
23
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
24
|
+
this list of conditions and the following disclaimer in the documentation
|
25
|
+
and/or other materials provided with the distribution.
|
26
|
+
* Neither the name of Tito Ciuro, Webbo, L.L.C. nor the names of its
|
27
|
+
contributors may be used to endorse or promote products derived from this
|
28
|
+
software without specific prior written permission.
|
29
|
+
|
30
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
31
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
32
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
33
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
34
|
+
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
35
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
36
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
37
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
38
|
+
AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
39
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
40
|
+
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
41
|
+
DAMAGE.
|
42
|
+
</string>
|
43
|
+
<key>Title</key>
|
44
|
+
<string>NanoStore</string>
|
45
|
+
<key>Type</key>
|
46
|
+
<string>PSGroupSpecifier</string>
|
47
|
+
</dict>
|
48
|
+
<dict>
|
49
|
+
<key>FooterText</key>
|
50
|
+
<string>Generated by CocoaPods - http://cocoapods.org</string>
|
51
|
+
<key>Title</key>
|
52
|
+
<string></string>
|
53
|
+
<key>Type</key>
|
54
|
+
<string>PSGroupSpecifier</string>
|
55
|
+
</dict>
|
56
|
+
</array>
|
57
|
+
<key>StringsTable</key>
|
58
|
+
<string>Acknowledgements</string>
|
59
|
+
<key>Title</key>
|
60
|
+
<string>Acknowledgements</string>
|
61
|
+
</dict>
|
62
|
+
</plist>
|
@@ -3,13 +3,17 @@
|
|
3
3
|
install_resource()
|
4
4
|
{
|
5
5
|
case $1 in
|
6
|
+
*.storyboard)
|
7
|
+
echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
|
8
|
+
ibtool --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
|
9
|
+
;;
|
6
10
|
*.xib)
|
7
|
-
echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib ${
|
8
|
-
ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib ${
|
11
|
+
echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
|
12
|
+
ibtool --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
|
9
13
|
;;
|
10
14
|
*)
|
11
|
-
echo "cp -R ${
|
12
|
-
cp -R "${
|
15
|
+
echo "cp -R ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
16
|
+
cp -R "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
|
13
17
|
;;
|
14
18
|
esac
|
15
19
|
}
|
@@ -1,40 +1,40 @@
|
|
1
1
|
<?xml version='1.0'?>
|
2
2
|
<signatures version='1.0'>
|
3
|
-
<constant name='NSFAttribute'
|
4
|
-
<constant name='NSFCalendarDate'
|
5
|
-
<constant name='NSFDatatype'
|
6
|
-
<constant name='NSFDomainKey'
|
7
|
-
<constant name='NSFKey'
|
8
|
-
<constant name='NSFKeys'
|
9
|
-
<constant name='NSFMemoryDatabase'
|
10
|
-
<constant name='NSFNanoObjectBehaviorException'
|
11
|
-
<constant name='NSFNanoStoreErrorKey'
|
12
|
-
<constant name='NSFNanoStoreUnableToManipulateStoreException'
|
13
|
-
<constant name='NSFNonConformingNanoObjectProtocolException'
|
14
|
-
<constant name='NSFObjectClass'
|
15
|
-
<constant name='NSFP_ColumnIdentifier'
|
16
|
-
<constant name='NSFP_DatatypeIdentifier'
|
17
|
-
<constant name='NSFP_FullDatatypeIdentifier'
|
18
|
-
<constant name='NSFP_SchemaTable'
|
19
|
-
<constant name='NSFP_TableIdentifier'
|
20
|
-
<constant name='NSFPlist'
|
21
|
-
<constant name='NSFRowIDColumnName'
|
22
|
-
<constant name='NSFTemporaryDatabase'
|
23
|
-
<constant name='NSFUnexpectedParameterException'
|
24
|
-
<constant name='NSFValue'
|
25
|
-
<constant name='NSFValues'
|
26
|
-
<constant name='NSFVersionKey'
|
27
|
-
<constant name='NSF_Private_InvalidParameterDataCodeKey'
|
28
|
-
<constant name='NSF_Private_MacOSXErrorCodeKey'
|
29
|
-
<constant name='NSF_Private_NSFKeys_NSFKey'
|
30
|
-
<constant name='NSF_Private_NSFKeys_NSFPlist'
|
31
|
-
<constant name='NSF_Private_NSFNanoBag_NSFKey'
|
32
|
-
<constant name='NSF_Private_NSFNanoBag_NSFObjectKeys'
|
33
|
-
<constant name='NSF_Private_NSFNanoBag_Name'
|
34
|
-
<constant name='NSF_Private_NSFValues_NSFAttribute'
|
35
|
-
<constant name='NSF_Private_NSFValues_NSFKey'
|
36
|
-
<constant name='NSF_Private_NSFValues_NSFValue'
|
37
|
-
<constant name='NSF_Private_ToDeleteTableKey'
|
3
|
+
<constant name='NSFAttribute' const='true' type='@' declared_type='NSString*'/>
|
4
|
+
<constant name='NSFCalendarDate' const='true' type='@' declared_type='NSString*'/>
|
5
|
+
<constant name='NSFDatatype' const='true' type='@' declared_type='NSString*'/>
|
6
|
+
<constant name='NSFDomainKey' const='true' type='@' declared_type='NSString*'/>
|
7
|
+
<constant name='NSFKey' const='true' type='@' declared_type='NSString*'/>
|
8
|
+
<constant name='NSFKeys' const='true' type='@' declared_type='NSString*'/>
|
9
|
+
<constant name='NSFMemoryDatabase' const='true' type='@' declared_type='NSString*'/>
|
10
|
+
<constant name='NSFNanoObjectBehaviorException' const='true' type='@' declared_type='NSString*'/>
|
11
|
+
<constant name='NSFNanoStoreErrorKey' const='true' type='i' declared_type='NSInteger'/>
|
12
|
+
<constant name='NSFNanoStoreUnableToManipulateStoreException' const='true' type='@' declared_type='NSString*'/>
|
13
|
+
<constant name='NSFNonConformingNanoObjectProtocolException' const='true' type='@' declared_type='NSString*'/>
|
14
|
+
<constant name='NSFObjectClass' const='true' type='@' declared_type='NSString*'/>
|
15
|
+
<constant name='NSFP_ColumnIdentifier' const='true' type='@' declared_type='NSString*'/>
|
16
|
+
<constant name='NSFP_DatatypeIdentifier' const='true' type='@' declared_type='NSString*'/>
|
17
|
+
<constant name='NSFP_FullDatatypeIdentifier' const='true' type='@' declared_type='NSString*'/>
|
18
|
+
<constant name='NSFP_SchemaTable' const='true' type='@' declared_type='NSString*'/>
|
19
|
+
<constant name='NSFP_TableIdentifier' const='true' type='@' declared_type='NSString*'/>
|
20
|
+
<constant name='NSFPlist' const='true' type='@' declared_type='NSString*'/>
|
21
|
+
<constant name='NSFRowIDColumnName' const='true' type='@' declared_type='NSString*'/>
|
22
|
+
<constant name='NSFTemporaryDatabase' const='true' type='@' declared_type='NSString*'/>
|
23
|
+
<constant name='NSFUnexpectedParameterException' const='true' type='@' declared_type='NSString*'/>
|
24
|
+
<constant name='NSFValue' const='true' type='@' declared_type='NSString*'/>
|
25
|
+
<constant name='NSFValues' const='true' type='@' declared_type='NSString*'/>
|
26
|
+
<constant name='NSFVersionKey' const='true' type='@' declared_type='NSString*'/>
|
27
|
+
<constant name='NSF_Private_InvalidParameterDataCodeKey' const='true' type='i' declared_type='NSInteger'/>
|
28
|
+
<constant name='NSF_Private_MacOSXErrorCodeKey' const='true' type='i' declared_type='NSInteger'/>
|
29
|
+
<constant name='NSF_Private_NSFKeys_NSFKey' const='true' type='@' declared_type='NSString*'/>
|
30
|
+
<constant name='NSF_Private_NSFKeys_NSFPlist' const='true' type='@' declared_type='NSString*'/>
|
31
|
+
<constant name='NSF_Private_NSFNanoBag_NSFKey' const='true' type='@' declared_type='NSString*'/>
|
32
|
+
<constant name='NSF_Private_NSFNanoBag_NSFObjectKeys' const='true' type='@' declared_type='NSString*'/>
|
33
|
+
<constant name='NSF_Private_NSFNanoBag_Name' const='true' type='@' declared_type='NSString*'/>
|
34
|
+
<constant name='NSF_Private_NSFValues_NSFAttribute' const='true' type='@' declared_type='NSString*'/>
|
35
|
+
<constant name='NSF_Private_NSFValues_NSFKey' const='true' type='@' declared_type='NSString*'/>
|
36
|
+
<constant name='NSF_Private_NSFValues_NSFValue' const='true' type='@' declared_type='NSString*'/>
|
37
|
+
<constant name='NSF_Private_ToDeleteTableKey' const='true' type='@' declared_type='NSString*'/>
|
38
38
|
<enum name='CacheAllData' value='1'/>
|
39
39
|
<enum name='CacheDataOnDemand' value='2'/>
|
40
40
|
<enum name='DoNotCacheData' value='3'/>
|
@@ -90,1133 +90,1133 @@
|
|
90
90
|
<enum name='TempStoreModeFile' value='1'/>
|
91
91
|
<enum name='TempStoreModeMemory' value='2'/>
|
92
92
|
<function name='NSFIsDebugOn'>
|
93
|
-
<retval
|
93
|
+
<retval type='B' declared_type='BOOL'/>
|
94
94
|
</function>
|
95
95
|
<function name='NSFNanoDatatypeFromString'>
|
96
|
-
<arg name='aNanoDatatype'
|
97
|
-
<retval
|
96
|
+
<arg name='aNanoDatatype' type='@' declared_type='NSString*'/>
|
97
|
+
<retval type='i' declared_type='NSFNanoDatatype'/>
|
98
98
|
</function>
|
99
99
|
<function name='NSFSetIsDebugOn'>
|
100
|
-
<arg name='flag'
|
101
|
-
<retval
|
100
|
+
<arg name='flag' type='B' declared_type='BOOL'/>
|
101
|
+
<retval type='v' declared_type='void'/>
|
102
102
|
</function>
|
103
103
|
<function name='NSFStringFromMatchType'>
|
104
|
-
<arg name='aMatchType'
|
105
|
-
<retval
|
104
|
+
<arg name='aMatchType' type='i' declared_type='NSFMatchType'/>
|
105
|
+
<retval type='@' declared_type='NSString*'/>
|
106
106
|
</function>
|
107
107
|
<function name='NSFStringFromNanoDataType'>
|
108
|
-
<arg name='aNanoDatatype'
|
109
|
-
<retval
|
108
|
+
<arg name='aNanoDatatype' type='i' declared_type='NSFNanoDatatype'/>
|
109
|
+
<retval type='@' declared_type='NSString*'/>
|
110
110
|
</function>
|
111
111
|
<class name='NSFNanoBag'>
|
112
112
|
<method selector='_inflateObjectsWithKeys:'>
|
113
|
-
<arg name='someKeys'
|
114
|
-
<retval
|
113
|
+
<arg name='someKeys' index='0' type='@' declared_type='NSArray*'/>
|
114
|
+
<retval type='v' declared_type='void'/>
|
115
115
|
</method>
|
116
116
|
<method selector='_saveInStore:error:'>
|
117
|
-
<arg name='someStore'
|
118
|
-
<arg name='outError'
|
119
|
-
<retval
|
117
|
+
<arg name='someStore' index='0' type='@' declared_type='NSFNanoStore*'/>
|
118
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
119
|
+
<retval type='B' declared_type='BOOL'/>
|
120
120
|
</method>
|
121
121
|
<method selector='_setStore:'>
|
122
|
-
<arg name='aStore'
|
123
|
-
<retval
|
122
|
+
<arg name='aStore' index='0' type='@' declared_type='NSFNanoStore*'/>
|
123
|
+
<retval type='v' declared_type='void'/>
|
124
124
|
</method>
|
125
125
|
<method selector='addObject:error:'>
|
126
|
-
<arg name='theObject'
|
127
|
-
<arg name='outError'
|
128
|
-
<retval
|
126
|
+
<arg name='theObject' index='0' type='@' declared_type='id'/>
|
127
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
128
|
+
<retval type='B' declared_type='BOOL'/>
|
129
129
|
</method>
|
130
130
|
<method selector='addObjectsFromArray:error:'>
|
131
|
-
<arg name='theObjects'
|
132
|
-
<arg name='outError'
|
133
|
-
<retval
|
131
|
+
<arg name='theObjects' index='0' type='@' declared_type='NSArray*'/>
|
132
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
133
|
+
<retval type='B' declared_type='BOOL'/>
|
134
134
|
</method>
|
135
|
-
<method
|
136
|
-
<retval
|
135
|
+
<method class_method='true' selector='bag'>
|
136
|
+
<retval type='@' declared_type='NSFNanoBag*'/>
|
137
137
|
</method>
|
138
|
-
<method
|
139
|
-
<arg name='theName'
|
140
|
-
<retval
|
138
|
+
<method class_method='true' selector='bagWithName:'>
|
139
|
+
<arg name='theName' index='0' type='@' declared_type='NSString*'/>
|
140
|
+
<retval type='@' declared_type='id'/>
|
141
141
|
</method>
|
142
|
-
<method selector='bagWithName:andObjects:'
|
143
|
-
<arg name='theName'
|
144
|
-
<arg name='theObjects'
|
145
|
-
<retval
|
142
|
+
<method class_method='true' selector='bagWithName:andObjects:'>
|
143
|
+
<arg name='theName' index='0' type='@' declared_type='NSString*'/>
|
144
|
+
<arg name='theObjects' index='1' type='@' declared_type='NSArray*'/>
|
145
|
+
<retval type='@' declared_type='id'/>
|
146
146
|
</method>
|
147
|
-
<method
|
148
|
-
<arg name='theObjects'
|
149
|
-
<retval
|
147
|
+
<method class_method='true' selector='bagWithObjects:'>
|
148
|
+
<arg name='theObjects' index='0' type='@' declared_type='NSArray*'/>
|
149
|
+
<retval type='@' declared_type='NSFNanoBag*'/>
|
150
150
|
</method>
|
151
151
|
<method selector='count'>
|
152
|
-
<retval
|
152
|
+
<retval type='I' declared_type='NSUInteger'/>
|
153
153
|
</method>
|
154
154
|
<method selector='deflateBag'>
|
155
|
-
<retval
|
155
|
+
<retval type='v' declared_type='void'/>
|
156
156
|
</method>
|
157
157
|
<method selector='description'>
|
158
|
-
<retval
|
158
|
+
<retval type='@' declared_type='NSString*'/>
|
159
159
|
</method>
|
160
160
|
<method selector='dictionaryRepresentation'>
|
161
|
-
<retval
|
161
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
162
162
|
</method>
|
163
163
|
<method selector='hasUnsavedChanges'>
|
164
|
-
<retval
|
164
|
+
<retval type='B' declared_type='BOOL'/>
|
165
165
|
</method>
|
166
166
|
<method selector='inflateBag'>
|
167
|
-
<retval
|
167
|
+
<retval type='v' declared_type='void'/>
|
168
168
|
</method>
|
169
169
|
<method selector='initBagWithName:andObjects:'>
|
170
|
-
<arg name='theName'
|
171
|
-
<arg name='someObjects'
|
172
|
-
<retval
|
170
|
+
<arg name='theName' index='0' type='@' declared_type='NSString*'/>
|
171
|
+
<arg name='someObjects' index='1' type='@' declared_type='NSArray*'/>
|
172
|
+
<retval type='@' declared_type='id'/>
|
173
173
|
</method>
|
174
174
|
<method selector='isEqualToNanoBag:'>
|
175
|
-
<arg name='otherNanoBag'
|
176
|
-
<retval
|
175
|
+
<arg name='otherNanoBag' index='0' type='@' declared_type='NSFNanoBag*'/>
|
176
|
+
<retval type='B' declared_type='BOOL'/>
|
177
177
|
</method>
|
178
178
|
<method selector='key'>
|
179
|
-
<retval
|
179
|
+
<retval type='@' declared_type='NSString*'/>
|
180
180
|
</method>
|
181
181
|
<method selector='name'>
|
182
|
-
<retval
|
182
|
+
<retval type='@' declared_type='NSString*'/>
|
183
183
|
</method>
|
184
184
|
<method selector='reloadBagWithError:'>
|
185
|
-
<arg name='outError'
|
186
|
-
<retval
|
185
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
186
|
+
<retval type='B' declared_type='BOOL'/>
|
187
187
|
</method>
|
188
188
|
<method selector='removeAllObjects'>
|
189
|
-
<retval
|
189
|
+
<retval type='v' declared_type='void'/>
|
190
190
|
</method>
|
191
191
|
<method selector='removeObject:'>
|
192
|
-
<arg name='theObject'
|
193
|
-
<retval
|
192
|
+
<arg name='theObject' index='0' type='@' declared_type='id'/>
|
193
|
+
<retval type='v' declared_type='void'/>
|
194
194
|
</method>
|
195
195
|
<method selector='removeObjectWithKey:'>
|
196
|
-
<arg name='theObjectKey'
|
197
|
-
<retval
|
196
|
+
<arg name='theObjectKey' index='0' type='@' declared_type='NSString*'/>
|
197
|
+
<retval type='v' declared_type='void'/>
|
198
198
|
</method>
|
199
199
|
<method selector='removeObjectsInArray:'>
|
200
|
-
<arg name='theObjects'
|
201
|
-
<retval
|
200
|
+
<arg name='theObjects' index='0' type='@' declared_type='NSArray*'/>
|
201
|
+
<retval type='v' declared_type='void'/>
|
202
202
|
</method>
|
203
203
|
<method selector='removeObjectsWithKeysInArray:'>
|
204
|
-
<arg name='theKeys'
|
205
|
-
<retval
|
204
|
+
<arg name='theKeys' index='0' type='@' declared_type='NSArray*'/>
|
205
|
+
<retval type='v' declared_type='void'/>
|
206
206
|
</method>
|
207
207
|
<method selector='removedObjects'>
|
208
|
-
<retval
|
208
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
209
209
|
</method>
|
210
210
|
<method selector='saveAndReturnError:'>
|
211
|
-
<arg name='outError'
|
212
|
-
<retval
|
211
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
212
|
+
<retval type='B' declared_type='BOOL'/>
|
213
213
|
</method>
|
214
214
|
<method selector='savedObjects'>
|
215
|
-
<retval
|
215
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
216
216
|
</method>
|
217
217
|
<method selector='setName:'>
|
218
|
-
<arg name='name'
|
219
|
-
<retval
|
218
|
+
<arg name='name' index='0' type='@' declared_type='NSString*'/>
|
219
|
+
<retval type='v' declared_type='void'/>
|
220
220
|
</method>
|
221
221
|
<method selector='setStore:'>
|
222
|
-
<arg name='store'
|
223
|
-
<retval
|
222
|
+
<arg name='store' index='0' type='@' declared_type='NSFNanoStore*'/>
|
223
|
+
<retval type='v' declared_type='void'/>
|
224
224
|
</method>
|
225
225
|
<method selector='store'>
|
226
|
-
<retval
|
226
|
+
<retval type='@' declared_type='NSFNanoStore*'/>
|
227
227
|
</method>
|
228
228
|
<method selector='undoChangesWithError:'>
|
229
|
-
<arg name='outError'
|
230
|
-
<retval
|
229
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
230
|
+
<retval type='B' declared_type='BOOL'/>
|
231
231
|
</method>
|
232
232
|
<method selector='unsavedObjects'>
|
233
|
-
<retval
|
233
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
234
234
|
</method>
|
235
235
|
</class>
|
236
236
|
<class name='NSFNanoEngine'>
|
237
|
-
<method
|
238
|
-
<arg name='value'
|
239
|
-
<retval
|
237
|
+
<method class_method='true' selector='NSFEncodingTypeToNSString:'>
|
238
|
+
<arg name='value' index='0' type='i' declared_type='NSFEncodingType'/>
|
239
|
+
<retval type='@' declared_type='NSString*'/>
|
240
240
|
</method>
|
241
241
|
<method selector='NSFP_ROWIDPresenceLocation:datatypes:'>
|
242
|
-
<arg name='tableColumns'
|
243
|
-
<arg name='datatypes'
|
244
|
-
<retval
|
242
|
+
<arg name='tableColumns' index='0' type='@' declared_type='NSArray*'/>
|
243
|
+
<arg name='datatypes' index='1' type='@' declared_type='NSArray*'/>
|
244
|
+
<retval type='i' declared_type='NSInteger'/>
|
245
245
|
</method>
|
246
246
|
<method selector='NSFP_beginTransactionMode:'>
|
247
|
-
<arg name='theSQLStatement'
|
248
|
-
<retval
|
247
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSString*'/>
|
248
|
+
<retval type='B' declared_type='BOOL'/>
|
249
249
|
</method>
|
250
250
|
<method selector='NSFP_cacheMethodToString'>
|
251
|
-
<retval
|
251
|
+
<retval type='@' declared_type='NSString*'/>
|
252
252
|
</method>
|
253
253
|
<method selector='NSFP_createTable:withColumns:datatypes:isTemporary:'>
|
254
|
-
<arg name='table'
|
255
|
-
<arg name='tableColumns'
|
256
|
-
<arg name='tableDatatypes'
|
257
|
-
<arg name='isTemporaryFlag'
|
258
|
-
<retval
|
254
|
+
<arg name='table' index='0' type='@' declared_type='NSString*'/>
|
255
|
+
<arg name='tableColumns' index='1' type='@' declared_type='NSArray*'/>
|
256
|
+
<arg name='tableDatatypes' index='2' type='@' declared_type='NSArray*'/>
|
257
|
+
<arg name='isTemporaryFlag' index='3' type='B' declared_type='BOOL'/>
|
258
|
+
<retval type='B' declared_type='BOOL'/>
|
259
259
|
</method>
|
260
260
|
<method selector='NSFP_datatypeForColumn:'>
|
261
|
-
<arg name='tableAndColumn'
|
262
|
-
<retval
|
261
|
+
<arg name='tableAndColumn' index='0' type='@' declared_type='NSString*'/>
|
262
|
+
<retval type='i' declared_type='NSFNanoDatatype'/>
|
263
263
|
</method>
|
264
264
|
<method selector='NSFP_datatypeForTable:column:'>
|
265
|
-
<arg name='table'
|
266
|
-
<arg name='column'
|
267
|
-
<retval
|
265
|
+
<arg name='table' index='0' type='@' declared_type='NSString*'/>
|
266
|
+
<arg name='column' index='1' type='@' declared_type='NSString*'/>
|
267
|
+
<retval type='i' declared_type='NSFNanoDatatype'/>
|
268
268
|
</method>
|
269
|
-
<method selector='NSFP_decodeQuantum:andSource:'
|
270
|
-
<arg name='dest'
|
271
|
-
<arg name='src'
|
272
|
-
<retval
|
269
|
+
<method class_method='true' selector='NSFP_decodeQuantum:andSource:'>
|
270
|
+
<arg name='dest' index='0' type='*' declared_type='unsigned char*'/>
|
271
|
+
<arg name='src' const='true' index='1' type='*' declared_type='char*'/>
|
272
|
+
<retval type='v' declared_type='void'/>
|
273
273
|
</method>
|
274
274
|
<method selector='NSFP_flattenAllTables'>
|
275
|
-
<retval
|
275
|
+
<retval type='@' declared_type='NSArray*'/>
|
276
276
|
</method>
|
277
277
|
<method selector='NSFP_insertStringValues:forColumns:table:'>
|
278
|
-
<arg name='values'
|
279
|
-
<arg name='columns'
|
280
|
-
<arg name='table'
|
281
|
-
<retval
|
278
|
+
<arg name='values' index='0' type='@' declared_type='NSArray*'/>
|
279
|
+
<arg name='columns' index='1' type='@' declared_type='NSArray*'/>
|
280
|
+
<arg name='table' index='2' type='@' declared_type='NSString*'/>
|
281
|
+
<retval type='B' declared_type='BOOL'/>
|
282
282
|
</method>
|
283
283
|
<method selector='NSFP_installCommitCallback'>
|
284
|
-
<retval
|
284
|
+
<retval type='v' declared_type='void'/>
|
285
285
|
</method>
|
286
286
|
<method selector='NSFP_isColumnROWIDAlias:forTable:'>
|
287
|
-
<arg name='column'
|
288
|
-
<arg name='table'
|
289
|
-
<retval
|
287
|
+
<arg name='column' index='0' type='@' declared_type='NSString*'/>
|
288
|
+
<arg name='table' index='1' type='@' declared_type='NSString*'/>
|
289
|
+
<retval type='B' declared_type='BOOL'/>
|
290
290
|
</method>
|
291
291
|
<method selector='NSFP_nestedDescriptionWithPrefixedSpace:'>
|
292
|
-
<arg name='prefixedSpace'
|
293
|
-
<retval
|
292
|
+
<arg name='prefixedSpace' index='0' type='@' declared_type='NSString*'/>
|
293
|
+
<retval type='@' declared_type='NSString*'/>
|
294
294
|
</method>
|
295
295
|
<method selector='NSFP_prefixWithDotDelimiter:'>
|
296
|
-
<arg name='tableAndColumn'
|
297
|
-
<retval
|
296
|
+
<arg name='tableAndColumn' index='0' type='@' declared_type='NSString*'/>
|
297
|
+
<retval type='@' declared_type='NSString*'/>
|
298
298
|
</method>
|
299
299
|
<method selector='NSFP_prepareSQLite3Statement:theSQLStatement:'>
|
300
|
-
<arg name='aStatement'
|
301
|
-
<arg name='aSQLQuery'
|
302
|
-
<retval
|
300
|
+
<arg name='aStatement' index='0' type='^^{sqlite3_stmt}' declared_type='sqlite3_stmt**'/>
|
301
|
+
<arg name='aSQLQuery' index='1' type='@' declared_type='NSString*'/>
|
302
|
+
<retval type='i' declared_type='NSInteger'/>
|
303
303
|
</method>
|
304
304
|
<method selector='NSFP_rebuildDatatypeCache'>
|
305
|
-
<retval
|
305
|
+
<retval type='v' declared_type='void'/>
|
306
306
|
</method>
|
307
307
|
<method selector='NSFP_removeColumn:fromTable:'>
|
308
|
-
<arg name='column'
|
309
|
-
<arg name='table'
|
310
|
-
<retval
|
308
|
+
<arg name='column' index='0' type='@' declared_type='NSString*'/>
|
309
|
+
<arg name='table' index='1' type='@' declared_type='NSString*'/>
|
310
|
+
<retval type='B' declared_type='BOOL'/>
|
311
311
|
</method>
|
312
312
|
<method selector='NSFP_setFullColumnNamesEnabled'>
|
313
|
-
<retval
|
313
|
+
<retval type='v' declared_type='void'/>
|
314
314
|
</method>
|
315
|
-
<method
|
316
|
-
<retval
|
315
|
+
<method class_method='true' selector='NSFP_sharedROWIDKeywords'>
|
316
|
+
<retval type='@' declared_type='NSArray*'/>
|
317
317
|
</method>
|
318
318
|
<method selector='NSFP_sqlString:appendingTags:'>
|
319
|
-
<arg name='theSQLStatement'
|
320
|
-
<arg name='columns'
|
321
|
-
<retval
|
319
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSMutableString*'/>
|
320
|
+
<arg name='columns' index='1' type='@' declared_type='NSArray*'/>
|
321
|
+
<retval type='v' declared_type='void'/>
|
322
322
|
</method>
|
323
323
|
<method selector='NSFP_sqlString:appendingTags:quoteTags:'>
|
324
|
-
<arg name='theSQLStatement'
|
325
|
-
<arg name='tags'
|
326
|
-
<arg name='flag'
|
327
|
-
<retval
|
324
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSMutableString*'/>
|
325
|
+
<arg name='tags' index='1' type='@' declared_type='NSArray*'/>
|
326
|
+
<arg name='flag' index='2' type='B' declared_type='BOOL'/>
|
327
|
+
<retval type='v' declared_type='void'/>
|
328
328
|
</method>
|
329
329
|
<method selector='NSFP_sqlString:forTable:withColumns:datatypes:'>
|
330
|
-
<arg name='theSQLStatement'
|
331
|
-
<arg name='table'
|
332
|
-
<arg name='columns'
|
333
|
-
<arg name='datatypes'
|
334
|
-
<retval
|
330
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSMutableString*'/>
|
331
|
+
<arg name='table' index='1' type='@' declared_type='NSString*'/>
|
332
|
+
<arg name='columns' index='2' type='@' declared_type='NSArray*'/>
|
333
|
+
<arg name='datatypes' index='3' type='@' declared_type='NSArray*'/>
|
334
|
+
<retval type='B' declared_type='BOOL'/>
|
335
335
|
</method>
|
336
|
-
<method
|
337
|
-
<arg name='extendedResult'
|
338
|
-
<retval
|
336
|
+
<method class_method='true' selector='NSFP_stripBitsFromExtendedResultCode:'>
|
337
|
+
<arg name='extendedResult' index='0' type='i' declared_type='int'/>
|
338
|
+
<retval type='i' declared_type='int'/>
|
339
339
|
</method>
|
340
340
|
<method selector='NSFP_suffixWithDotDelimiter:'>
|
341
|
-
<arg name='tableAndColumn'
|
342
|
-
<retval
|
341
|
+
<arg name='tableAndColumn' index='0' type='@' declared_type='NSString*'/>
|
342
|
+
<retval type='@' declared_type='NSString*'/>
|
343
343
|
</method>
|
344
344
|
<method selector='NSFP_uninstallCommitCallback'>
|
345
|
-
<retval
|
345
|
+
<retval type='v' declared_type='void'/>
|
346
346
|
</method>
|
347
|
-
<method
|
348
|
-
<arg name='value'
|
349
|
-
<retval
|
347
|
+
<method class_method='true' selector='NSStringToNSFEncodingType:'>
|
348
|
+
<arg name='value' index='0' type='@' declared_type='NSString*'/>
|
349
|
+
<retval type='i' declared_type='NSFEncodingType'/>
|
350
350
|
</method>
|
351
|
-
<method
|
352
|
-
<arg name='aPlist'
|
353
|
-
<retval
|
351
|
+
<method class_method='true' selector='_plistToDictionary:'>
|
352
|
+
<arg name='aPlist' index='0' type='@' declared_type='NSString*'/>
|
353
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
354
354
|
</method>
|
355
355
|
<method selector='allTables'>
|
356
|
-
<retval
|
356
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
357
357
|
</method>
|
358
358
|
<method selector='beginDeferredTransaction'>
|
359
|
-
<retval
|
359
|
+
<retval type='B' declared_type='BOOL'/>
|
360
360
|
</method>
|
361
361
|
<method selector='beginTransaction'>
|
362
|
-
<retval
|
362
|
+
<retval type='B' declared_type='BOOL'/>
|
363
363
|
</method>
|
364
364
|
<method selector='busyTimeout'>
|
365
|
-
<retval declared_type='unsigned int'
|
365
|
+
<retval type='I' declared_type='unsigned int'/>
|
366
366
|
</method>
|
367
367
|
<method selector='cacheMethod'>
|
368
|
-
<retval
|
368
|
+
<retval type='i' declared_type='NSFCacheMethod'/>
|
369
369
|
</method>
|
370
370
|
<method selector='cacheSize'>
|
371
|
-
<retval
|
371
|
+
<retval type='I' declared_type='NSUInteger'/>
|
372
372
|
</method>
|
373
373
|
<method selector='close'>
|
374
|
-
<retval
|
374
|
+
<retval type='B' declared_type='BOOL'/>
|
375
375
|
</method>
|
376
376
|
<method selector='columnsForTable:'>
|
377
|
-
<arg name='theTable'
|
378
|
-
<retval
|
377
|
+
<arg name='theTable' index='0' type='@' declared_type='NSString*'/>
|
378
|
+
<retval type='@' declared_type='NSArray*'/>
|
379
379
|
</method>
|
380
380
|
<method selector='commitTransaction'>
|
381
|
-
<retval
|
381
|
+
<retval type='B' declared_type='BOOL'/>
|
382
382
|
</method>
|
383
383
|
<method selector='compact'>
|
384
|
-
<retval
|
384
|
+
<retval type='B' declared_type='BOOL'/>
|
385
385
|
</method>
|
386
386
|
<method selector='createIndexForColumn:table:isUnique:'>
|
387
|
-
<arg name='theColumn'
|
388
|
-
<arg name='theTable'
|
389
|
-
<arg name='isUnique'
|
390
|
-
<retval
|
387
|
+
<arg name='theColumn' index='0' type='@' declared_type='NSString*'/>
|
388
|
+
<arg name='theTable' index='1' type='@' declared_type='NSString*'/>
|
389
|
+
<arg name='isUnique' index='2' type='B' declared_type='BOOL'/>
|
390
|
+
<retval type='B' declared_type='BOOL'/>
|
391
391
|
</method>
|
392
392
|
<method selector='createTable:withColumns:datatypes:'>
|
393
|
-
<arg name='theTable'
|
394
|
-
<arg name='theColumns'
|
395
|
-
<arg name='theDatatypes'
|
396
|
-
<retval
|
393
|
+
<arg name='theTable' index='0' type='@' declared_type='NSString*'/>
|
394
|
+
<arg name='theColumns' index='1' type='@' declared_type='NSArray*'/>
|
395
|
+
<arg name='theDatatypes' index='2' type='@' declared_type='NSArray*'/>
|
396
|
+
<retval type='B' declared_type='BOOL'/>
|
397
397
|
</method>
|
398
|
-
<method
|
399
|
-
<arg name='thePath'
|
400
|
-
<retval
|
398
|
+
<method class_method='true' selector='databaseWithPath:'>
|
399
|
+
<arg name='thePath' index='0' type='@' declared_type='NSString*'/>
|
400
|
+
<retval type='@' declared_type='id'/>
|
401
401
|
</method>
|
402
402
|
<method selector='datatypesForTable:'>
|
403
|
-
<arg name='theTable'
|
404
|
-
<retval
|
403
|
+
<arg name='theTable' index='0' type='@' declared_type='NSString*'/>
|
404
|
+
<retval type='@' declared_type='NSArray*'/>
|
405
405
|
</method>
|
406
|
-
<method
|
407
|
-
<arg name='theEncodedData'
|
408
|
-
<retval
|
406
|
+
<method class_method='true' selector='decodeDataFromBase64:'>
|
407
|
+
<arg name='theEncodedData' index='0' type='@' declared_type='NSString*'/>
|
408
|
+
<retval type='@' declared_type='NSData*'/>
|
409
409
|
</method>
|
410
410
|
<method selector='description'>
|
411
|
-
<retval
|
411
|
+
<retval type='@' declared_type='NSString*'/>
|
412
412
|
</method>
|
413
413
|
<method selector='dropIndex:'>
|
414
|
-
<arg name='theIndex'
|
415
|
-
<retval
|
414
|
+
<arg name='theIndex' index='0' type='@' declared_type='NSString*'/>
|
415
|
+
<retval type='v' declared_type='void'/>
|
416
416
|
</method>
|
417
417
|
<method selector='dropTable:'>
|
418
|
-
<arg name='theTable'
|
419
|
-
<retval
|
418
|
+
<arg name='theTable' index='0' type='@' declared_type='NSString*'/>
|
419
|
+
<retval type='B' declared_type='BOOL'/>
|
420
420
|
</method>
|
421
|
-
<method
|
422
|
-
<arg name='theData'
|
423
|
-
<retval
|
421
|
+
<method class_method='true' selector='encodeDataToBase64:'>
|
422
|
+
<arg name='theData' index='0' type='@' declared_type='NSData*'/>
|
423
|
+
<retval type='@' declared_type='NSString*'/>
|
424
424
|
</method>
|
425
425
|
<method selector='encoding'>
|
426
|
-
<retval
|
426
|
+
<retval type='i' declared_type='NSFEncodingType'/>
|
427
427
|
</method>
|
428
428
|
<method selector='executeSQL:'>
|
429
|
-
<arg name='theSQLStatement'
|
430
|
-
<retval
|
429
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSString*'/>
|
430
|
+
<retval type='@' declared_type='NSFNanoResult*'/>
|
431
431
|
</method>
|
432
432
|
<method selector='indexedColumnsForTable:'>
|
433
|
-
<arg name='theTable'
|
434
|
-
<retval
|
433
|
+
<arg name='theTable' index='0' type='@' declared_type='NSString*'/>
|
434
|
+
<retval type='@' declared_type='NSArray*'/>
|
435
435
|
</method>
|
436
436
|
<method selector='indexes'>
|
437
|
-
<retval
|
437
|
+
<retval type='@' declared_type='NSArray*'/>
|
438
438
|
</method>
|
439
439
|
<method selector='initWithPath:'>
|
440
|
-
<arg name='thePath'
|
441
|
-
<retval
|
440
|
+
<arg name='thePath' index='0' type='@' declared_type='NSString*'/>
|
441
|
+
<retval type='@' declared_type='id'/>
|
442
442
|
</method>
|
443
443
|
<method selector='integrityCheck'>
|
444
|
-
<retval
|
444
|
+
<retval type='B' declared_type='BOOL'/>
|
445
445
|
</method>
|
446
446
|
<method selector='isDatabaseOpen'>
|
447
|
-
<retval
|
447
|
+
<retval type='B' declared_type='BOOL'/>
|
448
448
|
</method>
|
449
449
|
<method selector='isTransactionActive'>
|
450
|
-
<retval
|
450
|
+
<retval type='B' declared_type='BOOL'/>
|
451
451
|
</method>
|
452
452
|
<method selector='journalModeAndReturnError:'>
|
453
|
-
<arg name='outError'
|
454
|
-
<retval
|
453
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
454
|
+
<retval type='i' declared_type='NSFJournalModeMode'/>
|
455
455
|
</method>
|
456
456
|
<method selector='maxRowUIDForTable:'>
|
457
|
-
<arg name='theTable'
|
458
|
-
<retval declared_type='long long'
|
457
|
+
<arg name='theTable' index='0' type='@' declared_type='NSString*'/>
|
458
|
+
<retval type='q' declared_type='long long'/>
|
459
459
|
</method>
|
460
|
-
<method
|
461
|
-
<retval
|
460
|
+
<method class_method='true' selector='nanoStoreEngineVersion'>
|
461
|
+
<retval type='@' declared_type='NSString*'/>
|
462
462
|
</method>
|
463
463
|
<method selector='openWithCacheMethod:useFastMode:'>
|
464
|
-
<arg name='theCacheMethod'
|
465
|
-
<arg name='useFastMode'
|
466
|
-
<retval
|
464
|
+
<arg name='theCacheMethod' index='0' type='i' declared_type='NSFCacheMethod'/>
|
465
|
+
<arg name='useFastMode' index='1' type='B' declared_type='BOOL'/>
|
466
|
+
<retval type='B' declared_type='BOOL'/>
|
467
467
|
</method>
|
468
468
|
<method selector='pageSize'>
|
469
|
-
<retval
|
469
|
+
<retval type='I' declared_type='NSUInteger'/>
|
470
470
|
</method>
|
471
471
|
<method selector='path'>
|
472
|
-
<retval
|
472
|
+
<retval type='@' declared_type='NSString*'/>
|
473
473
|
</method>
|
474
|
-
<method
|
475
|
-
<retval
|
474
|
+
<method class_method='true' selector='recommendedCacheSize'>
|
475
|
+
<retval type='I' declared_type='NSUInteger'/>
|
476
476
|
</method>
|
477
477
|
<method selector='rollbackTransaction'>
|
478
|
-
<retval
|
478
|
+
<retval type='B' declared_type='BOOL'/>
|
479
479
|
</method>
|
480
480
|
<method selector='setBusyTimeout:'>
|
481
|
-
<arg name='theTimeout'
|
482
|
-
<retval
|
481
|
+
<arg name='theTimeout' index='0' type='I' declared_type='unsigned int'/>
|
482
|
+
<retval type='v' declared_type='void'/>
|
483
483
|
</method>
|
484
484
|
<method selector='setCacheMethod:'>
|
485
|
-
<arg name='cacheMethod'
|
486
|
-
<retval
|
485
|
+
<arg name='cacheMethod' index='0' type='i' declared_type='NSFCacheMethod'/>
|
486
|
+
<retval type='v' declared_type='void'/>
|
487
487
|
</method>
|
488
488
|
<method selector='setCacheSize:'>
|
489
|
-
<arg name='numberOfPages'
|
490
|
-
<retval
|
489
|
+
<arg name='numberOfPages' index='0' type='I' declared_type='NSUInteger'/>
|
490
|
+
<retval type='B' declared_type='BOOL'/>
|
491
491
|
</method>
|
492
492
|
<method selector='setEncodingType:'>
|
493
|
-
<arg name='theEncodingType'
|
494
|
-
<retval
|
493
|
+
<arg name='theEncodingType' index='0' type='i' declared_type='NSFEncodingType'/>
|
494
|
+
<retval type='B' declared_type='BOOL'/>
|
495
495
|
</method>
|
496
496
|
<method selector='setJournalMode:'>
|
497
|
-
<arg name='theMode'
|
498
|
-
<retval
|
497
|
+
<arg name='theMode' index='0' type='i' declared_type='NSFJournalModeMode'/>
|
498
|
+
<retval type='B' declared_type='BOOL'/>
|
499
499
|
</method>
|
500
500
|
<method selector='setPageSize:'>
|
501
|
-
<arg name='numberOfBytes'
|
502
|
-
<retval
|
501
|
+
<arg name='numberOfBytes' index='0' type='I' declared_type='NSUInteger'/>
|
502
|
+
<retval type='B' declared_type='BOOL'/>
|
503
503
|
</method>
|
504
504
|
<method selector='setSynchronousMode:'>
|
505
|
-
<arg name='theSynchronousMode'
|
506
|
-
<retval
|
505
|
+
<arg name='theSynchronousMode' index='0' type='i' declared_type='NSFSynchronousMode'/>
|
506
|
+
<retval type='v' declared_type='void'/>
|
507
507
|
</method>
|
508
508
|
<method selector='setTempStoreMode:'>
|
509
|
-
<arg name='theTempStoreMode'
|
510
|
-
<retval
|
509
|
+
<arg name='theTempStoreMode' index='0' type='i' declared_type='NSFTempStoreMode'/>
|
510
|
+
<retval type='v' declared_type='void'/>
|
511
511
|
</method>
|
512
|
-
<method
|
513
|
-
<retval
|
512
|
+
<method class_method='true' selector='sharedNanoStoreEngineDatatypes'>
|
513
|
+
<retval type='@' declared_type='NSSet*'/>
|
514
514
|
</method>
|
515
515
|
<method selector='sqlite'>
|
516
|
-
<retval
|
516
|
+
<retval type='^{sqlite3=}' declared_type='sqlite3*'/>
|
517
517
|
</method>
|
518
|
-
<method
|
519
|
-
<retval
|
518
|
+
<method class_method='true' selector='sqliteVersion'>
|
519
|
+
<retval type='@' declared_type='NSString*'/>
|
520
520
|
</method>
|
521
|
-
<method
|
522
|
-
<retval
|
521
|
+
<method class_method='true' selector='stringWithUUID'>
|
522
|
+
<retval type='@' declared_type='NSString*'/>
|
523
523
|
</method>
|
524
524
|
<method selector='synchronousMode'>
|
525
|
-
<retval
|
525
|
+
<retval type='i' declared_type='NSFSynchronousMode'/>
|
526
526
|
</method>
|
527
|
-
<method
|
528
|
-
<retval
|
527
|
+
<method class_method='true' selector='systemPageSize'>
|
528
|
+
<retval type='i' declared_type='NSInteger'/>
|
529
529
|
</method>
|
530
530
|
<method selector='tables'>
|
531
|
-
<retval
|
531
|
+
<retval type='@' declared_type='NSArray*'/>
|
532
532
|
</method>
|
533
533
|
<method selector='tempStoreMode'>
|
534
|
-
<retval
|
534
|
+
<retval type='i' declared_type='NSFTempStoreMode'/>
|
535
535
|
</method>
|
536
536
|
<method selector='temporaryTables'>
|
537
|
-
<retval
|
537
|
+
<retval type='@' declared_type='NSArray*'/>
|
538
538
|
</method>
|
539
539
|
</class>
|
540
540
|
<class name='NSFNanoExpression'>
|
541
541
|
<method selector='addPredicate:withOperator:'>
|
542
|
-
<arg name='thePredicate'
|
543
|
-
<arg name='theOperator'
|
544
|
-
<retval
|
542
|
+
<arg name='thePredicate' index='0' type='@' declared_type='NSFNanoPredicate*'/>
|
543
|
+
<arg name='theOperator' index='1' type='i' declared_type='NSFOperator'/>
|
544
|
+
<retval type='v' declared_type='void'/>
|
545
545
|
</method>
|
546
546
|
<method selector='description'>
|
547
|
-
<retval
|
547
|
+
<retval type='@' declared_type='NSString*'/>
|
548
548
|
</method>
|
549
|
-
<method
|
550
|
-
<arg name='thePredicate'
|
551
|
-
<retval
|
549
|
+
<method class_method='true' selector='expressionWithPredicate:'>
|
550
|
+
<arg name='thePredicate' index='0' type='@' declared_type='NSFNanoPredicate*'/>
|
551
|
+
<retval type='@' declared_type='NSFNanoExpression*'/>
|
552
552
|
</method>
|
553
553
|
<method selector='initWithPredicate:'>
|
554
|
-
<arg name='thePredicate'
|
555
|
-
<retval
|
554
|
+
<arg name='thePredicate' index='0' type='@' declared_type='NSFNanoPredicate*'/>
|
555
|
+
<retval type='@' declared_type='id'/>
|
556
556
|
</method>
|
557
557
|
<method selector='operators'>
|
558
|
-
<retval
|
558
|
+
<retval type='@' declared_type='NSArray*'/>
|
559
559
|
</method>
|
560
560
|
<method selector='predicates'>
|
561
|
-
<retval
|
561
|
+
<retval type='@' declared_type='NSArray*'/>
|
562
562
|
</method>
|
563
563
|
</class>
|
564
564
|
<class name='NSFNanoObject'>
|
565
565
|
<method selector='_setOriginalClassString:'>
|
566
|
-
<arg name='theClassString'
|
567
|
-
<retval
|
566
|
+
<arg name='theClassString' index='0' type='@' declared_type='NSString*'/>
|
567
|
+
<retval type='v' declared_type='void'/>
|
568
568
|
</method>
|
569
569
|
<method selector='description'>
|
570
|
-
<retval
|
570
|
+
<retval type='@' declared_type='NSString*'/>
|
571
571
|
</method>
|
572
572
|
<method selector='dictionaryRepresentation'>
|
573
|
-
<retval
|
573
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
574
574
|
</method>
|
575
575
|
<method selector='info'>
|
576
|
-
<retval
|
576
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
577
577
|
</method>
|
578
578
|
<method selector='initFromDictionaryRepresentation:'>
|
579
|
-
<arg name='theDictionary'
|
580
|
-
<retval
|
579
|
+
<arg name='theDictionary' index='0' type='@' declared_type='NSDictionary*'/>
|
580
|
+
<retval type='@' declared_type='id'/>
|
581
581
|
</method>
|
582
582
|
<method selector='isEqualToNanoObject:'>
|
583
|
-
<arg name='otherNanoObject'
|
584
|
-
<retval
|
583
|
+
<arg name='otherNanoObject' index='0' type='@' declared_type='NSFNanoObject*'/>
|
584
|
+
<retval type='B' declared_type='BOOL'/>
|
585
585
|
</method>
|
586
586
|
<method selector='key'>
|
587
|
-
<retval
|
587
|
+
<retval type='@' declared_type='NSString*'/>
|
588
588
|
</method>
|
589
|
-
<method
|
590
|
-
<retval
|
589
|
+
<method class_method='true' selector='nanoObject'>
|
590
|
+
<retval type='@' declared_type='NSFNanoObject*'/>
|
591
591
|
</method>
|
592
|
-
<method
|
593
|
-
<arg name='theDictionary'
|
594
|
-
<retval
|
592
|
+
<method class_method='true' selector='nanoObjectWithDictionary:'>
|
593
|
+
<arg name='theDictionary' index='0' type='@' declared_type='NSDictionary*'/>
|
594
|
+
<retval type='@' declared_type='NSFNanoObject*'/>
|
595
595
|
</method>
|
596
596
|
<method selector='objectForKey:'>
|
597
|
-
<arg name='aKey'
|
598
|
-
<retval
|
597
|
+
<arg name='aKey' index='0' type='@' declared_type='NSString*'/>
|
598
|
+
<retval type='@' declared_type='id'/>
|
599
599
|
</method>
|
600
600
|
<method selector='originalClassString'>
|
601
|
-
<retval
|
601
|
+
<retval type='@' declared_type='NSString*'/>
|
602
602
|
</method>
|
603
603
|
<method selector='removeAllObjects'>
|
604
|
-
<retval
|
604
|
+
<retval type='v' declared_type='void'/>
|
605
605
|
</method>
|
606
606
|
<method selector='removeObjectForKey:'>
|
607
|
-
<arg name='aKey'
|
608
|
-
<retval
|
607
|
+
<arg name='aKey' index='0' type='@' declared_type='NSString*'/>
|
608
|
+
<retval type='v' declared_type='void'/>
|
609
609
|
</method>
|
610
610
|
<method selector='removeObjectsForKeys:'>
|
611
|
-
<arg name='keyArray'
|
612
|
-
<retval
|
611
|
+
<arg name='keyArray' index='0' type='@' declared_type='NSArray*'/>
|
612
|
+
<retval type='v' declared_type='void'/>
|
613
613
|
</method>
|
614
614
|
<method selector='setObject:forKey:'>
|
615
|
-
<arg name='anObject'
|
616
|
-
<arg name='aKey'
|
617
|
-
<retval
|
615
|
+
<arg name='anObject' index='0' type='@' declared_type='id'/>
|
616
|
+
<arg name='aKey' index='1' type='@' declared_type='NSString*'/>
|
617
|
+
<retval type='v' declared_type='void'/>
|
618
618
|
</method>
|
619
619
|
</class>
|
620
620
|
<class name='NSFNanoPredicate'>
|
621
621
|
<method selector='column'>
|
622
|
-
<retval
|
622
|
+
<retval type='i' declared_type='NSFTableColumnType'/>
|
623
623
|
</method>
|
624
624
|
<method selector='description'>
|
625
|
-
<retval
|
625
|
+
<retval type='@' declared_type='NSString*'/>
|
626
626
|
</method>
|
627
627
|
<method selector='initWithColumn:matching:value:'>
|
628
|
-
<arg name='theType'
|
629
|
-
<arg name='theMatch'
|
630
|
-
<arg name='theValue'
|
631
|
-
<retval
|
628
|
+
<arg name='theType' index='0' type='i' declared_type='NSFTableColumnType'/>
|
629
|
+
<arg name='theMatch' index='1' type='i' declared_type='NSFMatchType'/>
|
630
|
+
<arg name='theValue' index='2' type='@' declared_type='NSString*'/>
|
631
|
+
<retval type='@' declared_type='id'/>
|
632
632
|
</method>
|
633
633
|
<method selector='match'>
|
634
|
-
<retval
|
634
|
+
<retval type='i' declared_type='NSFMatchType'/>
|
635
635
|
</method>
|
636
|
-
<method selector='predicateWithColumn:matching:value:'
|
637
|
-
<arg name='theType'
|
638
|
-
<arg name='theMatch'
|
639
|
-
<arg name='theValue'
|
640
|
-
<retval
|
636
|
+
<method class_method='true' selector='predicateWithColumn:matching:value:'>
|
637
|
+
<arg name='theType' index='0' type='i' declared_type='NSFTableColumnType'/>
|
638
|
+
<arg name='theMatch' index='1' type='i' declared_type='NSFMatchType'/>
|
639
|
+
<arg name='theValue' index='2' type='@' declared_type='NSString*'/>
|
640
|
+
<retval type='@' declared_type='NSFNanoPredicate*'/>
|
641
641
|
</method>
|
642
642
|
<method selector='value'>
|
643
|
-
<retval
|
643
|
+
<retval type='@' declared_type='NSString*'/>
|
644
644
|
</method>
|
645
645
|
</class>
|
646
646
|
<class name='NSFNanoResult'>
|
647
647
|
<method selector='_calculateNumberOfRows'>
|
648
|
-
<retval
|
648
|
+
<retval type='v' declared_type='void'/>
|
649
649
|
</method>
|
650
650
|
<method selector='_initWithDictionary:'>
|
651
|
-
<arg name='results'
|
652
|
-
<retval
|
651
|
+
<arg name='results' index='0' type='@' declared_type='NSDictionary*'/>
|
652
|
+
<retval type='@' declared_type='id'/>
|
653
653
|
</method>
|
654
654
|
<method selector='_initWithError:'>
|
655
|
-
<arg name='error'
|
656
|
-
<retval
|
655
|
+
<arg name='error' index='0' type='@' declared_type='NSError*'/>
|
656
|
+
<retval type='@' declared_type='id'/>
|
657
657
|
</method>
|
658
658
|
<method selector='_reset'>
|
659
|
-
<retval
|
659
|
+
<retval type='v' declared_type='void'/>
|
660
660
|
</method>
|
661
|
-
<method
|
662
|
-
<arg name='results'
|
663
|
-
<retval
|
661
|
+
<method class_method='true' selector='_resultWithDictionary:'>
|
662
|
+
<arg name='results' index='0' type='@' declared_type='NSDictionary*'/>
|
663
|
+
<retval type='@' declared_type='NSFNanoResult*'/>
|
664
664
|
</method>
|
665
|
-
<method
|
666
|
-
<arg name='error'
|
667
|
-
<retval
|
665
|
+
<method class_method='true' selector='_resultWithError:'>
|
666
|
+
<arg name='error' index='0' type='@' declared_type='NSError*'/>
|
667
|
+
<retval type='@' declared_type='NSFNanoResult*'/>
|
668
668
|
</method>
|
669
669
|
<method selector='_setError:'>
|
670
|
-
<arg name='error'
|
671
|
-
<retval
|
670
|
+
<arg name='error' index='0' type='@' declared_type='NSError*'/>
|
671
|
+
<retval type='v' declared_type='void'/>
|
672
672
|
</method>
|
673
673
|
<method selector='columns'>
|
674
|
-
<retval
|
674
|
+
<retval type='@' declared_type='NSArray*'/>
|
675
675
|
</method>
|
676
676
|
<method selector='description'>
|
677
|
-
<retval
|
677
|
+
<retval type='@' declared_type='NSString*'/>
|
678
678
|
</method>
|
679
679
|
<method selector='error'>
|
680
|
-
<retval
|
680
|
+
<retval type='@' declared_type='NSError*'/>
|
681
681
|
</method>
|
682
682
|
<method selector='firstValue'>
|
683
|
-
<retval
|
683
|
+
<retval type='@' declared_type='NSString*'/>
|
684
684
|
</method>
|
685
685
|
<method selector='numberOfRows'>
|
686
|
-
<retval
|
686
|
+
<retval type='I' declared_type='NSUInteger'/>
|
687
687
|
</method>
|
688
688
|
<method selector='setError:'>
|
689
|
-
<arg name='error'
|
690
|
-
<retval
|
689
|
+
<arg name='error' index='0' type='@' declared_type='NSError*'/>
|
690
|
+
<retval type='v' declared_type='void'/>
|
691
691
|
</method>
|
692
692
|
<method selector='valueAtIndex:forColumn:'>
|
693
|
-
<arg name='theIndex'
|
694
|
-
<arg name='theColumn'
|
695
|
-
<retval
|
693
|
+
<arg name='theIndex' index='0' type='I' declared_type='NSUInteger'/>
|
694
|
+
<arg name='theColumn' index='1' type='@' declared_type='NSString*'/>
|
695
|
+
<retval type='@' declared_type='NSString*'/>
|
696
696
|
</method>
|
697
697
|
<method selector='valuesForColumn:'>
|
698
|
-
<arg name='theColumn'
|
699
|
-
<retval
|
698
|
+
<arg name='theColumn' index='0' type='@' declared_type='NSString*'/>
|
699
|
+
<retval type='@' declared_type='NSArray*'/>
|
700
700
|
</method>
|
701
701
|
<method selector='writeToFile:'>
|
702
|
-
<arg name='thePath'
|
703
|
-
<retval
|
702
|
+
<arg name='thePath' index='0' type='@' declared_type='NSString*'/>
|
703
|
+
<retval type='v' declared_type='void'/>
|
704
704
|
</method>
|
705
705
|
</class>
|
706
706
|
<class name='NSFNanoSearch'>
|
707
707
|
<method selector='_dataWithKey:attribute:value:matching:'>
|
708
|
-
<arg name='aKey'
|
709
|
-
<arg name='anAttribute'
|
710
|
-
<arg name='aValue'
|
711
|
-
<arg name='match'
|
712
|
-
<retval
|
708
|
+
<arg name='aKey' index='0' type='@' declared_type='NSString*'/>
|
709
|
+
<arg name='anAttribute' index='1' type='@' declared_type='NSString*'/>
|
710
|
+
<arg name='aValue' index='2' type='@' declared_type='NSString*'/>
|
711
|
+
<arg name='match' index='3' type='i' declared_type='NSFMatchType'/>
|
712
|
+
<retval type='@' declared_type='NSArray*'/>
|
713
713
|
</method>
|
714
714
|
<method selector='_dataWithKey:attribute:value:matching:returning:'>
|
715
|
-
<arg name='aKey'
|
716
|
-
<arg name='anAttribute'
|
717
|
-
<arg name='aValue'
|
718
|
-
<arg name='match'
|
719
|
-
<arg name='returnedObjectType'
|
720
|
-
<retval
|
715
|
+
<arg name='aKey' index='0' type='@' declared_type='NSString*'/>
|
716
|
+
<arg name='anAttribute' index='1' type='@' declared_type='NSString*'/>
|
717
|
+
<arg name='aValue' index='2' type='@' declared_type='NSString*'/>
|
718
|
+
<arg name='match' index='3' type='i' declared_type='NSFMatchType'/>
|
719
|
+
<arg name='returnedObjectType' index='4' type='i' declared_type='NSFReturnType'/>
|
720
|
+
<retval type='@' declared_type='NSArray*'/>
|
721
721
|
</method>
|
722
722
|
<method selector='_dictionaryForKeyPath:value:'>
|
723
|
-
<arg name='keyPath'
|
724
|
-
<arg name='value'
|
725
|
-
<retval
|
723
|
+
<arg name='keyPath' index='0' type='@' declared_type='NSString*'/>
|
724
|
+
<arg name='value' index='1' type='@' declared_type='id'/>
|
725
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
726
726
|
</method>
|
727
727
|
<method selector='_prepareSQLQueryStringWithExpressions:'>
|
728
|
-
<arg name='someExpressions'
|
729
|
-
<retval
|
728
|
+
<arg name='someExpressions' index='0' type='@' declared_type='NSArray*'/>
|
729
|
+
<retval type='@' declared_type='NSString*'/>
|
730
730
|
</method>
|
731
731
|
<method selector='_prepareSQLQueryStringWithKey:attribute:value:matching:'>
|
732
|
-
<arg name='aKey'
|
733
|
-
<arg name='anAttribute'
|
734
|
-
<arg name='aValue'
|
735
|
-
<arg name='match'
|
736
|
-
<retval
|
732
|
+
<arg name='aKey' index='0' type='@' declared_type='NSString*'/>
|
733
|
+
<arg name='anAttribute' index='1' type='@' declared_type='NSString*'/>
|
734
|
+
<arg name='aValue' index='2' type='@' declared_type='id'/>
|
735
|
+
<arg name='match' index='3' type='i' declared_type='NSFMatchType'/>
|
736
|
+
<retval type='@' declared_type='NSString*'/>
|
737
737
|
</method>
|
738
|
-
<method
|
739
|
-
<arg name='someKeys'
|
740
|
-
<retval
|
738
|
+
<method class_method='true' selector='_prepareSQLQueryStringWithKeys:'>
|
739
|
+
<arg name='someKeys' index='0' type='@' declared_type='NSArray*'/>
|
740
|
+
<retval type='@' declared_type='NSString*'/>
|
741
741
|
</method>
|
742
742
|
<method selector='_preparedSQL'>
|
743
|
-
<retval
|
743
|
+
<retval type='@' declared_type='NSString*'/>
|
744
744
|
</method>
|
745
|
-
<method selector='_querySegmentForAttributeColumnWithValue:matching:valueColumnWithValue:'
|
746
|
-
<arg name='anAttributeValue'
|
747
|
-
<arg name='match'
|
748
|
-
<arg name='aValue'
|
749
|
-
<retval
|
745
|
+
<method class_method='true' selector='_querySegmentForAttributeColumnWithValue:matching:valueColumnWithValue:'>
|
746
|
+
<arg name='anAttributeValue' index='0' type='@' declared_type='id'/>
|
747
|
+
<arg name='match' index='1' type='i' declared_type='NSFMatchType'/>
|
748
|
+
<arg name='aValue' index='2' type='@' declared_type='id'/>
|
749
|
+
<retval type='@' declared_type='NSString*'/>
|
750
750
|
</method>
|
751
|
-
<method selector='_querySegmentForColumn:value:matching:'
|
752
|
-
<arg name='aColumn'
|
753
|
-
<arg name='aValue'
|
754
|
-
<arg name='match'
|
755
|
-
<retval
|
751
|
+
<method class_method='true' selector='_querySegmentForColumn:value:matching:'>
|
752
|
+
<arg name='aColumn' index='0' type='@' declared_type='NSString*'/>
|
753
|
+
<arg name='aValue' index='1' type='@' declared_type='id'/>
|
754
|
+
<arg name='match' index='2' type='i' declared_type='NSFMatchType'/>
|
755
|
+
<retval type='@' declared_type='NSString*'/>
|
756
756
|
</method>
|
757
|
-
<method selector='_quoteStrings:joiningWithDelimiter:'
|
758
|
-
<arg name='strings'
|
759
|
-
<arg name='delimiter'
|
760
|
-
<retval
|
757
|
+
<method class_method='true' selector='_quoteStrings:joiningWithDelimiter:'>
|
758
|
+
<arg name='strings' index='0' type='@' declared_type='NSArray*'/>
|
759
|
+
<arg name='delimiter' index='1' type='@' declared_type='NSString*'/>
|
760
|
+
<retval type='@' declared_type='NSString*'/>
|
761
761
|
</method>
|
762
762
|
<method selector='_resultsFromSQLQuery:'>
|
763
|
-
<arg name='theSQLStatement'
|
764
|
-
<retval
|
763
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSString*'/>
|
764
|
+
<retval type='@' declared_type='NSArray*'/>
|
765
765
|
</method>
|
766
766
|
<method selector='_retrieveDataAdded:calendarDate:error:'>
|
767
|
-
<arg name='aDateMatch'
|
768
|
-
<arg name='aDate'
|
769
|
-
<arg name='outError'
|
770
|
-
<retval
|
767
|
+
<arg name='aDateMatch' index='0' type='i' declared_type='NSFDateMatchType'/>
|
768
|
+
<arg name='aDate' index='1' type='@' declared_type='NSDate*'/>
|
769
|
+
<arg name='outError' index='2' type_modifier='o' type='^@' declared_type='NSError**'/>
|
770
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
771
771
|
</method>
|
772
772
|
<method selector='_retrieveDataWithError:'>
|
773
|
-
<arg name='outError'
|
774
|
-
<retval
|
773
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
774
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
775
775
|
</method>
|
776
776
|
<method selector='_sortResultsIfApplicable:returnType:'>
|
777
|
-
<arg name='results'
|
778
|
-
<arg name='theReturnType'
|
779
|
-
<retval
|
777
|
+
<arg name='results' index='0' type='@' declared_type='NSDictionary*'/>
|
778
|
+
<arg name='theReturnType' index='1' type='i' declared_type='NSFReturnType'/>
|
779
|
+
<retval type='@' declared_type='id'/>
|
780
780
|
</method>
|
781
781
|
<method selector='aggregateOperation:onAttribute:'>
|
782
|
-
<arg name='theFunctionType'
|
783
|
-
<arg name='theAttribute'
|
784
|
-
<retval
|
782
|
+
<arg name='theFunctionType' index='0' type='i' declared_type='NSFAggregateFunctionType'/>
|
783
|
+
<arg name='theAttribute' index='1' type='@' declared_type='NSString*'/>
|
784
|
+
<retval type='@' declared_type='NSNumber*'/>
|
785
785
|
</method>
|
786
786
|
<method selector='attribute'>
|
787
|
-
<retval
|
787
|
+
<retval type='@' declared_type='NSString*'/>
|
788
788
|
</method>
|
789
789
|
<method selector='attributesToBeReturned'>
|
790
|
-
<retval
|
790
|
+
<retval type='@' declared_type='NSArray*'/>
|
791
791
|
</method>
|
792
792
|
<method selector='executeSQL:'>
|
793
|
-
<arg name='theSQLStatement'
|
794
|
-
<retval
|
793
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSString*'/>
|
794
|
+
<retval type='@' declared_type='NSFNanoResult*'/>
|
795
795
|
</method>
|
796
796
|
<method selector='executeSQL:returnType:error:'>
|
797
|
-
<arg name='theSQLStatement'
|
798
|
-
<arg name='theReturnType'
|
799
|
-
<arg name='outError'
|
800
|
-
<retval
|
797
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSString*'/>
|
798
|
+
<arg name='theReturnType' index='1' type='i' declared_type='NSFReturnType'/>
|
799
|
+
<arg name='outError' index='2' type_modifier='o' type='^@' declared_type='NSError**'/>
|
800
|
+
<retval type='@' declared_type='id'/>
|
801
801
|
</method>
|
802
802
|
<method selector='explainSQL:'>
|
803
|
-
<arg name='theSQLStatement'
|
804
|
-
<retval
|
803
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSString*'/>
|
804
|
+
<retval type='@' declared_type='NSFNanoResult*'/>
|
805
805
|
</method>
|
806
806
|
<method selector='expressions'>
|
807
|
-
<retval
|
807
|
+
<retval type='@' declared_type='NSArray*'/>
|
808
808
|
</method>
|
809
809
|
<method selector='filterClass'>
|
810
|
-
<retval
|
810
|
+
<retval type='@' declared_type='NSString*'/>
|
811
811
|
</method>
|
812
812
|
<method selector='groupValues'>
|
813
|
-
<retval
|
813
|
+
<retval type='B' declared_type='BOOL'/>
|
814
814
|
</method>
|
815
815
|
<method selector='initWithStore:'>
|
816
|
-
<arg name='theNanoStore'
|
817
|
-
<retval
|
816
|
+
<arg name='theNanoStore' index='0' type='@' declared_type='NSFNanoStore*'/>
|
817
|
+
<retval type='@' declared_type='id'/>
|
818
818
|
</method>
|
819
819
|
<method selector='key'>
|
820
|
-
<retval
|
820
|
+
<retval type='@' declared_type='NSString*'/>
|
821
821
|
</method>
|
822
822
|
<method selector='match'>
|
823
|
-
<retval
|
823
|
+
<retval type='i' declared_type='NSFMatchType'/>
|
824
824
|
</method>
|
825
825
|
<method selector='nanoStore'>
|
826
|
-
<retval
|
826
|
+
<retval type='@' declared_type='NSFNanoStore*'/>
|
827
827
|
</method>
|
828
828
|
<method selector='reset'>
|
829
|
-
<retval
|
829
|
+
<retval type='v' declared_type='void'/>
|
830
830
|
</method>
|
831
831
|
<method selector='searchObjectsAdded:date:returnType:error:'>
|
832
|
-
<arg name='theDateMatch'
|
833
|
-
<arg name='theDate'
|
834
|
-
<arg name='theReturnType'
|
835
|
-
<arg name='outError'
|
836
|
-
<retval
|
832
|
+
<arg name='theDateMatch' index='0' type='i' declared_type='NSFDateMatchType'/>
|
833
|
+
<arg name='theDate' index='1' type='@' declared_type='NSDate*'/>
|
834
|
+
<arg name='theReturnType' index='2' type='i' declared_type='NSFReturnType'/>
|
835
|
+
<arg name='outError' index='3' type_modifier='o' type='^@' declared_type='NSError**'/>
|
836
|
+
<retval type='@' declared_type='id'/>
|
837
837
|
</method>
|
838
838
|
<method selector='searchObjectsWithReturnType:error:'>
|
839
|
-
<arg name='theReturnType'
|
840
|
-
<arg name='outError'
|
841
|
-
<retval
|
839
|
+
<arg name='theReturnType' index='0' type='i' declared_type='NSFReturnType'/>
|
840
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
841
|
+
<retval type='@' declared_type='id'/>
|
842
842
|
</method>
|
843
|
-
<method
|
844
|
-
<arg name='theNanoStore'
|
845
|
-
<retval
|
843
|
+
<method class_method='true' selector='searchWithStore:'>
|
844
|
+
<arg name='theNanoStore' index='0' type='@' declared_type='NSFNanoStore*'/>
|
845
|
+
<retval type='@' declared_type='NSFNanoSearch*'/>
|
846
846
|
</method>
|
847
847
|
<method selector='setAttribute:'>
|
848
|
-
<arg name='attribute'
|
849
|
-
<retval
|
848
|
+
<arg name='attribute' index='0' type='@' declared_type='NSString*'/>
|
849
|
+
<retval type='v' declared_type='void'/>
|
850
850
|
</method>
|
851
851
|
<method selector='setAttributesToBeReturned:'>
|
852
|
-
<arg name='attributesToBeReturned'
|
853
|
-
<retval
|
852
|
+
<arg name='attributesToBeReturned' index='0' type='@' declared_type='NSArray*'/>
|
853
|
+
<retval type='v' declared_type='void'/>
|
854
854
|
</method>
|
855
855
|
<method selector='setExpressions:'>
|
856
|
-
<arg name='expressions'
|
857
|
-
<retval
|
856
|
+
<arg name='expressions' index='0' type='@' declared_type='NSArray*'/>
|
857
|
+
<retval type='v' declared_type='void'/>
|
858
858
|
</method>
|
859
859
|
<method selector='setFilterClass:'>
|
860
|
-
<arg name='filterClass'
|
861
|
-
<retval
|
860
|
+
<arg name='filterClass' index='0' type='@' declared_type='NSString*'/>
|
861
|
+
<retval type='v' declared_type='void'/>
|
862
862
|
</method>
|
863
863
|
<method selector='setGroupValues:'>
|
864
|
-
<arg name='groupValues'
|
865
|
-
<retval
|
864
|
+
<arg name='groupValues' index='0' type='B' declared_type='BOOL'/>
|
865
|
+
<retval type='v' declared_type='void'/>
|
866
866
|
</method>
|
867
867
|
<method selector='setKey:'>
|
868
|
-
<arg name='key'
|
869
|
-
<retval
|
868
|
+
<arg name='key' index='0' type='@' declared_type='NSString*'/>
|
869
|
+
<retval type='v' declared_type='void'/>
|
870
870
|
</method>
|
871
871
|
<method selector='setMatch:'>
|
872
|
-
<arg name='match'
|
873
|
-
<retval
|
872
|
+
<arg name='match' index='0' type='i' declared_type='NSFMatchType'/>
|
873
|
+
<retval type='v' declared_type='void'/>
|
874
874
|
</method>
|
875
875
|
<method selector='setNanoStore:'>
|
876
|
-
<arg name='nanoStore'
|
877
|
-
<retval
|
876
|
+
<arg name='nanoStore' index='0' type='@' declared_type='NSFNanoStore*'/>
|
877
|
+
<retval type='v' declared_type='void'/>
|
878
878
|
</method>
|
879
879
|
<method selector='setSort:'>
|
880
|
-
<arg name='sort'
|
881
|
-
<retval
|
880
|
+
<arg name='sort' index='0' type='@' declared_type='NSArray*'/>
|
881
|
+
<retval type='v' declared_type='void'/>
|
882
882
|
</method>
|
883
883
|
<method selector='setValue:'>
|
884
|
-
<arg name='value'
|
885
|
-
<retval
|
884
|
+
<arg name='value' index='0' type='@' declared_type='id'/>
|
885
|
+
<retval type='v' declared_type='void'/>
|
886
886
|
</method>
|
887
887
|
<method selector='sort'>
|
888
|
-
<retval
|
888
|
+
<retval type='@' declared_type='NSArray*'/>
|
889
889
|
</method>
|
890
890
|
<method selector='sql'>
|
891
|
-
<retval
|
891
|
+
<retval type='@' declared_type='NSString*'/>
|
892
892
|
</method>
|
893
893
|
<method selector='value'>
|
894
|
-
<retval
|
894
|
+
<retval type='@' declared_type='id'/>
|
895
895
|
</method>
|
896
896
|
</class>
|
897
897
|
<class name='NSFNanoSortDescriptor'>
|
898
898
|
<method selector='attribute'>
|
899
|
-
<retval
|
899
|
+
<retval type='@' declared_type='NSString*'/>
|
900
900
|
</method>
|
901
901
|
<method selector='description'>
|
902
|
-
<retval
|
902
|
+
<retval type='@' declared_type='NSString*'/>
|
903
903
|
</method>
|
904
904
|
<method selector='initWithAttribute:ascending:'>
|
905
|
-
<arg name='theAttribute'
|
906
|
-
<arg name='ascending'
|
907
|
-
<retval
|
905
|
+
<arg name='theAttribute' index='0' type='@' declared_type='NSString*'/>
|
906
|
+
<arg name='ascending' index='1' type='B' declared_type='BOOL'/>
|
907
|
+
<retval type='@' declared_type='id'/>
|
908
908
|
</method>
|
909
909
|
<method selector='isAscending'>
|
910
|
-
<retval
|
910
|
+
<retval type='B' declared_type='BOOL'/>
|
911
911
|
</method>
|
912
|
-
<method selector='sortDescriptorWithAttribute:ascending:'
|
913
|
-
<arg name='theAttribute'
|
914
|
-
<arg name='ascending'
|
915
|
-
<retval
|
912
|
+
<method class_method='true' selector='sortDescriptorWithAttribute:ascending:'>
|
913
|
+
<arg name='theAttribute' index='0' type='@' declared_type='NSString*'/>
|
914
|
+
<arg name='ascending' index='1' type='B' declared_type='BOOL'/>
|
915
|
+
<retval type='@' declared_type='NSFNanoSortDescriptor*'/>
|
916
916
|
</method>
|
917
917
|
</class>
|
918
918
|
<class name='NSFNanoStore'>
|
919
919
|
<method selector='_NSFDatatypeOfObject:'>
|
920
|
-
<arg name='value'
|
921
|
-
<retval
|
920
|
+
<arg name='value' index='0' type='@' declared_type='id'/>
|
921
|
+
<retval type='i' declared_type='NSFNanoDatatype'/>
|
922
922
|
</method>
|
923
923
|
<method selector='__storeDictionaries:forKeys:error:'>
|
924
|
-
<arg name='someObjects'
|
925
|
-
<arg name='someKeys'
|
926
|
-
<arg name='outError'
|
927
|
-
<retval
|
924
|
+
<arg name='someObjects' index='0' type='@' declared_type='NSArray*'/>
|
925
|
+
<arg name='someKeys' index='1' type='@' declared_type='NSArray*'/>
|
926
|
+
<arg name='outError' index='2' type_modifier='o' type='^@' declared_type='NSError**'/>
|
927
|
+
<retval type='B' declared_type='BOOL'/>
|
928
928
|
</method>
|
929
929
|
<method selector='_addObjectsFromArray:forceSave:error:'>
|
930
|
-
<arg name='someObjects'
|
931
|
-
<arg name='forceSave'
|
932
|
-
<arg name='outError'
|
933
|
-
<retval
|
930
|
+
<arg name='someObjects' index='0' type='@' declared_type='NSArray*'/>
|
931
|
+
<arg name='forceSave' index='1' type='B' declared_type='BOOL'/>
|
932
|
+
<arg name='outError' index='2' type_modifier='o' type='^@' declared_type='NSError**'/>
|
933
|
+
<retval type='B' declared_type='BOOL'/>
|
934
934
|
</method>
|
935
935
|
<method selector='_backupFileStoreToDirectoryAtPath:extension:compact:error:'>
|
936
|
-
<arg name='aPath'
|
937
|
-
<arg name='anExtension'
|
938
|
-
<arg name='flag'
|
939
|
-
<arg name='outError'
|
940
|
-
<retval
|
936
|
+
<arg name='aPath' index='0' type='@' declared_type='NSString*'/>
|
937
|
+
<arg name='anExtension' index='1' type='@' declared_type='NSString*'/>
|
938
|
+
<arg name='flag' index='2' type='B' declared_type='BOOL'/>
|
939
|
+
<arg name='outError' index='3' type_modifier='o' type='^@' declared_type='NSError**'/>
|
940
|
+
<retval type='B' declared_type='BOOL'/>
|
941
941
|
</method>
|
942
942
|
<method selector='_backupMemoryStoreToDirectoryAtPath:extension:compact:error:'>
|
943
|
-
<arg name='aPath'
|
944
|
-
<arg name='anExtension'
|
945
|
-
<arg name='flag'
|
946
|
-
<arg name='outError'
|
947
|
-
<retval
|
943
|
+
<arg name='aPath' index='0' type='@' declared_type='NSString*'/>
|
944
|
+
<arg name='anExtension' index='1' type='@' declared_type='NSString*'/>
|
945
|
+
<arg name='flag' index='2' type='B' declared_type='BOOL'/>
|
946
|
+
<arg name='outError' index='3' type_modifier='o' type='^@' declared_type='NSError**'/>
|
947
|
+
<retval type='B' declared_type='BOOL'/>
|
948
948
|
</method>
|
949
949
|
<method selector='_bindValue:forAttribute:parameterNumber:usingSQLite3Statement:'>
|
950
|
-
<arg name='aValue'
|
951
|
-
<arg name='anAttribute'
|
952
|
-
<arg name='aParamNumber'
|
953
|
-
<arg name='aStatement'
|
954
|
-
<retval
|
950
|
+
<arg name='aValue' index='0' type='@' declared_type='id'/>
|
951
|
+
<arg name='anAttribute' index='1' type='@' declared_type='NSString*'/>
|
952
|
+
<arg name='aParamNumber' index='2' type='i' declared_type='NSInteger'/>
|
953
|
+
<arg name='aStatement' index='3' type='^{sqlite3_stmt=}' declared_type='sqlite3_stmt*'/>
|
954
|
+
<retval type='B' declared_type='BOOL'/>
|
955
955
|
</method>
|
956
|
-
<method
|
957
|
-
<arg name='aDate'
|
958
|
-
<retval
|
956
|
+
<method class_method='true' selector='_calendarDateToString:'>
|
957
|
+
<arg name='aDate' index='0' type='@' declared_type='NSDate*'/>
|
958
|
+
<retval type='@' declared_type='NSString*'/>
|
959
959
|
</method>
|
960
960
|
<method selector='_checkNanoStoreIsReadyAndReturnError:'>
|
961
|
-
<arg name='outError'
|
962
|
-
<retval
|
961
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
962
|
+
<retval type='B' declared_type='BOOL'/>
|
963
963
|
</method>
|
964
|
-
<method
|
965
|
-
<retval
|
964
|
+
<method class_method='true' selector='_createAndOpenDebugDatabase'>
|
965
|
+
<retval type='@' declared_type='NSFNanoStore*'/>
|
966
966
|
</method>
|
967
|
-
<method
|
968
|
-
<retval
|
967
|
+
<method class_method='true' selector='_defaultTestData'>
|
968
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
969
969
|
</method>
|
970
970
|
<method selector='_executeSQL:'>
|
971
|
-
<arg name='theSQLStatement'
|
972
|
-
<retval
|
971
|
+
<arg name='theSQLStatement' index='0' type='@' declared_type='NSString*'/>
|
972
|
+
<retval type='@' declared_type='NSFNanoResult*'/>
|
973
973
|
</method>
|
974
974
|
<method selector='_executeSQLite3StepUsingSQLite3Statement:'>
|
975
|
-
<arg name='aStatement'
|
976
|
-
<retval
|
975
|
+
<arg name='aStatement' index='0' type='^{sqlite3_stmt=}' declared_type='sqlite3_stmt*'/>
|
976
|
+
<retval type='v' declared_type='void'/>
|
977
977
|
</method>
|
978
978
|
<method selector='_flattenCollection:keyPath:keys:values:'>
|
979
|
-
<arg name='someObject'
|
980
|
-
<arg name='aKeyPath'
|
981
|
-
<arg name='someKeys'
|
982
|
-
<arg name='someValues'
|
983
|
-
<retval
|
979
|
+
<arg name='someObject' index='0' type='@' declared_type='id'/>
|
980
|
+
<arg name='aKeyPath' index='1' type='^@' declared_type='NSMutableArray**'/>
|
981
|
+
<arg name='someKeys' index='2' type='^@' declared_type='NSMutableArray**'/>
|
982
|
+
<arg name='someValues' index='3' type='^@' declared_type='NSMutableArray**'/>
|
983
|
+
<retval type='v' declared_type='void'/>
|
984
984
|
</method>
|
985
985
|
<method selector='_flattenCollection:keys:values:'>
|
986
|
-
<arg name='info'
|
987
|
-
<arg name='flattenedKeys'
|
988
|
-
<arg name='flattenedValues'
|
989
|
-
<retval
|
986
|
+
<arg name='info' index='0' type='@' declared_type='NSDictionary*'/>
|
987
|
+
<arg name='flattenedKeys' index='1' type='^@' declared_type='NSMutableArray**'/>
|
988
|
+
<arg name='flattenedValues' index='2' type='^@' declared_type='NSMutableArray**'/>
|
989
|
+
<retval type='v' declared_type='void'/>
|
990
990
|
</method>
|
991
991
|
<method selector='_initializePreparedStatementsWithError:'>
|
992
|
-
<arg name='outError'
|
993
|
-
<retval
|
992
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
993
|
+
<retval type='B' declared_type='BOOL'/>
|
994
994
|
</method>
|
995
995
|
<method selector='_isOurTransaction'>
|
996
|
-
<retval
|
996
|
+
<retval type='B' declared_type='BOOL'/>
|
997
997
|
</method>
|
998
998
|
<method selector='_nestedDescriptionWithPrefixedSpace:'>
|
999
|
-
<arg name='prefixedSpace'
|
1000
|
-
<retval
|
999
|
+
<arg name='prefixedSpace' index='0' type='@' declared_type='NSString*'/>
|
1000
|
+
<retval type='@' declared_type='NSString*'/>
|
1001
1001
|
</method>
|
1002
1002
|
<method selector='_prepareSQLite3Statement:theSQLStatement:'>
|
1003
|
-
<arg name='aStatement'
|
1004
|
-
<arg name='aSQLQuery'
|
1005
|
-
<retval
|
1003
|
+
<arg name='aStatement' index='0' type='^^{sqlite3_stmt}' declared_type='sqlite3_stmt**'/>
|
1004
|
+
<arg name='aSQLQuery' index='1' type='@' declared_type='NSString*'/>
|
1005
|
+
<retval type='B' declared_type='BOOL'/>
|
1006
1006
|
</method>
|
1007
1007
|
<method selector='_releasePreparedStatements'>
|
1008
|
-
<retval
|
1008
|
+
<retval type='v' declared_type='void'/>
|
1009
1009
|
</method>
|
1010
1010
|
<method selector='_setIsOurTransaction:'>
|
1011
|
-
<arg name='value'
|
1012
|
-
<retval
|
1011
|
+
<arg name='value' index='0' type='B' declared_type='BOOL'/>
|
1012
|
+
<retval type='v' declared_type='void'/>
|
1013
1013
|
</method>
|
1014
1014
|
<method selector='_setupCachingSchema'>
|
1015
|
-
<retval
|
1015
|
+
<retval type='B' declared_type='BOOL'/>
|
1016
1016
|
</method>
|
1017
1017
|
<method selector='_storeDictionary:forKey:forClassNamed:usingSQLite3Statement:error:'>
|
1018
|
-
<arg name='someInfo'
|
1019
|
-
<arg name='aKey'
|
1020
|
-
<arg name='classType'
|
1021
|
-
<arg name='storeValuesStatement'
|
1022
|
-
<arg name='outError'
|
1023
|
-
<retval
|
1018
|
+
<arg name='someInfo' index='0' type='@' declared_type='NSDictionary*'/>
|
1019
|
+
<arg name='aKey' index='1' type='@' declared_type='NSString*'/>
|
1020
|
+
<arg name='classType' index='2' type='@' declared_type='NSString*'/>
|
1021
|
+
<arg name='storeValuesStatement' index='3' type='^{sqlite3_stmt=}' declared_type='sqlite3_stmt*'/>
|
1022
|
+
<arg name='outError' index='4' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1023
|
+
<retval type='B' declared_type='BOOL'/>
|
1024
1024
|
</method>
|
1025
1025
|
<method selector='_stringFromValue:'>
|
1026
|
-
<arg name='aValue'
|
1027
|
-
<retval
|
1026
|
+
<arg name='aValue' index='0' type='@' declared_type='id'/>
|
1027
|
+
<retval type='@' declared_type='NSString*'/>
|
1028
1028
|
</method>
|
1029
1029
|
<method selector='addObject:error:'>
|
1030
|
-
<arg name='theObject'
|
1031
|
-
<arg name='outError'
|
1032
|
-
<retval
|
1030
|
+
<arg name='theObject' index='0' type='@' declared_type='id'/>
|
1031
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1032
|
+
<retval type='B' declared_type='BOOL'/>
|
1033
1033
|
</method>
|
1034
1034
|
<method selector='addObjectsFromArray:error:'>
|
1035
|
-
<arg name='theObjects'
|
1036
|
-
<arg name='outError'
|
1037
|
-
<retval
|
1035
|
+
<arg name='theObjects' index='0' type='@' declared_type='NSArray*'/>
|
1036
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1037
|
+
<retval type='B' declared_type='BOOL'/>
|
1038
1038
|
</method>
|
1039
1039
|
<method selector='allObjectClasses'>
|
1040
|
-
<retval
|
1040
|
+
<retval type='@' declared_type='NSArray*'/>
|
1041
1041
|
</method>
|
1042
1042
|
<method selector='bagWithName:'>
|
1043
|
-
<arg name='theName'
|
1044
|
-
<retval
|
1043
|
+
<arg name='theName' index='0' type='@' declared_type='NSString*'/>
|
1044
|
+
<retval type='@' declared_type='NSFNanoBag*'/>
|
1045
1045
|
</method>
|
1046
1046
|
<method selector='bags'>
|
1047
|
-
<retval
|
1047
|
+
<retval type='@' declared_type='NSArray*'/>
|
1048
1048
|
</method>
|
1049
1049
|
<method selector='bagsContainingObjectWithKey:'>
|
1050
|
-
<arg name='theKey'
|
1051
|
-
<retval
|
1050
|
+
<arg name='theKey' index='0' type='@' declared_type='NSString*'/>
|
1051
|
+
<retval type='@' declared_type='NSArray*'/>
|
1052
1052
|
</method>
|
1053
1053
|
<method selector='bagsWithKeysInArray:'>
|
1054
|
-
<arg name='theKeys'
|
1055
|
-
<retval
|
1054
|
+
<arg name='theKeys' index='0' type='@' declared_type='NSArray*'/>
|
1055
|
+
<retval type='@' declared_type='NSArray*'/>
|
1056
1056
|
</method>
|
1057
1057
|
<method selector='beginTransactionAndReturnError:'>
|
1058
|
-
<arg name='outError'
|
1059
|
-
<retval
|
1058
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1059
|
+
<retval type='B' declared_type='BOOL'/>
|
1060
1060
|
</method>
|
1061
1061
|
<method selector='clearIndexesAndReturnError:'>
|
1062
|
-
<arg name='outError'
|
1063
|
-
<retval
|
1062
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1063
|
+
<retval type='B' declared_type='BOOL'/>
|
1064
1064
|
</method>
|
1065
1065
|
<method selector='closeWithError:'>
|
1066
|
-
<arg name='outError'
|
1067
|
-
<retval
|
1066
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1067
|
+
<retval type='B' declared_type='BOOL'/>
|
1068
1068
|
</method>
|
1069
1069
|
<method selector='commitTransactionAndReturnError:'>
|
1070
|
-
<arg name='outError'
|
1071
|
-
<retval
|
1070
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1071
|
+
<retval type='B' declared_type='BOOL'/>
|
1072
1072
|
</method>
|
1073
1073
|
<method selector='compactStoreAndReturnError:'>
|
1074
|
-
<arg name='outError'
|
1075
|
-
<retval
|
1074
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1075
|
+
<retval type='B' declared_type='BOOL'/>
|
1076
1076
|
</method>
|
1077
1077
|
<method selector='countOfObjectsOfClassNamed:'>
|
1078
|
-
<arg name='theClassName'
|
1079
|
-
<retval declared_type='long long'
|
1078
|
+
<arg name='theClassName' index='0' type='@' declared_type='NSString*'/>
|
1079
|
+
<retval type='q' declared_type='long long'/>
|
1080
1080
|
</method>
|
1081
|
-
<method selector='createAndOpenStoreWithType:path:error:'
|
1082
|
-
<arg name='theType'
|
1083
|
-
<arg name='thePath'
|
1084
|
-
<arg name='outError'
|
1085
|
-
<retval
|
1081
|
+
<method class_method='true' selector='createAndOpenStoreWithType:path:error:'>
|
1082
|
+
<arg name='theType' index='0' type='i' declared_type='NSFNanoStoreType'/>
|
1083
|
+
<arg name='thePath' index='1' type='@' declared_type='NSString*'/>
|
1084
|
+
<arg name='outError' index='2' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1085
|
+
<retval type='@' declared_type='NSFNanoStore*'/>
|
1086
1086
|
</method>
|
1087
|
-
<method selector='createStoreWithType:path:'
|
1088
|
-
<arg name='theType'
|
1089
|
-
<arg name='thePath'
|
1090
|
-
<retval
|
1087
|
+
<method class_method='true' selector='createStoreWithType:path:'>
|
1088
|
+
<arg name='theType' index='0' type='i' declared_type='NSFNanoStoreType'/>
|
1089
|
+
<arg name='thePath' index='1' type='@' declared_type='NSString*'/>
|
1090
|
+
<retval type='@' declared_type='NSFNanoStore*'/>
|
1091
1091
|
</method>
|
1092
1092
|
<method selector='description'>
|
1093
|
-
<retval
|
1093
|
+
<retval type='@' declared_type='NSString*'/>
|
1094
1094
|
</method>
|
1095
1095
|
<method selector='discardUnsavedChanges'>
|
1096
|
-
<retval
|
1096
|
+
<retval type='v' declared_type='void'/>
|
1097
1097
|
</method>
|
1098
1098
|
<method selector='filePath'>
|
1099
|
-
<retval
|
1099
|
+
<retval type='@' declared_type='NSString*'/>
|
1100
1100
|
</method>
|
1101
1101
|
<method selector='hasUnsavedChanges'>
|
1102
|
-
<retval
|
1102
|
+
<retval type='B' declared_type='BOOL'/>
|
1103
1103
|
</method>
|
1104
1104
|
<method selector='initStoreWithType:path:'>
|
1105
|
-
<arg name='theType'
|
1106
|
-
<arg name='thePath'
|
1107
|
-
<retval
|
1105
|
+
<arg name='theType' index='0' type='i' declared_type='NSFNanoStoreType'/>
|
1106
|
+
<arg name='thePath' index='1' type='@' declared_type='NSString*'/>
|
1107
|
+
<retval type='@' declared_type='id'/>
|
1108
1108
|
</method>
|
1109
1109
|
<method selector='isClosed'>
|
1110
|
-
<retval
|
1110
|
+
<retval type='B' declared_type='BOOL'/>
|
1111
1111
|
</method>
|
1112
1112
|
<method selector='nanoEngineProcessingMode'>
|
1113
|
-
<retval
|
1113
|
+
<retval type='i' declared_type='NSFEngineProcessingMode'/>
|
1114
1114
|
</method>
|
1115
1115
|
<method selector='nanoStoreEngine'>
|
1116
|
-
<retval
|
1116
|
+
<retval type='@' declared_type='NSFNanoEngine*'/>
|
1117
1117
|
</method>
|
1118
1118
|
<method selector='objectsOfClassNamed:'>
|
1119
|
-
<arg name='theClassName'
|
1120
|
-
<retval
|
1119
|
+
<arg name='theClassName' index='0' type='@' declared_type='NSString*'/>
|
1120
|
+
<retval type='@' declared_type='NSArray*'/>
|
1121
1121
|
</method>
|
1122
1122
|
<method selector='objectsOfClassNamed:usingSortDescriptors:'>
|
1123
|
-
<arg name='theClassName'
|
1124
|
-
<arg name='theSortDescriptors'
|
1125
|
-
<retval
|
1123
|
+
<arg name='theClassName' index='0' type='@' declared_type='NSString*'/>
|
1124
|
+
<arg name='theSortDescriptors' index='1' type='@' declared_type='NSArray*'/>
|
1125
|
+
<retval type='@' declared_type='NSArray*'/>
|
1126
1126
|
</method>
|
1127
1127
|
<method selector='objectsWithKeysInArray:'>
|
1128
|
-
<arg name='theKeys'
|
1129
|
-
<retval
|
1128
|
+
<arg name='theKeys' index='0' type='@' declared_type='NSArray*'/>
|
1129
|
+
<retval type='@' declared_type='NSArray*'/>
|
1130
1130
|
</method>
|
1131
1131
|
<method selector='openWithError:'>
|
1132
|
-
<arg name='outError'
|
1133
|
-
<retval
|
1132
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1133
|
+
<retval type='B' declared_type='BOOL'/>
|
1134
1134
|
</method>
|
1135
1135
|
<method selector='rebuildIndexesAndReturnError:'>
|
1136
|
-
<arg name='outError'
|
1137
|
-
<retval
|
1136
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1137
|
+
<retval type='B' declared_type='BOOL'/>
|
1138
1138
|
</method>
|
1139
1139
|
<method selector='removeAllObjectsFromStoreAndReturnError:'>
|
1140
|
-
<arg name='outError'
|
1141
|
-
<retval
|
1140
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1141
|
+
<retval type='B' declared_type='BOOL'/>
|
1142
1142
|
</method>
|
1143
1143
|
<method selector='removeObject:error:'>
|
1144
|
-
<arg name='theObject'
|
1145
|
-
<arg name='outError'
|
1146
|
-
<retval
|
1144
|
+
<arg name='theObject' index='0' type='@' declared_type='id'/>
|
1145
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1146
|
+
<retval type='B' declared_type='BOOL'/>
|
1147
1147
|
</method>
|
1148
1148
|
<method selector='removeObjectsInArray:error:'>
|
1149
|
-
<arg name='theObjects'
|
1150
|
-
<arg name='outError'
|
1151
|
-
<retval
|
1149
|
+
<arg name='theObjects' index='0' type='@' declared_type='NSArray*'/>
|
1150
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1151
|
+
<retval type='B' declared_type='BOOL'/>
|
1152
1152
|
</method>
|
1153
1153
|
<method selector='removeObjectsWithKeysInArray:error:'>
|
1154
|
-
<arg name='theKeys'
|
1155
|
-
<arg name='outError'
|
1156
|
-
<retval
|
1154
|
+
<arg name='theKeys' index='0' type='@' declared_type='NSArray*'/>
|
1155
|
+
<arg name='outError' index='1' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1156
|
+
<retval type='B' declared_type='BOOL'/>
|
1157
1157
|
</method>
|
1158
1158
|
<method selector='rollbackTransactionAndReturnError:'>
|
1159
|
-
<arg name='outError'
|
1160
|
-
<retval
|
1159
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1160
|
+
<retval type='B' declared_type='BOOL'/>
|
1161
1161
|
</method>
|
1162
1162
|
<method selector='saveInterval'>
|
1163
|
-
<retval
|
1163
|
+
<retval type='I' declared_type='NSUInteger'/>
|
1164
1164
|
</method>
|
1165
1165
|
<method selector='saveStoreAndReturnError:'>
|
1166
|
-
<arg name='outError'
|
1167
|
-
<retval
|
1166
|
+
<arg name='outError' index='0' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1167
|
+
<retval type='B' declared_type='BOOL'/>
|
1168
1168
|
</method>
|
1169
1169
|
<method selector='saveStoreToDirectoryAtPath:compactDatabase:error:'>
|
1170
|
-
<arg name='thePath'
|
1171
|
-
<arg name='shouldCompact'
|
1172
|
-
<arg name='outError'
|
1173
|
-
<retval
|
1170
|
+
<arg name='thePath' index='0' type='@' declared_type='NSString*'/>
|
1171
|
+
<arg name='shouldCompact' index='1' type='B' declared_type='BOOL'/>
|
1172
|
+
<arg name='outError' index='2' type_modifier='o' type='^@' declared_type='NSError**'/>
|
1173
|
+
<retval type='B' declared_type='BOOL'/>
|
1174
1174
|
</method>
|
1175
1175
|
<method selector='setNanoEngineProcessingMode:'>
|
1176
|
-
<arg name='nanoEngineProcessingMode'
|
1177
|
-
<retval
|
1176
|
+
<arg name='nanoEngineProcessingMode' index='0' type='i' declared_type='NSFEngineProcessingMode'/>
|
1177
|
+
<retval type='v' declared_type='void'/>
|
1178
1178
|
</method>
|
1179
1179
|
<method selector='setNanoStoreEngine:'>
|
1180
|
-
<arg name='nanoStoreEngine'
|
1181
|
-
<retval
|
1180
|
+
<arg name='nanoStoreEngine' index='0' type='@' declared_type='NSFNanoEngine*'/>
|
1181
|
+
<retval type='v' declared_type='void'/>
|
1182
1182
|
</method>
|
1183
1183
|
<method selector='setSaveInterval:'>
|
1184
|
-
<arg name='saveInterval'
|
1185
|
-
<retval
|
1184
|
+
<arg name='saveInterval' index='0' type='I' declared_type='NSUInteger'/>
|
1185
|
+
<retval type='v' declared_type='void'/>
|
1186
1186
|
</method>
|
1187
1187
|
</class>
|
1188
1188
|
<class name='NSObject'>
|
1189
1189
|
<method selector='initNanoObjectFromDictionaryRepresentation:forKey:store:'>
|
1190
|
-
<arg name='theDictionary'
|
1191
|
-
<arg name='aKey'
|
1192
|
-
<arg name='theStore'
|
1193
|
-
<retval
|
1190
|
+
<arg name='theDictionary' index='0' type='@' declared_type='NSDictionary*'/>
|
1191
|
+
<arg name='aKey' index='1' type='@' declared_type='NSString*'/>
|
1192
|
+
<arg name='theStore' index='2' type='@' declared_type='NSFNanoStore*'/>
|
1193
|
+
<retval type='@' declared_type='id'/>
|
1194
1194
|
</method>
|
1195
1195
|
<method selector='nanoObjectDictionaryRepresentation'>
|
1196
|
-
<retval
|
1196
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
1197
1197
|
</method>
|
1198
1198
|
<method selector='nanoObjectKey'>
|
1199
|
-
<retval
|
1199
|
+
<retval type='@' declared_type='NSString*'/>
|
1200
1200
|
</method>
|
1201
1201
|
<method selector='rootObject'>
|
1202
|
-
<retval
|
1202
|
+
<retval type='@' declared_type='id'/>
|
1203
1203
|
</method>
|
1204
1204
|
</class>
|
1205
1205
|
<informal_protocol name='NSFNanoObjectProtocol'>
|
1206
|
-
<method type='@20@0:4@8@12@16'
|
1207
|
-
<arg name='theDictionary'
|
1208
|
-
<arg name='aKey'
|
1209
|
-
<arg name='theStore'
|
1210
|
-
<retval
|
1206
|
+
<method selector='initNanoObjectFromDictionaryRepresentation:forKey:store:' type='@20@0:4@8@12@16'>
|
1207
|
+
<arg name='theDictionary' index='0' type='@' declared_type='NSDictionary*'/>
|
1208
|
+
<arg name='aKey' index='1' type='@' declared_type='NSString*'/>
|
1209
|
+
<arg name='theStore' index='2' type='@' declared_type='NSFNanoStore*'/>
|
1210
|
+
<retval type='@' declared_type='id'/>
|
1211
1211
|
</method>
|
1212
|
-
<method type='@8@0:4'
|
1213
|
-
<retval
|
1212
|
+
<method selector='nanoObjectDictionaryRepresentation' type='@8@0:4'>
|
1213
|
+
<retval type='@' declared_type='NSDictionary*'/>
|
1214
1214
|
</method>
|
1215
|
-
<method type='@8@0:4'
|
1216
|
-
<retval
|
1215
|
+
<method selector='nanoObjectKey' type='@8@0:4'>
|
1216
|
+
<retval type='@' declared_type='NSString*'/>
|
1217
1217
|
</method>
|
1218
|
-
<method type='@8@0:4'
|
1219
|
-
<retval
|
1218
|
+
<method selector='rootObject' type='@8@0:4'>
|
1219
|
+
<retval type='@' declared_type='id'/>
|
1220
1220
|
</method>
|
1221
1221
|
</informal_protocol>
|
1222
1222
|
</signatures>
|