blob: ee73ad7f92bf7ac6cd56dcdfe94c3823c63096ea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.eclipselink1_1.ui.internal.orm.details;
import org.eclipse.core.runtime.content.IContentType;
import org.eclipse.jpt.eclipselink.core.internal.JptEclipseLinkCorePlugin;
import org.eclipse.jpt.eclipselink.core.internal.context.orm.EclipseLinkOrmOneToManyMapping;
import org.eclipse.jpt.ui.JpaUiFactory;
import org.eclipse.jpt.ui.WidgetFactory;
import org.eclipse.jpt.ui.details.AttributeMappingUiProvider;
import org.eclipse.jpt.ui.details.JpaComposite;
import org.eclipse.jpt.ui.internal.details.AbstractOneToManyMappingUiProvider;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
public class EclipseLink1_1OrmOneToManyMappingUiProvider
extends AbstractOneToManyMappingUiProvider<EclipseLinkOrmOneToManyMapping>
{
// singleton
private static final EclipseLink1_1OrmOneToManyMappingUiProvider INSTANCE =
new EclipseLink1_1OrmOneToManyMappingUiProvider();
/**
* Return the singleton.
*/
public static AttributeMappingUiProvider<EclipseLinkOrmOneToManyMapping> instance() {
return INSTANCE;
}
/**
* Ensure single instance.
*/
private EclipseLink1_1OrmOneToManyMappingUiProvider() {
super();
}
public IContentType getContentType() {
return JptEclipseLinkCorePlugin.ECLIPSELINK1_1_ORM_XML_CONTENT_TYPE;
}
public JpaComposite buildAttributeMappingComposite(
JpaUiFactory factory,
PropertyValueModel<EclipseLinkOrmOneToManyMapping> subjectHolder,
Composite parent,
WidgetFactory widgetFactory) {
return new EclipseLink1_1OrmOneToManyMappingComposite(subjectHolder, parent, widgetFactory);
}
}