blob: e309a2b1c0b6c03e197bc588fc5656ea6c1d6589 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.ui.internal.details;
import org.eclipse.jpt.core.MappingKeys;
import org.eclipse.jpt.core.context.MappedSuperclass;
import org.eclipse.jpt.ui.internal.JpaMappingImageHelper;
import org.eclipse.swt.graphics.Image;
public abstract class AbstractMappedSuperclassUiDefinition<M, T extends MappedSuperclass>
extends AbstractMappingUiDefinition<M, T>
{
protected AbstractMappedSuperclassUiDefinition() {
super();
}
public String getKey() {
return MappingKeys.MAPPED_SUPERCLASS_TYPE_MAPPING_KEY;
}
public String getLabel() {
return JptUiDetailsMessages.MappedSuperclassUiProvider_label;
}
public String getLinkLabel() {
return JptUiDetailsMessages.MappedSuperclassUiProvider_linkLabel;
}
public Image getImage() {
return JpaMappingImageHelper.imageForTypeMapping(getKey());
}
}