/******************************************************************************* * Copyright (c) 2010 SAP AG. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Emil Simeonov - initial API and implementation. * Dimitar Donchev - initial API and implementation. * Dimitar Tenev - initial API and implementation. * Nevena Manova - initial API and implementation. * Georgi Konstantinov - initial API and implementation. *******************************************************************************/ package org.eclipse.wst.sse.sieditor.model.validation.constraints.soap; import org.eclipse.core.runtime.IStatus; import org.eclipse.emf.validation.IValidationContext; import org.eclipse.emf.validation.model.ConstraintStatus; import org.eclipse.wst.wsdl.BindingFault; import org.eclipse.wst.wsdl.WSDLElement; import org.eclipse.wst.wsdl.binding.soap.SOAPFault; import org.eclipse.wst.sse.sieditor.model.i18n.Messages; import org.eclipse.wst.sse.sieditor.model.validation.constraints.AbstractConstraint; public class FaultName extends AbstractConstraint{ @Override protected IStatus doValidate(IValidationContext ctx) { SOAPFault fault = (SOAPFault) ctx.getTarget(); String name = fault.getName(); if (name != null) { WSDLElement parent = fault.getContainer(); if (parent instanceof BindingFault) { String parentName = ((BindingFault) parent).getName(); if (!name.equals(parentName)) { return ConstraintStatus.createStatus(ctx, fault, null, Messages.SOAPFaultName_0, name, parentName); } } } return ConstraintStatus.createSuccessStatus(ctx, fault, null); } @Override protected boolean shouldExecute(IValidationContext ctx) { return true; } }