blob: 4460a740a3b84669dd6c8c9fc8e914b9ef6418a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 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.jpa.core.internal.context.java;
import org.eclipse.jpt.common.utility.internal.iterables.ArrayIterable;
import org.eclipse.jpt.jpa.core.JpaFactory;
import org.eclipse.jpt.jpa.core.MappingKeys;
import org.eclipse.jpt.jpa.core.context.java.DefaultJavaAttributeMappingDefinition;
import org.eclipse.jpt.jpa.core.context.java.JavaAttributeMapping;
import org.eclipse.jpt.jpa.core.context.java.JavaPersistentAttribute;
import org.eclipse.jpt.jpa.core.resource.java.AttributeOverrideAnnotation;
import org.eclipse.jpt.jpa.core.resource.java.AttributeOverridesAnnotation;
import org.eclipse.jpt.jpa.core.resource.java.EmbeddedAnnotation;
public abstract class AbstractJavaEmbeddedMappingDefinition
implements DefaultJavaAttributeMappingDefinition
{
protected AbstractJavaEmbeddedMappingDefinition() {
super();
}
public String getKey() {
return MappingKeys.EMBEDDED_ATTRIBUTE_MAPPING_KEY;
}
public String getAnnotationName() {
return EmbeddedAnnotation.ANNOTATION_NAME;
}
public boolean isSpecified(JavaPersistentAttribute persistentAttribute) {
return persistentAttribute.getResourcePersistentAttribute().getAnnotation(this.getAnnotationName()) != null;
}
public Iterable<String> getSupportingAnnotationNames() {
return SUPPORTING_ANNOTATION_NAMES;
}
protected static final String[] SUPPORTING_ANNOTATION_NAMES_ARRAY = new String[] {
AttributeOverrideAnnotation.ANNOTATION_NAME,
AttributeOverridesAnnotation.ANNOTATION_NAME,
};
protected static final Iterable<String> SUPPORTING_ANNOTATION_NAMES = new ArrayIterable<String>(SUPPORTING_ANNOTATION_NAMES_ARRAY);
public JavaAttributeMapping buildMapping(JavaPersistentAttribute persistentAttribute, JpaFactory factory) {
return factory.buildJavaEmbeddedMapping(persistentAttribute);
}
public boolean isDefault(JavaPersistentAttribute persistentAttribute) {
return persistentAttribute.getEmbeddable() != null;
}
@Override
public String toString() {
return this.getClass().getSimpleName();
}
}