blob: c55a1fe591444745b2c5801502807fc24c1dc271 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.MappingKeys;
import org.eclipse.jpt.core.context.OneToManyMapping;
import org.eclipse.jpt.ui.details.AttributeMappingUiProvider;
import org.eclipse.jpt.ui.internal.JpaMappingImageHelper;
import org.eclipse.jpt.ui.internal.mappings.JptUiMappingsMessages;
import org.eclipse.swt.graphics.Image;
public abstract class AbstractOneToManyMappingUiProvider<T extends OneToManyMapping>
implements AttributeMappingUiProvider<T>
{
protected AbstractOneToManyMappingUiProvider() {}
public Image getImage() {
return JpaMappingImageHelper.imageForAttributeMapping(getMappingKey());
}
public String getLabel() {
return JptUiMappingsMessages.OneToManyMappingUiProvider_label;
}
public String getLinkLabel() {
return JptUiMappingsMessages.OneToManyMappingUiProvider_linkLabel;
}
public String getMappingKey() {
return MappingKeys.ONE_TO_MANY_ATTRIBUTE_MAPPING_KEY;
}
}