blob: 5e33f78a1e41d0aaf64f0b3e4b66273c3fe81650 [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;
/**
* @version 3.0
* @since 3.0
*/
public abstract class AbstractEmbeddedMappingOverridesComposite<T extends BaseEmbeddedMapping> extends AbstractOverridesComposite<T>
{
/**
* Creates a new <code>EmbeddedAttributeOverridesComposite</code>.
*
* @param parentPane The parent container of this one
* @param parent The parent container
*/
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();
}
};
}
}