blob: beb70d78e63b75d48786f2fef3c9ffd581caf47d [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;
import org.eclipse.xsd.XSDSchema;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Import</b></em>'.
* @since 1.0
* @ignore
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* This class represents WSDL import element. WSDL allows associating a namespace with a document location using an import element.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.wst.wsdl.Import#getNamespaceURI <em>Namespace URI</em>}</li>
* <li>{@link org.eclipse.wst.wsdl.Import#getLocationURI <em>Location URI</em>}</li>
* <li>{@link org.eclipse.wst.wsdl.Import#getEDefinition <em>EDefinition</em>}</li>
* <li>{@link org.eclipse.wst.wsdl.Import#getESchema <em>ESchema</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.wst.wsdl.WSDLPackage#getImport()
* @model
* @generated
*/
public interface Import extends ExtensibleElement, javax.wsdl.Import
{
/**
* Returns the value of the '<em><b>Namespace URI</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Namespace URI</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Namespace URI</em>' attribute.
* @see #setNamespaceURI(String)
* @see org.eclipse.wst.wsdl.WSDLPackage#getImport_NamespaceURI()
* @model
* @generated
*/
String getNamespaceURI();
/**
* Sets the value of the '{@link org.eclipse.wst.wsdl.Import#getNamespaceURI <em>Namespace URI</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Namespace URI</em>' attribute.
* @see #getNamespaceURI()
* @generated
*/
void setNamespaceURI(String value);
/**
* Returns the value of the '<em><b>Location URI</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Location URI</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Location URI</em>' attribute.
* @see #setLocationURI(String)
* @see org.eclipse.wst.wsdl.WSDLPackage#getImport_LocationURI()
* @model
* @generated
*/
String getLocationURI();
/**
* Sets the value of the '{@link org.eclipse.wst.wsdl.Import#getLocationURI <em>Location URI</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Location URI</em>' attribute.
* @see #getLocationURI()
* @generated
*/
void setLocationURI(String value);
/**
* Returns the value of the '<em><b>EDefinition</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>EDefinition</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>EDefinition</em>' reference.
* @see #setEDefinition(Definition)
* @see org.eclipse.wst.wsdl.WSDLPackage#getImport_EDefinition()
* @model
* @generated
*/
Definition getEDefinition();
/**
* Sets the value of the '{@link org.eclipse.wst.wsdl.Import#getEDefinition <em>EDefinition</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>EDefinition</em>' reference.
* @see #getEDefinition()
* @generated
*/
void setEDefinition(Definition value);
/**
* Returns the value of the '<em><b>ESchema</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>ESchema</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>ESchema</em>' reference.
* @see #setESchema(XSDSchema)
* @see org.eclipse.wst.wsdl.WSDLPackage#getImport_ESchema()
* @model
* @generated
*/
XSDSchema getESchema();
/**
* Sets the value of the '{@link org.eclipse.wst.wsdl.Import#getESchema <em>ESchema</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>ESchema</em>' reference.
* @see #getESchema()
* @generated
*/
void setESchema(XSDSchema value);
/**
* <!-- begin-user-doc -->
* This method is same as getESchema().
* @see #getESchema()
* @return the value of the '<em>ESchema</em>' reference.
* @ignore
* <!-- end-user-doc -->
* @model kind="operation"
* @generated
*/
XSDSchema getSchema();
/**
* <!-- begin-user-doc -->
* This method is same as setESchema(XSDSchema).
* @see #setESchema(XSDSchema)
* @param schema the new value of the '<em>ESchema</em>' reference.
* @ignore
* <!-- end-user-doc -->
* @model
* @generated
*/
void setSchema(XSDSchema schema);
} // Import