blob: bf6f16fb6949b9e8b2cabbb6773f266eaafbdaac [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.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.internal.resource.java.binary.BinaryAnnotation;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentAttribute;
import org.eclipse.jpt.core.utility.TextRange;
import org.eclipse.jpt.eclipselink.core.resource.java.EclipseLinkTransformerAnnotation;
/**
* org.eclipse.persistence.annotations.ReadTransformer
* org.eclipse.persistence.annotations.WriteTransformer
*/
abstract class BinaryEclipseLinkTransformerAnnotation
extends BinaryAnnotation
implements EclipseLinkTransformerAnnotation
{
private String transformerClass;
private String method;
BinaryEclipseLinkTransformerAnnotation(JavaResourcePersistentAttribute parent, IAnnotation jdtAnnotation) {
super(parent, jdtAnnotation);
this.transformerClass = this.buildTransformerClass();
this.method = this.buildMethod();
}
@Override
public void update() {
super.update();
this.setTransformerClass_(this.buildTransformerClass());
this.setMethod_(this.buildMethod());
}
// ********** TransformerAnnotation implementation **********
// ***** transformer class
public String getTransformerClass() {
return this.transformerClass;
}
public void setTransformerClass(String transformerClass) {
throw new UnsupportedOperationException();
}
private void setTransformerClass_(String transformerClass) {
String old = this.transformerClass;
this.transformerClass = transformerClass;
this.firePropertyChanged(TRANSFORMER_CLASS_PROPERTY, old, transformerClass);
}
private String buildTransformerClass() {
return (String) this.getJdtMemberValue(this.getTransformerClassElementName());
}
public TextRange getTransformerClassTextRange(CompilationUnit astRoot) {
throw new UnsupportedOperationException();
}
abstract String getTransformerClassElementName();
// ***** method
public String getMethod() {
return this.method;
}
public void setMethod(String method) {
throw new UnsupportedOperationException();
}
private void setMethod_(String method) {
String old = this.method;
this.method = method;
this.firePropertyChanged(METHOD_PROPERTY, old, method);
}
private String buildMethod() {
return (String) this.getJdtMemberValue(this.getMethodElementName());
}
public TextRange getMethodTextRange(CompilationUnit astRoot) {
throw new UnsupportedOperationException();
}
abstract String getMethodElementName();
}