ColumnDefinition annotation = method.getAnnotation(RowValue.ColumnDefinition.class);
String methodName = method.getName();
String returnType = method.getReturnType().getSimpleSourceName();
if (returnType.equals(String.class.getSimpleName())) {
srcWriter.println("addColumnDefinition(new TextColumnDefinition<"
+ rowValue.getSimpleSourceName() + ">(\"" + annotation.header()
+ "\"," + annotation.sortable() + "," + annotation.filterable()
+ "," + annotation.editable() + ") {");
srcWriter.indent();
srcWriter.println("public String getCellValue("
+ rowValue.getSimpleSourceName() + " value) {");