blob: 0868d0f11289d4add3e0923a984bf2c11ecd7bf8 [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.commands;
import org.eclipse.wst.wsdl.Operation;
import org.eclipse.wst.wsdl.Output;
import org.eclipse.wst.wsdl.Part;
import org.eclipse.wst.wsdl.ui.internal.util.NameUtil;
public class AddOutputParameterCommand extends AddBaseParameterCommand {
public AddOutputParameterCommand(Operation operation, int style) {
super(operation, style);
}
/*
*
*/
public void run() {
Part part = null;
if (operation.getEOutput() != null) {
part = createWSDLComponents(operation.getEOutput());
}
else {
AddOutputCommand command = new AddOutputCommand(operation, null);
command.run();
Output output = (Output) command.getWSDLElement();
part = createWSDLComponents(output);
}
// Create necessary XSD Objects starting with the Part reference
newXSDElement = createXSDObjects(part);
}
protected String getAnonymousXSDElementBaseName() {
if (newAnonymousXSDElementName == null) {
newAnonymousXSDElementName = operation.getName() + "Response"; //$NON-NLS-1$
}
return newAnonymousXSDElementName;
}
protected String getNewXSDElementBaseName() {
if (newXSDElementName == null) {
newXSDElementName = "output"; //$NON-NLS-1$
}
return newXSDElementName;
}
protected String getWSDLMessageName() {
if (newWSDLMessageName == null) {
if (operation.getEOutput() != null) {
newWSDLMessageName= NameUtil.getMessageName(operation.getEOutput());
}
}
return newWSDLMessageName;
}
protected String getWSDLPartName() {
if (newWSDLPartName == null) {
newWSDLPartName = NameUtil.getPartName(operation.getEOutput());
}
return newWSDLPartName;
}
}