blob: 1b5513a996769939d5ef2b48db8f58e32131d0a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.core.context.orm;
import java.util.ListIterator;
import org.eclipse.jpt.core.context.AttributeOverrideContainer;
import org.eclipse.jpt.core.context.Column;
import org.eclipse.jpt.core.context.XmlContextNode;
import org.eclipse.jpt.core.resource.orm.XmlColumn;
public interface OrmAttributeOverrideContainer extends AttributeOverrideContainer, XmlContextNode
{
@SuppressWarnings("unchecked")
ListIterator<OrmAttributeOverride> attributeOverrides();
@SuppressWarnings("unchecked")
ListIterator<OrmAttributeOverride> specifiedAttributeOverrides();
@SuppressWarnings("unchecked")
ListIterator<OrmAttributeOverride> virtualAttributeOverrides();
OrmAttributeOverride getAttributeOverrideNamed(String name);
void update();
void initializeFromAttributeOverrideContainer(OrmAttributeOverrideContainer oldContainer);
Owner getOwner();
interface Owner extends AttributeOverrideContainer.Owner
{
OrmTypeMapping getTypeMapping();
/**
* Build a virtual xml column based on the overridable column.
*/
XmlColumn buildVirtualXmlColumn(Column overridableColumn, String attributeName, boolean isMetadataComplete);
}
}