StringBuilder sb = new StringBuilder();
sb.append("update"); //$NON-NLS-1$
sb.append(introspectedTable.getFullyQualifiedTable()
.getDomainObjectName());
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByExampleWithoutBLOBs()) {
sb.append("ByExample"); //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
sb.append("ByExample"); //$NON-NLS-1$
} else {
sb.append("ByExampleWithBLOBs"); //$NON-NLS-1$
}