blob: 3e16cbde6216c602baa5f24d3f13f833ca9c206f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.internal.context.java;
import java.util.ListIterator;
import org.eclipse.jpt.core.internal.context.base.IEmbeddedMapping;
public interface IJavaEmbeddedMapping extends IJavaAttributeMapping, IEmbeddedMapping
{
@SuppressWarnings("unchecked")
ListIterator<IJavaAttributeOverride> attributeOverrides();
@SuppressWarnings("unchecked")
ListIterator<IJavaAttributeOverride> defaultAttributeOverrides();
@SuppressWarnings("unchecked")
ListIterator<IJavaAttributeOverride> specifiedAttributeOverrides();
IJavaAttributeOverride addSpecifiedAttributeOverride(int index);
}