// // MPT_CERT3_4_Weights.m // // Created by Andrew Salamon on 9/25/06. // Copyright 2006 __MyCompanyName__. All rights reserved. // #import "MPT_CERT3_4_Weights.h" @interface MPT_CERT3_4_Weights(PrivateMethods) - (void)loadTooltips; @end @implementation MPT_CERT3_4_Weights - (NSString *)pluginID { NSString *ident = [super pluginID]; if( [ident length] > 0 ) return ident; return @"edu.ucsd.mplab.plugins.CERT4_0_Weights"; } - (NSString *)localizedName { return NSLocalizedStringFromTableInBundle(@"FACS Codes 4.0", nil, [self bundle], @""); } - (NSString *)internalName { return @"CERT4_0_Weights"; } - (NSString *)weightsDirectory { return [[[self bundle] resourcePath] stringByAppendingPathComponent:@"Weights"]; } @end