blob: 85c51c50615cdcaf8e3e5fafb785c5b5e31c45b8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 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.ui.internal.details;
import org.eclipse.jpt.core.context.AssociationOverrideContainer;
import org.eclipse.jpt.core.context.AttributeOverrideContainer;
import org.eclipse.jpt.core.context.BaseEmbeddedMapping;
import org.eclipse.jpt.ui.internal.widgets.Pane;
import org.eclipse.jpt.utility.internal.model.value.PropertyAspectAdapter;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
/**
* Here the layout of this pane:
* <pre>
* -----------------------------------------------------------------------------
* | ------------------------------------------------------------------------- |
* | | | |
* | | AddRemoveListPane | |
* | | | |
* | ------------------------------------------------------------------------- |
* | |
* | x Override Default |
* | |
* | ------------------------------------------------------------------------- |
* | | | |
* | | ColumnComposite | |
* | | | |
* | ------------------------------------------------------------------------- |
* -----------------------------------------------------------------------------</pre>
*
* @see EmbeddedMapping
* @see EmbeddedMappingComposite - The parent container
* @see ColumnComposite
*
* @version 2.3
* @since 1.0
*/
public class EmbeddedMappingOverridesComposite extends AbstractEmbeddedMappingOverridesComposite<BaseEmbeddedMapping>
{
/**
* Creates a new <code>EmbeddedAttributeOverridesComposite</code>.
*
* @param parentPane The parent container of this one
* @param parent The parent container
*/
public EmbeddedMappingOverridesComposite(Pane<? extends BaseEmbeddedMapping> parentPane,
Composite parent) {
super(parentPane, parent);
}
@Override
protected boolean supportsAssociationOverrides() {
return false;
}
@Override
protected PropertyValueModel<AttributeOverrideContainer> buildAttributeOverrideContainerHolder() {
return new PropertyAspectAdapter<BaseEmbeddedMapping, AttributeOverrideContainer>(getSubjectHolder()) {
@Override
protected AttributeOverrideContainer buildValue_() {
return this.subject.getAttributeOverrideContainer();
}
};
}
@Override
protected PropertyValueModel<AssociationOverrideContainer> buildAssociationOverrideContainerHolder() {
throw new UnsupportedOperationException();
}
}