org.eclipse.xsd.XSDSchemaDirective 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 'Schema Directive'.
* It is used to represent aspects common to
* '{@link org.eclipse.xsd.XSDImport Import}',
* '{@link org.eclipse.xsd.XSDInclude Include}' and
* '{@link org.eclipse.xsd.XSDRedefine Redefine}'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDSchemaDirective#getSchemaLocation Schema Location}
* - {@link org.eclipse.xsd.XSDSchemaDirective#getResolvedSchema Resolved Schema}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDSchemaDirective()
* @model abstract="true"
* @generated
*/
public interface XSDSchemaDirective extends XSDSchemaContent
{
/**
* Returns the value of the 'Schema Location' attribute.
*
*
* This concrete attribute represents the value of the
* import schemaLocation,
* include schemaLocation, or
* redefine schemaLocation attribute.
* It is used in conjunction with the {@link org.eclipse.xsd.XSDSchema#getSchemaLocation schema's location},
* to compute the {@link #getResolvedSchema resolved schema}.
*
* @see org.eclipse.xsd.XSDSchema#getSchemaLocation()
* @see #getResolvedSchema()
* @
* @return the value of the 'Schema Location' attribute.
* @see #setSchemaLocation(String)
* @see org.eclipse.xsd.XSDPackage#getXSDSchemaDirective_SchemaLocation()
* @model
* @generated
*/
String getSchemaLocation();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDSchemaDirective#getSchemaLocation Schema Location}' attribute.
*
*
* @param value the new value of the 'Schema Location' attribute.
* @see #getSchemaLocation()
* @generated
*/
void setSchemaLocation(String value);
/**
* Returns the value of the 'Resolved Schema' reference.
*
*
* This represents the actual schema resolved by the '{@link #getSchemaLocation Schema Location}' attribute.
*
* @see #getSchemaLocation()
* @
* @return the value of the 'Resolved Schema' reference.
* @see #setResolvedSchema(XSDSchema)
* @see org.eclipse.xsd.XSDPackage#getXSDSchemaDirective_ResolvedSchema()
* @model resolveProxies="false"
* @generated
*/
XSDSchema getResolvedSchema();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDSchemaDirective#getResolvedSchema Resolved Schema}' reference.
*
*
* @param value the new value of the 'Resolved Schema' reference.
* @see #getResolvedSchema()
* @generated
*/
void setResolvedSchema(XSDSchema value);
}