blob: 254c06247c68ea56ca5d5dcf42d600e1e1c7a324 [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 definition implementation is used to describe the specified mapping for
* a java attribute when no other mapping applies.
*/
public class NullSpecifiedJavaAttributeMappingDefinition
implements JavaAttributeMappingDefinition
{
// singleton
private static final NullSpecifiedJavaAttributeMappingDefinition INSTANCE =
new NullSpecifiedJavaAttributeMappingDefinition();
/**
* Return the singleton.
*/
public static JavaAttributeMappingDefinition instance() {
return INSTANCE;
}
/**
* Enforce singleton usage
*/
private NullSpecifiedJavaAttributeMappingDefinition() {
super();
}
public String getKey() {
return MappingKeys.NULL_ATTRIBUTE_MAPPING_KEY;
}
public String getAnnotationName() {
return null;
}
/**
* There is no specified mapping in this case, attributes should revert to the default
*/
public JavaAttributeMapping buildMapping(JavaPersistentAttribute parent, JpaFactory factory) {
return null;
}
/**
* Obviously false
*/
public boolean testDefault(JavaPersistentAttribute persistentAttribute) {
return false;
}
/**
* This is typically the final test, so it should always apply
*/
public boolean testSpecified(JavaPersistentAttribute persistentAttribute) {
return true;
}
}