There are really three steps:
Person_DTO dto = person.getDTO();
dto.setAddress1("invalid value");
person.setDTO(dto);
Necessary Change Handlers will fire to validate the change to this "person" object as well as other cascading events as specified in the entity's change handlers.