aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/QueryKit/QKQueryParameter.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2011-09-10 22:58:45 +0000
committerstuconnolly <stuart02@gmail.com>2011-09-10 22:58:45 +0000
commite4dc361f7cd4b8a5062f58548427a5f542917a7f (patch)
tree5cc5ce6961a9990cf547ccf3ba869e8890192573 /Frameworks/QueryKit/QKQueryParameter.h
parent1538a53adfea8d8238dd23d36c1207938b4d8439 (diff)
downloadsequelpro-e4dc361f7cd4b8a5062f58548427a5f542917a7f.tar.gz
sequelpro-e4dc361f7cd4b8a5062f58548427a5f542917a7f.tar.bz2
sequelpro-e4dc361f7cd4b8a5062f58548427a5f542917a7f.zip
QueryKit additions.
Diffstat (limited to 'Frameworks/QueryKit/QKQueryParameter.h')
-rw-r--r--Frameworks/QueryKit/QKQueryParameter.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/Frameworks/QueryKit/QKQueryParameter.h b/Frameworks/QueryKit/QKQueryParameter.h
index b7685f9d..3a24eb8d 100644
--- a/Frameworks/QueryKit/QKQueryParameter.h
+++ b/Frameworks/QueryKit/QKQueryParameter.h
@@ -32,6 +32,13 @@
#import "QKQueryOperators.h"
+/**
+ * @class QKQueryParameter QKQueryParameter.h
+ *
+ * @author Stuart Connolly http://stuconnolly.com/
+ *
+ * QueryKit query parameter class.
+ */
@interface QKQueryParameter : NSObject
{
NSString *_field;
@@ -42,17 +49,17 @@
}
/**
- *
+ * @property _field The field component of the parameter.
*/
@property (readwrite, retain, getter=field, setter=setField:) NSString *_field;
/**
- *
+ * @property _operator The operator component of the parameter.
*/
@property (readwrite, assign, getter=operator, setter=setOperator:) QKQueryOperator _operator;
/**
- *
+ *@property _value The value component of the parameter.
*/
@property (readwrite, retain, getter=value, setter=setValue:) id _value;