blob: bae94d9431fd1ea101f2e2c2943b0ed46e0eb040 [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.eclipselink.core.internal.resource.java.binary;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentMember;
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 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 EclipseLinkJPA.TYPE_CONVERTER__NAME;
}
// ********** BinaryBaseTypeConverterAnnotation implementation **********
@Override
String getDataTypeElementName() {
return EclipseLinkJPA.TYPE_CONVERTER__DATA_TYPE;
}
@Override
String getObjectTypeElementName() {
return EclipseLinkJPA.TYPE_CONVERTER__OBJECT_TYPE;
}
}