org.eclipse.xsd.XSDSchemaCompositor 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 Compositor'.
* It is used to represent aspects common to
* '{@link org.eclipse.xsd.XSDInclude Include}' and
* '{@link org.eclipse.xsd.XSDRedefine Redefine}'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDSchemaCompositor#getIncorporatedSchema Incorporated Schema}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDSchemaCompositor()
* @model abstract="true"
* @generated
*/
public interface XSDSchemaCompositor extends XSDSchemaDirective {
/**
* Returns the value of the 'Incorporated Schema' reference.
*
*
* This reference is {@link org.eclipse.xsd.XSDSchema#getIncorporatedVersions() computed}
* from the {@link #getResolvedSchema() resolved schema}
* and is typically not set directly.
*
* @see org.eclipse.xsd.XSDSchema#getIncorporatedVersions
* @see #getResolvedSchema
* @
* @return the value of the 'Incorporated Schema' reference.
* @see #setIncorporatedSchema(XSDSchema)
* @see org.eclipse.xsd.XSDPackage#getXSDSchemaCompositor_IncorporatedSchema()
* @model resolveProxies="false"
* @generated
*/
XSDSchema getIncorporatedSchema();
/**
* Sets the value of the '{@link org.eclipse.xsd.XSDSchemaCompositor#getIncorporatedSchema Incorporated Schema}' reference.
*
*
* @param value the new value of the 'Incorporated Schema' reference.
* @see #getIncorporatedSchema()
* @generated
*/
void setIncorporatedSchema(XSDSchema value);
}