* updateByPrimaryKey 3. Else the method name should be
* updateByPrimaryKeyWithoutBLOBs
*/
public String getUpdateByPrimaryKeyWithoutBLOBsMethodName(
IntrospectedTable introspectedTable) {
Rules rules = introspectedTable.getRules();
if (!rules.generateUpdateByPrimaryKeyWithBLOBs()) {
return "updateByPrimaryKey"; //$NON-NLS-1$
} else if (rules.generateRecordWithBLOBsClass()) {
return "updateByPrimaryKey"; //$NON-NLS-1$
} else {
return "updateByPrimaryKeyWithoutBLOBs"; //$NON-NLS-1$
}
}