13 lines
261 B
C
Raw Normal View History

2002-02-23 03:40:24 +00:00
#import <Foundation/Foundation.h>
@interface Element : NSObject
{
NSString *label;
NSString *type;
}
- (id)initWithType:(NSString *)typeValue andLabel:(NSString *)labelValue;
+ (id)elementOfType:(NSString *)typeValue withLabel:(NSString *)labelValue;
@end