Examples of logValidationMessages()


Examples of com.salesforce.ide.api.metadata.types.MetadataValidationEventCollector.logValidationMessages()

                metadataExt = localComponent.getMetadataExtFromBody(true, metadataValidationEventCollector);

                // if validation issues are found, we have a conflict
                if (metadataValidationEventCollector.hasValidationIssues()) {
                    if (metadataExt != null) {
                        metadataValidationEventCollector.logValidationMessages(metadataExt.getFullName());
                    }
                    // store conflict and continue to next bypassing phase two
                    addConflict(upgradeConflicts, localComponent, remoteComponent);

                    if (logger.isDebugEnabled()) {
View Full Code Here

Examples of com.salesforce.ide.api.metadata.types.MetadataValidationEventCollector.logValidationMessages()

            } catch (UnmarshalException e) {
                // sometimes, for some reason, parsing issues will throw an exception despite
                // MetadataValidationEventCollector.failOnValidateError used in
                // MetadataValidationEventCollector.handleEvent to capture parsing issues and enable recovery
                if (metadataExt != null) {
                    metadataValidationEventCollector.logValidationMessages(metadataExt.getFullName());
                }
                // store conflict and continue to next bypassing phase two
                addConflict(upgradeConflicts, localComponent, remoteComponent);

                if (logger.isDebugEnabled()) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.