Package org.jitterbit.integration.data.project.validation

Examples of org.jitterbit.integration.data.project.validation.ValidationModelEvent


    private ValidationResult validateSingleItem(IntegrationEntity e) {
        return e.validate(context);
    }
   
    private void fireEntityValidated(Set<IntegrationEntity> validated) {
        ValidationModelEvent evt = new ValidationModelEvent(this, validated);
        for (ValidationModelListener lst : listeners) {
            lst.itemWasValidated(evt);
        }
    }
View Full Code Here


            lst.itemWasValidated(evt);
        }
    }
   
    private void fireProjectValidated() {
        ValidationModelEvent evt = new ValidationModelEvent(this, project.getProject());
        for (ValidationModelListener lst : listeners) {
            lst.projectWasValidated(evt);
        }
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.data.project.validation.ValidationModelEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.