blob: ad25ee6de61cf56cd40f60ad31c4bbd5480577e1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.core.context.java;
import org.eclipse.jpt.core.JpaFactory;
import org.eclipse.jpt.core.MappingKeys;
/**
* This mapping provider implementation is used to describe the default mapping for
* a java attribute when no other mapping applies.
*/
public class NullDefaultJavaAttributeMappingProvider
implements JavaAttributeMappingProvider
{
// singleton
private static final NullDefaultJavaAttributeMappingProvider INSTANCE =
new NullDefaultJavaAttributeMappingProvider();
/**
* Return the singleton.
*/
public static JavaAttributeMappingProvider instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private NullDefaultJavaAttributeMappingProvider() {
super();
}
public String getKey() {
return MappingKeys.NULL_ATTRIBUTE_MAPPING_KEY;
}
public String getAnnotationName() {
return null;
}
/**
* Default mappings should never be null
*/
public JavaAttributeMapping buildMapping(JavaPersistentAttribute parent, JpaFactory factory) {
return factory.buildJavaNullAttributeMapping(parent);
}
/**
* This is typically the final test, so it should always apply
*/
public boolean testDefault(JavaPersistentAttribute persistentAttribute) {
return true;
}
/**
* Obviously, always false
*/
public boolean testSpecified(JavaPersistentAttribute persistentAttribute) {
return false;
}
}