blob: 03194d6f28d65692fb883e958e533bd10fd2762a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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.internal.context.java;
import org.eclipse.jpt.core.internal.platform.base.IJpaBaseContextFactory;
/**
* Map a string key to a type mapping and its corresponding
* Java annotation adapter.
*/
public interface IJavaTypeMappingProvider {
/**
* A unique String that corresponds to the IJavaTypeMapping key
*/
String key();
String annotationName();
/**
* Create an IJavaTypeMapping for the given attribute. Use the IJpaFactory
* for creation so that extenders can create their own IJpaFactory instead of
* creating their own typeMappingProvider.
* @param type
* @param jpaFactory
*/
public IJavaTypeMapping buildMapping(IJavaPersistentType parent, IJpaBaseContextFactory factory);
}