Replaceable Attribute. More...
#import <SimpleDBReplaceableAttribute.h>
Public Member Functions | |
(id) | - init |
Default constructor for a new ReplaceableAttribute object. | |
(id) | - initWithName:andValue:andReplace: |
Constructs a new ReplaceableAttribute object. | |
(NSString *) | - description |
Returns a string representation of this object; useful for testing and debugging. | |
Properties | |
NSString * | name |
The name of the replaceable attribute. | |
NSString * | value |
The value of the replaceable attribute. | |
bool | replace |
A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. |
Replaceable Attribute.
- (NSString* SimpleDBReplaceableAttribute.)description |
Returns a string representation of this object; useful for testing and debugging.
- (id SimpleDBReplaceableAttribute.)init |
Default constructor for a new ReplaceableAttribute object.
Callers should use the property methods to initialize this object after creating it.
- (id SimpleDBReplaceableAttribute.)initWithName: | (NSString *) | theName | ||
andValue: | (NSString *) | theValue | ||
andReplace: | (bool) | theReplace | ||
Constructs a new ReplaceableAttribute object.
Callers should use properties to initialize any additional object members.
theName | The name of the replaceable attribute. | |
theValue | The value of the replaceable attribute. | |
theReplace | A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false . |
- (bool) replace [read, write, assign] |
A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair.
The default setting is false
.