home *** CD-ROM | disk | FTP | other *** search
-
- #import <appkit/appkit.h>
- #import <dbkit/dbkit.h>
-
- @interface Tester:Object
- {
- id DBTV;
- }
-
- - appDidInit:sender;
-
- - (unsigned int)rowCount;
- - (unsigned int)columnCount;
-
- - getValueFor:rowIdentifier :columnIdentifier into:aValue;
- - getValueFor:identifier at:(unsigned int)aPosition into:aValue;
-
- - setValueFor:rowIdentifier :columnIdentifier from:aValue;
- - setValueFor:identifier at:(unsigned int)aPosition from:aValue;
-
-
- @end
-
- @interface SimpleProperty:Object <DBProperties>
- {
- char *myName;
- }
-
- - init;
- - (const char *)name;
- - (BOOL)setName:(const char *)aName;
- - (id <DBEntities>)entity;
-
- - (BOOL)isKey;
- - (BOOL)isReadOnly;
- - (BOOL)isSingular;
- - (BOOL)matchesProperty:(id <DBProperties>)aProperty;
- - (id <DBTypes>)propertyType;
-
- @end
-
-