blob: a01870c72bded0b7fc37b64ed8a0704e3e9130f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.eclipselink.core.internal.resource.java.source;
import org.eclipse.jpt.core.internal.utility.jdt.SimpleDeclarationAnnotationAdapter;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentMember;
import org.eclipse.jpt.core.utility.jdt.DeclarationAnnotationAdapter;
import org.eclipse.jpt.core.utility.jdt.Member;
import org.eclipse.jpt.eclipselink.core.resource.java.EclipseLinkJPA;
import org.eclipse.jpt.eclipselink.core.resource.java.EclipseLinkTypeConverterAnnotation;
/**
* org.eclipse.persistence.annotations.TypeConverter
*/
public final class SourceEclipseLinkTypeConverterAnnotation
extends SourceBaseEclipseLinkTypeConverterAnnotation
implements EclipseLinkTypeConverterAnnotation
{
private static final DeclarationAnnotationAdapter DECLARATION_ANNOTATION_ADAPTER = new SimpleDeclarationAnnotationAdapter(ANNOTATION_NAME);
public SourceEclipseLinkTypeConverterAnnotation(JavaResourcePersistentMember parent, Member member) {
super(parent, member, DECLARATION_ANNOTATION_ADAPTER);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
// ********** SourceNamedConverterAnnotation implementation **********
@Override
String getNameElementName() {
return EclipseLinkJPA.TYPE_CONVERTER__NAME;
}
// ********** SourceBaseTypeConverterAnnotation implementation **********
@Override
String getDataTypeElementName() {
return EclipseLinkJPA.TYPE_CONVERTER__DATA_TYPE;
}
@Override
String getObjectTypeElementName() {
return EclipseLinkJPA.TYPE_CONVERTER__OBJECT_TYPE;
}
}