org.eclipse.xsd.XSDRedefine Maven / Gradle / Ivy
/**
* Copyright (c) 2002-2006 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;
import org.eclipse.emf.common.util.EList;
/**
*
* A representation of the model object
* 'Redefine'.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDRedefine#getAnnotations Annotations}
* - {@link org.eclipse.xsd.XSDRedefine#getContents Contents}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDRedefine()
* @model
* @generated
*/
public interface XSDRedefine extends XSDSchemaCompositor
{
/**
* Returns the value of the 'Annotations' reference list.
* The list contents are of type {@link org.eclipse.xsd.XSDAnnotation}.
*
*
* This reference represents the annotation contents defined within the body of an
* redefine element.
* It is computed from the {@link #getContents() contents} and should typically not be modified directly.
*
*
* @return the value of the 'Annotations' reference list.
* @see org.eclipse.xsd.XSDPackage#getXSDRedefine_Annotations()
* @model resolveProxies="false"
* @generated
*/
EList getAnnotations();
/**
* Returns the value of the 'Contents' containment reference list.
* The list contents are of type {@link org.eclipse.xsd.XSDRedefineContent}.
*
*
* This concrete reference represents the contents defined within the body of an
* redefine element.
*
*
* @return the value of the 'Contents' containment reference list.
* @see org.eclipse.xsd.XSDPackage#getXSDRedefine_Contents()
* @model containment="true"
* @generated
*/
EList getContents();
}