/******************************************************************************* * 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.xsd.XSDElementDeclaration; import org.eclipse.xsd.XSDTypeDefinition; /** * * A representation of the model object 'Part'. * @since 1.0 * @ignore * * * * This class represents a WSDL part element. Parts describe the logical abstract content of a message. Each part is associated with a type from some type system. * * *

* The following features are supported: *

*

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

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.wsdl.WSDLPackage#getPart_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.wsdl.Part#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Element Name' attribute. * *

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

* * @return the value of the 'Element Name' attribute. * @see #setElementName(QName) * @see org.eclipse.wsdl.WSDLPackage#getPart_ElementName() * @model dataType="org.eclipse.wsdl.QName" * @generated */ QName getElementName(); /** * Sets the value of the '{@link org.eclipse.wsdl.Part#getElementName Element Name}' attribute. * * * @param value the new value of the 'Element Name' attribute. * @see #getElementName() * @generated */ void setElementName(QName value); /** * Returns the value of the 'Type Name' attribute. * *

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

* * @return the value of the 'Type Name' attribute. * @see #setTypeName(QName) * @see org.eclipse.wsdl.WSDLPackage#getPart_TypeName() * @model dataType="org.eclipse.wsdl.QName" * @generated */ QName getTypeName(); /** * Sets the value of the '{@link org.eclipse.wsdl.Part#getTypeName Type Name}' attribute. * * * @param value the new value of the 'Type Name' attribute. * @see #getTypeName() * @generated */ void setTypeName(QName value); /** * Returns the value of the 'Type Definition' reference. * *

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

* * @return the value of the 'Type Definition' reference. * @see #setTypeDefinition(XSDTypeDefinition) * @see org.eclipse.wsdl.WSDLPackage#getPart_TypeDefinition() * @model * @generated */ XSDTypeDefinition getTypeDefinition(); /** * Sets the value of the '{@link org.eclipse.wsdl.Part#getTypeDefinition Type Definition}' reference. * * * @param value the new value of the 'Type Definition' reference. * @see #getTypeDefinition() * @generated */ void setTypeDefinition(XSDTypeDefinition value); /** * Returns the value of the 'Element Declaration' reference. * *

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

* * @return the value of the 'Element Declaration' reference. * @see #setElementDeclaration(XSDElementDeclaration) * @see org.eclipse.wsdl.WSDLPackage#getPart_ElementDeclaration() * @model * @generated */ XSDElementDeclaration getElementDeclaration(); /** * Sets the value of the '{@link org.eclipse.wsdl.Part#getElementDeclaration Element Declaration}' reference. * * * @param value the new value of the 'Element Declaration' reference. * @see #getElementDeclaration() * @generated */ void setElementDeclaration(XSDElementDeclaration value); /** * Returns the value of the 'EMessage' reference. * *

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

* * @return the value of the 'EMessage' reference. * @see #setEMessage(Message) * @see org.eclipse.wsdl.WSDLPackage#getPart_EMessage() * @model * @generated */ Message getEMessage(); /** * Sets the value of the '{@link org.eclipse.wsdl.Part#getEMessage EMessage}' reference. * * * @param value the new value of the 'EMessage' reference. * @see #getEMessage() * @generated */ void setEMessage(Message value); } // Part