* used for this transformation's database target.
* @throws NullPointerException if <code>mode</code> is <cod>null</code>
* @see #getDbInsertMode()
*/
public void setDbInsertMode(DbInsertMode mode) {
DbInsertMode old = getDbInsertMode();
setProperty(INSERT_MODE, mode.getId());
if (mode != old) {
firePropertyChange(INSERT_MODE, old, mode);
}
}