blob: b214120aedee4996f42ea1834ae129f2be786540 [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.content.java;
import org.eclipse.jpt.core.internal.IJpaFactory;
import org.eclipse.jpt.core.internal.jdtutility.DeclarationAnnotationAdapter;
import org.eclipse.jpt.core.internal.jdtutility.Type;
/**
* 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();
/**
* 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
*/
IJavaTypeMapping buildMapping(Type type, IJpaFactory factory);
DeclarationAnnotationAdapter declarationAnnotationAdapter();
}