}
}
protected Object doGetValueAt(int row, int column) {
BootstrapMethodsEntry bootstrapMethodsEntry = bootstrapMethods[row];
switch (column) {
case BOOTSTRAP_METHOD_REF_INFO_INDEX_COLUMN_INDEX:
return createCommentLink(bootstrapMethodsEntry.getMethodRefIndex());
case BOOTSTRAP_ARGUMENTS_INFO_INDEX_COLUMN_INDEX:
return bootstrapMethodsEntry.getVerbose().replace("\n", "<br>");
default:
return "";
}
}