12345678910111213141516171819202122232425262728293031323334353637 |
-
-
- #import "ZXISBNParsedResult.h"
-
- @implementation ZXISBNParsedResult
-
- - (id)initWithIsbn:(NSString *)isbn {
- if (self = [super initWithType:kParsedResultTypeISBN]) {
- _isbn = isbn;
- }
-
- return self;
- }
-
- + (id)isbnParsedResultWithIsbn:(NSString *)isbn {
- return [[self alloc] initWithIsbn:isbn];
- }
-
- - (NSString *)displayResult {
- return self.isbn;
- }
-
- @end
|