2
0
MasterPassword/OnePassword/OPElementGeneratedEntity.m
2012-01-25 00:30:43 +01:00

30 lines
712 B
Objective-C

//
// OPElementGeneratedEntity.m
// OnePassword
//
// Created by Maarten Billemont on 16/01/12.
// Copyright (c) 2012 Lyndir. All rights reserved.
//
#import "OPElementGeneratedEntity.h"
#import "OPAppDelegate.h"
@implementation OPElementGeneratedEntity
@dynamic counter;
- (id)content {
if (![self.name length])
return nil;
if (self.type & OPElementTypeClassCalculated)
return OPCalculateContent(self.type, self.name, [OPAppDelegate get].keyPhrase, self.counter);
@throw [NSException exceptionWithName:NSInternalInconsistencyException
reason:[NSString stringWithFormat:@"Unsupported type: %d", self.type] userInfo:nil];
}
@end