blob: 35f34702d09d50cdd25a381a84f3141b34b2d33e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.internal.core.ischema;
import org.eclipse.pde.core.IWritable;
/**
* Objects of this type are holding information about complex types defined
* inside schema elements.
*/
public interface ISchemaComplexType extends ISchemaType, ISchemaAttributeProvider, IWritable {
/**
* A complex type can have one root compositor.
*
* @return root complex type compositor
*/
public ISchemaCompositor getCompositor();
/**
* Returns whether the content of the element that owns this type
* can mix child elements and text.
*
* @return true if element can mix text and other elements
*/
public boolean isMixed();
}