implements PropertyChangeListener, ValidationListener {
private final ProjectPropertyChangeSupport changeSupport;
public ProjectChangeHandler(IntegrationProject project) {
changeSupport = new ProjectPropertyChangeSupport(project);
changeSupport.addPropertyChangeListener(IntegrationEntity.PROPERTY_NAME, this);
changeSupport.addValidationListener(this);
project.addProjectListener(this);
}