blob: 71d9610828182d489ac7b64ab5b8dbd2b23b2680 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 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.core.internal.jpa1.context.java;
import org.eclipse.jpt.jpa.core.context.java.JavaAttributeMapping;
import org.eclipse.jpt.jpa.core.context.java.JavaConverter;
import org.eclipse.jpt.jpa.core.internal.context.java.AbstractJavaJpaContextNode;
import org.eclipse.jpt.jpa.core.resource.java.Annotation;
import org.eclipse.jpt.jpa.core.resource.java.JavaResourcePersistentAttribute;
public abstract class AbstractJavaConverter
extends AbstractJavaJpaContextNode
implements JavaConverter
{
protected AbstractJavaConverter(JavaAttributeMapping parent) {
super(parent);
}
// ********** misc **********
@Override
public JavaAttributeMapping getParent() {
return (JavaAttributeMapping) super.getParent();
}
protected JavaAttributeMapping getAttributeMapping() {
return this.getParent();
}
protected JavaResourcePersistentAttribute getResourcePersistentAttribute() {
return this.getAttributeMapping().getResourcePersistentAttribute();
}
public Annotation getConverterAnnotation() {
return this.getResourcePersistentAttribute().getAnnotation(this.getAnnotationName());
}
public void dispose() {
// NOP
}
protected abstract String getAnnotationName();
}