blob: 96132de6a25dd723dd70ac0cacd1d7570ca49c41 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 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.internal.impl;
import javax.wsdl.Message;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.wst.wsdl.Input;
import org.eclipse.wst.wsdl.WSDLPackage;
import org.eclipse.wst.wsdl.util.WSDLConstants;
import org.w3c.dom.Element;
/**
* <!-- begin-user-doc -->
* An implementation of the model object '<em><b>Input</b></em>'.
* <!-- end-user-doc -->
* <p>
* </p>
*
* @generated
*/
public class InputImpl extends MessageReferenceImpl implements Input
{
/**
* This class is not intended to be serialized.
* serialVersionUID is assigned with 1L to avoid
* compiler warning messages.
*/
private static final long serialVersionUID = 1L;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected InputImpl()
{
super();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected EClass eStaticClass()
{
return WSDLPackage.Literals.INPUT;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public javax.wsdl.Message getMessage()
{
return getEMessage();
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated NOT
*/
public void setMessage(Message message)
{
setEMessage((org.eclipse.wst.wsdl.Message)message);
}
public Element createElement()
{
Element newElement = createElement(WSDLConstants.INPUT);
setElement(newElement);
return newElement;
}
} //InputImpl