org.eclipse.xsd.XSDRedefinableComponent 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 'Redefinable Component'.
* As expected,
* a redefinable components is one that can be
* redefined.
*
*
*
* The following features are supported:
*
*
* - {@link org.eclipse.xsd.XSDRedefinableComponent#isCircular Circular}
*
*
* @see org.eclipse.xsd.XSDPackage#getXSDRedefinableComponent()
* @model abstract="true"
* @generated
*/
public interface XSDRedefinableComponent extends XSDNamedComponent, XSDRedefineContent {
/**
* Returns the value of the 'Circular' attribute.
*
*
* This indicates whether the definition is circular,
* e.g., circular base, item, or member types reference,
* circular attribute group definition reference,
* or circular model group definition reference.
*
*
* @return the value of the 'Circular' attribute.
* @see org.eclipse.xsd.XSDPackage#getXSDRedefinableComponent_Circular()
* @model changeable="false" volatile="true"
* @generated
*/
boolean isCircular();
}