blob: dfaccaf566baee798c4b989079b707307ce1d302 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2006 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.wsdl.ui.internal.adapters.commands;
import org.eclipse.gef.commands.Command;
import org.eclipse.wst.wsdl.Fault;
import org.eclipse.wst.wsdl.Operation;
import org.eclipse.wst.wsdl.ui.internal.commands.AddBaseParameterCommand;
import org.eclipse.wst.wsdl.ui.internal.commands.AddFaultParameterCommand;
public class W11AddFaultParameterCommand extends Command {
protected Operation operation;
protected Fault fault;
public W11AddFaultParameterCommand(Operation operation, Fault fault) {
this.operation = operation;
this.fault = fault;
}
public void execute() {
// Determine which Pattern we should use. For example, ADDBaseParameterCommand.PART_ELEMENT_SEQ_ELEMENT
// int pattern = getParameterPattern();
AddFaultParameterCommand command = new AddFaultParameterCommand(operation, fault);
command.setStyle(AddBaseParameterCommand.PART_ELEMENT_SEQ_ELEMENT);
command.run();
}
// private int getParameterPattern() {
// int pattern = AddBaseParameterCommand.PART_ELEMENT_SEQ_ELEMENT;
//
// if (operation.getEInput() != null) {
// Input input = operation.getEInput();
//
// if (input.getEMessage() != null) {
// Message message = input.getEMessage();
// List parts = message.getEParts();
//
// if (parts.size() > 0) {
// Part part = (Part) parts.get(0);
// if (part.getTypeDefinition() != null) {
// pattern = AddBaseParameterCommand.PART_COMPLEXTYPE_SEQ_ELEMENT;
// }
// }
// }
// }
//
// return pattern;
// }
}