// // MLR2_Controller.m // // Created by Andrew Salamon on 9/25/06. // Copyright 2006 __MyCompanyName__. All rights reserved. // #import "MLR2_Controller.h" @interface MLR2_Controller(PrivateMethods) - (void)loadTooltips; @end @implementation MLR2_Controller - (NSString *)pluginID { NSString *ident = [super pluginID]; if( [ident length] > 0 ) return ident; return @"edu.ucsd.mplab.plugins.MLR2_Weights"; } - (NSString *)localizedName { return NSLocalizedStringFromTableInBundle(@"MLR", nil, [NSBundle bundleForClass:[self class]], @""); } - (NSString *)internalName { return @"MLR_2008"; } @end