blob: bd3fcdcdf0114f567ccc9624c1e9f2bb30fa2cf1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.ui.internal.details.java;
import org.eclipse.jface.resource.ResourceManager;
import org.eclipse.jpt.common.ui.WidgetFactory;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.jpa.eclipselink.core.context.java.EclipseLinkJavaEmbeddable;
import org.eclipse.jpt.jpa.ui.JptJpaUiMessages;
import org.eclipse.jpt.jpa.ui.internal.details.AccessTypeComboViewer;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.ui.forms.widgets.Section;
public class EclipseLinkJavaEmbeddableComposite1_2
extends EclipseLinkAbstractJavaEmbeddableComposite<EclipseLinkJavaEmbeddable>
{
public EclipseLinkJavaEmbeddableComposite1_2(
PropertyValueModel<? extends EclipseLinkJavaEmbeddable> embeddableModel,
Composite parentComposite,
WidgetFactory widgetFactory,
ResourceManager resourceManager) {
super(embeddableModel, parentComposite, widgetFactory, resourceManager);
}
@Override
protected void initializeLayout(Composite container) {
this.initializeEmbeddableCollapsibleSection(container);
super.initializeLayout(container);
}
@Override
protected Control buildEmbeddableSectionClient(Section embeddableSection) {
Composite container = this.addSubPane(embeddableSection, 2, 0, 0, 0, 0);
// Access type widgets
this.addLabel(container, JptJpaUiMessages.ACCESS_TYPE_COMPOSITE_ACCESS);
new AccessTypeComboViewer(this, this.buildAccessReferenceModel(), container);
return container;
}
}