blob: c95b85158de584091520669af8b4f07214ee236b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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.java.details;
import org.eclipse.jpt.core.MappingKeys;
import org.eclipse.jpt.core.context.MappedSuperclass;
import org.eclipse.jpt.ui.details.JpaComposite;
import org.eclipse.jpt.ui.internal.mappings.JptUiMappingsMessages;
import org.eclipse.jpt.ui.internal.mappings.details.MappedSuperclassComposite;
import org.eclipse.jpt.ui.java.details.TypeMappingUiProvider;
import org.eclipse.jpt.utility.internal.model.value.PropertyValueModel;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetWidgetFactory;
public class MappedSuperclassUiProvider implements TypeMappingUiProvider<MappedSuperclass>
{
// singleton
private static final MappedSuperclassUiProvider INSTANCE = new MappedSuperclassUiProvider();
/**
* Return the singleton.
*/
public static TypeMappingUiProvider<MappedSuperclass> instance() {
return INSTANCE;
}
/**
* Ensure non-instantiability.
*/
private MappedSuperclassUiProvider() {
super();
}
public String mappingKey() {
return MappingKeys.MAPPED_SUPERCLASS_TYPE_MAPPING_KEY;
}
public String label() {
return JptUiMappingsMessages.PersistentTypePage_MappedSuperclassLabel;
}
public JpaComposite<MappedSuperclass> buildPersistentTypeMappingComposite(
PropertyValueModel<MappedSuperclass> subjectHolder,
Composite parent,
TabbedPropertySheetWidgetFactory widgetFactory) {
return new MappedSuperclassComposite(subjectHolder, parent, widgetFactory);
}
}