Added missing methods for object value

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@7400 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2000-09-05 22:05:28 +00:00
parent 94fc19b2a6
commit e55aa22758

View file

@ -79,16 +79,23 @@
// //
// Setting the Control's Value // Setting the Control's Value
// //
- (double)doubleValue;
- (float)floatValue;
- (int)intValue;
- (void) setDoubleValue: (double)aDouble; - (void) setDoubleValue: (double)aDouble;
- (double) doubleValue;
- (void) setFloatValue: (float)aFloat; - (void) setFloatValue: (float)aFloat;
- (float) floatValue;
- (void) setIntValue: (int)anInt; - (void) setIntValue: (int)anInt;
- (void)setNeedsDisplay; - (int) intValue;
- (void) setStringValue: (NSString *)aString; - (void) setStringValue: (NSString *)aString;
- (NSString *) stringValue; - (NSString *) stringValue;
- (void) setObjectValue: (id)anObject;
- (id) objectValue;
- (void) setNeedsDisplay;
// //
// Interacting with Other Controls // Interacting with Other Controls
// //
@ -96,6 +103,7 @@
- (void) takeFloatValueFrom: (id)sender; - (void) takeFloatValueFrom: (id)sender;
- (void) takeIntValueFrom: (id)sender; - (void) takeIntValueFrom: (id)sender;
- (void) takeStringValueFrom: (id)sender; - (void) takeStringValueFrom: (id)sender;
- (void) takeObjectValueFrom: (id)sender;
// //
// Formatting Text // Formatting Text