/******************************************************************************* * Copyright (c) 2001, 2005 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; import javax.xml.namespace.QName; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Message'. * @since 1.0 * @ignore * * * * This class represents a WSDL message element. A WSDL message is an abstract, typed definition of the data being communicated. * * *

* The following features are supported: *

*

* * @see org.eclipse.wsdl.WSDLPackage#getMessage() * @model * @generated */ public interface Message extends WSDLElement, javax.wsdl.Message{ /** * Returns the value of the 'QName' attribute. * *

* If the meaning of the 'QName' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'QName' attribute. * @see #setQName(QName) * @see org.eclipse.wsdl.WSDLPackage#getMessage_QName() * @model dataType="org.eclipse.wsdl.QName" * @generated */ QName getQName(); /** * Sets the value of the '{@link org.eclipse.wsdl.Message#getQName QName}' attribute. * * * @param value the new value of the 'QName' attribute. * @see #getQName() * @generated */ void setQName(QName value); /** * Returns the value of the 'Undefined' attribute. * *

* If the meaning of the 'Undefined' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Undefined' attribute. * @see #setUndefined(boolean) * @see org.eclipse.wsdl.WSDLPackage#getMessage_Undefined() * @model * @generated */ boolean isUndefined(); /** * Sets the value of the '{@link org.eclipse.wsdl.Message#isUndefined Undefined}' attribute. * * * @param value the new value of the 'Undefined' attribute. * @see #isUndefined() * @generated */ void setUndefined(boolean value); /** * Returns the value of the 'EParts' containment reference list. * The list contents are of type {@link org.eclipse.wsdl.Part}. * *

* If the meaning of the 'EParts' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EParts' containment reference list. * @see org.eclipse.wsdl.WSDLPackage#getMessage_EParts() * @model type="org.eclipse.wsdl.Part" containment="true" * @generated */ EList getEParts(); } // Message