blob: b7409ebbc9738b6494a5e527431da964d28580a6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.ui.internal.details;
import java.util.Collection;
import org.eclipse.jpt.common.ui.internal.widgets.Pane;
import org.eclipse.jpt.common.utility.internal.iterable.IterableTools;
import org.eclipse.jpt.common.utility.model.value.PropertyValueModel;
import org.eclipse.jpt.jpa.core.MappingKeys;
import org.eclipse.jpt.jpa.core.context.AttributeMapping;
import org.eclipse.jpt.jpa.core.context.PersistentAttribute;
import org.eclipse.jpt.jpa.core.context.SpecifiedPersistentAttribute;
import org.eclipse.jpt.jpa.ui.JpaPlatformUi;
import org.eclipse.jpt.jpa.ui.details.DefaultMappingUiDefinition;
import org.eclipse.jpt.jpa.ui.details.JptJpaUiDetailsMessages;
import org.eclipse.jpt.jpa.ui.details.MappingUiDefinition;
import org.eclipse.jpt.jpa.ui.internal.details.orm.UnsupportedOrmAttributeMappingUiDefinition;
import org.eclipse.swt.widgets.Composite;
/**
* This "Map As" composite is responsible for showing the mapping name and
* mapping type for an attribute.
*/
public class PersistentAttributeMapAsComposite
extends MapAsComposite<PersistentAttribute>
{
public PersistentAttributeMapAsComposite(Pane<? extends PersistentAttribute> parentPane, Composite parent) {
super(parentPane, parent);
}
public PersistentAttributeMapAsComposite(Pane<? extends PersistentAttribute> parentPane, Composite parent, PropertyValueModel<Boolean> enabledModel) {
super(parentPane, parent, enabledModel);
}
protected String getMappingKey() {
return getSubject().getMappingKey();
}
@Override
protected MappingChangeHandler buildMappingChangeHandler() {
return new AttributeMappingChangeHandler();
}
protected class AttributeMappingChangeHandler
extends AbstractMappingChangeHandler
{
public String getLabelText() {
String mappingKey = getMappingKey();
if (mappingKey != MappingKeys.NULL_ATTRIBUTE_MAPPING_KEY) {
return JptJpaUiDetailsMessages.MAP_AS_COMPOSITE_MAPPED_ATTRIBUTE_TEXT;
}
if (getSubject().isVirtual()) {
return JptJpaUiDetailsMessages.MAP_AS_COMPOSITE_VIRTUAL_ATTRIBUTE_TEXT;
}
return JptJpaUiDetailsMessages.MAP_AS_COMPOSITE_UNMAPPED_ATTRIBUTE_TEXT;
}
public String getMappingText() {
AttributeMapping mapping = getSubject().getMapping();
String mappingKey = mapping.getKey();
return mapping.isDefault() ?
getDefaultDefinition(mappingKey).getLinkLabel() :
getMappingUiDefinition().getLinkLabel();
}
@Override
protected void morphMapping_(MappingUiDefinition definition) {
((SpecifiedPersistentAttribute) getSubject()).setMappingKey(definition.getKey());
}
public String getName() {
return getSubject().getName();
}
public Iterable<MappingUiDefinition> getMappingUiDefinitions() {
return getAttributeMappingUiDefinitions();
}
public MappingUiDefinition getMappingUiDefinition() {
return getAttributeMappingUiDefinition();
}
}
protected Iterable<MappingUiDefinition> getAttributeMappingUiDefinitions() {
JpaPlatformUi ui = this.getJpaPlatformUi();
return (ui != null) ? ui.getAttributeMappingUiDefinitions(getSubject()) : IterableTools.<MappingUiDefinition>emptyIterable();
}
protected MappingUiDefinition getAttributeMappingUiDefinition() {
JpaPlatformUi ui = this.getJpaPlatformUi();
return (ui == null) ? null : ui.getAttributeMappingUiDefinition(getSubject().getResourceType(), getMappingKey());
}
@Override
protected DefaultMappingUiDefinition getDefaultDefinition() {
return getDefaultDefinition(getSubject().getDefaultMappingKey());
}
@Override
protected DefaultMappingUiDefinition getDefaultDefinition(String mappingKey) {
JpaPlatformUi ui = this.getJpaPlatformUi();
return (ui == null) ? null : ui.getDefaultAttributeMappingUiDefinition(getSubject().getMapping().getResourceType(), mappingKey);
}
@Override
protected MappingUiDefinition getMappingUiDefinition() {
MappingUiDefinition definition = super.getMappingUiDefinition();
return (definition != null) ? definition : UnsupportedOrmAttributeMappingUiDefinition.instance();
}
@Override
protected void addPropertyNames(Collection<String> propertyNames) {
super.addPropertyNames(propertyNames);
propertyNames.add(PersistentAttribute.DEFAULT_MAPPING_KEY_PROPERTY);
propertyNames.add(PersistentAttribute.MAPPING_PROPERTY);
propertyNames.add(PersistentAttribute.NAME_PROPERTY);
}
@Override
protected void propertyChanged(String propertyName) {
super.propertyChanged(propertyName);
if (propertyName == PersistentAttribute.MAPPING_PROPERTY ||
propertyName == PersistentAttribute.DEFAULT_MAPPING_KEY_PROPERTY ||
propertyName == PersistentAttribute.NAME_PROPERTY) {
updateDescription();
}
}
}