blob: 4c2323259c79dc168806f8e546753d0ed8559019 [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.Entity;
import org.eclipse.jpt.ui.details.TypeMappingUiProvider;
import org.eclipse.jpt.ui.internal.JpaMappingImageHelper;
import org.eclipse.swt.graphics.Image;
public abstract class AbstractEntityUiProvider<T extends Entity>
implements TypeMappingUiProvider<T>
{
protected AbstractEntityUiProvider() {}
public String getKey() {
return MappingKeys.ENTITY_TYPE_MAPPING_KEY;
}
public String getLabel() {
return JptUiDetailsMessages.EntityUiProvider_label;
}
public String getLinkLabel() {
return JptUiDetailsMessages.EntityUiProvider_linkLabel;
}
public Image getImage() {
return JpaMappingImageHelper.imageForTypeMapping(getKey());
}
}