1module PDFViewOverrides
2  def new_definition
3    case @name
4    when 'selectAll:'
5      return '- (IBAction)selectAll:(id)sender'
6    when 'printWithInfo:autoRotate:'
7      return '- (void)printWithInfo:(NSPrintInfo *)printInfo autoRotate:(BOOL)doRotate'
8    when 'allowsDragging'
9      return '- (BOOL)allowsDragging'
10    end
11  end
12end