use of org.eclipse.vorto.repository.core.impl.validation.ModelReferencesValidation in project vorto by eclipse.
the class JcrModelRepository method createValidators.
@PostConstruct
public void createValidators() {
this.validators.add(new DuplicateModelValidation(this));
this.validators.add(new ModelReferencesValidation(this));
this.validators.add(new TypeImportValidation());
}
Aggregations