authorCell.setForeground( new Color( ui.getDisplay(), new RGB( 123, 123, 123 ) ) );
authorCell.setFont( new Font( ui.getDisplay(), new FontData( "Verdana", 14, SWT.NONE ) ) );
}
private static void addTitleCell( Template template ) {
TextCell titleCell = new TextCell( template );
titleCell.setBindingIndex( 1 );
titleCell.setLeft( 52 ).setRight( 10 ).setTop( 12 ).setBottom( 0 );
titleCell.setFont( new Font( ui.getDisplay(), new FontData( "Verdana", 18, SWT.NONE ) ) );
titleCell.setForeground( new Color( ui.getDisplay(), new RGB( 74, 74, 74 ) ) );
}