blob: 4e417dffb3f8d8232bc66268098c83c63167fd5c [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.jpa.eclipselink.core.internal.resource.java.binary;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jpt.jpa.core.resource.java.JavaResourcePersistentMember;
import org.eclipse.jpt.jpa.eclipselink.core.resource.java.EclipseLink;
import org.eclipse.jpt.jpa.eclipselink.core.resource.java.EclipseLinkTypeConverterAnnotation;
/**
* org.eclipse.persistence.annotations.TypeConverter
*/
public final class BinaryEclipseLinkTypeConverterAnnotation
extends BinaryBaseEclipseLinkTypeConverterAnnotation
implements EclipseLinkTypeConverterAnnotation
{
public BinaryEclipseLinkTypeConverterAnnotation(JavaResourcePersistentMember parent, IAnnotation jdtAnnotation) {
super(parent, jdtAnnotation);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
// ********** BinaryNamedConverterAnnotation implementation **********
@Override
String getNameElementName() {
return EclipseLink.TYPE_CONVERTER__NAME;
}
// ********** BinaryBaseTypeConverterAnnotation implementation **********
@Override
String getDataTypeElementName() {
return EclipseLink.TYPE_CONVERTER__DATA_TYPE;
}
@Override
String getObjectTypeElementName() {
return EclipseLink.TYPE_CONVERTER__OBJECT_TYPE;
}
}