blob: 6637cf88c9f62d09bf952e4ef8399dcb7a5df960 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Port Type</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* This class represents a WSDL portType element of the WSDL specification version 1.1 and an Interface component of the WSDL specification version 1.2. A port type or Interface is a named set of abstract operations and the abstract messages involved.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.wsdl.PortType#getQName <em>QName</em>}</li>
* <li>{@link org.eclipse.wsdl.PortType#isUndefined <em>Undefined</em>}</li>
* <li>{@link org.eclipse.wsdl.PortType#isProxy <em>Proxy</em>}</li>
* <li>{@link org.eclipse.wsdl.PortType#getResourceURI <em>Resource URI</em>}</li>
* <li>{@link org.eclipse.wsdl.PortType#getEOperations <em>EOperations</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.wsdl.WSDLPackage#getPortType()
* @model
* @generated
*/
public interface PortType extends WSDLElement, javax.wsdl.PortType{
/**
* Returns the value of the '<em><b>QName</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>QName</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>QName</em>' attribute.
* @see #setQName(QName)
* @see org.eclipse.wsdl.WSDLPackage#getPortType_QName()
* @model dataType="org.eclipse.wsdl.QName"
* @generated
*/
QName getQName();
/**
* Sets the value of the '{@link org.eclipse.wsdl.PortType#getQName <em>QName</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>QName</em>' attribute.
* @see #getQName()
* @generated
*/
void setQName(QName value);
/**
* Returns the value of the '<em><b>Undefined</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Undefined</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Undefined</em>' attribute.
* @see #setUndefined(boolean)
* @see org.eclipse.wsdl.WSDLPackage#getPortType_Undefined()
* @model
* @generated
*/
boolean isUndefined();
/**
* Sets the value of the '{@link org.eclipse.wsdl.PortType#isUndefined <em>Undefined</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Undefined</em>' attribute.
* @see #isUndefined()
* @generated
*/
void setUndefined(boolean value);
/**
* Returns the value of the '<em><b>EOperations</b></em>' containment reference list.
* The list contents are of type {@link org.eclipse.wsdl.Operation}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>EOperations</em>' containment reference list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>EOperations</em>' containment reference list.
* @see org.eclipse.wsdl.WSDLPackage#getPortType_EOperations()
* @model type="org.eclipse.wsdl.Operation" containment="true"
* @generated
*/
EList getEOperations();
} // PortType