org.eclipse.xsd.XSDImport Maven / Gradle / Ivy
/**
* Copyright (c) 2002-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 v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.xsd;
/**
*
* A representation of the model object
* 'Import'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDImport#getNamespace Namespace}
* - {@link org.eclipse.xsd.XSDImport#getAnnotation Annotation}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDImport()
* @model
* @generated
*/
public interface XSDImport extends XSDSchemaDirective
{
/**
* Returns the value of the 'Namespace' attribute.
*
*
* This concrete attribute represents the value of the
* namespace attribute.
*
*
* @return the value of the 'Namespace' attribute.
* @see #setNamespace(String)
* @see org.eclipse.xsd.XSDPackage#getXSDImport_Namespace()
* @model
* @generated
*/
String getNamespace();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDImport#getNamespace Namespace}' attribute.
*
*
* @param value the new value of the 'Namespace' attribute.
* @see #getNamespace()
* @generated
*/
void setNamespace(String value);
/**
* Returns the value of the 'Annotation' containment reference.
*
*
* This concrete reference represents the annotation content of an
* import element.
*
*
* @return the value of the 'Annotation' containment reference.
* @see #setAnnotation(XSDAnnotation)
* @see org.eclipse.xsd.XSDPackage#getXSDImport_Annotation()
* @model containment="true"
* @generated
*/
XSDAnnotation getAnnotation();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDImport#getAnnotation Annotation}' containment reference.
*
*
* @param value the new value of the 'Annotation' containment reference.
* @see #getAnnotation()
* @generated
*/
void setAnnotation(XSDAnnotation value);
}