blob: 80a548b6213705b1e8343b56c123e8e4702cb750 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 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.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;
public abstract class AbstractEmbeddedMappingOverridesComposite<T extends BaseEmbeddedMapping>
extends AbstractOverridesComposite<T>
{
protected AbstractEmbeddedMappingOverridesComposite(
Pane<? extends T> parentPane,
Composite parent) {
super(parentPane, parent);
}
@Override
protected PropertyValueModel<AttributeOverrideContainer> buildAttributeOverrideContainerHolder() {
return new PropertyAspectAdapter<T, AttributeOverrideContainer>(getSubjectHolder()) {
@Override
protected AttributeOverrideContainer buildValue_() {
return this.subject.getAttributeOverrideContainer();
}
};
}
}