blob: 4c4c619f3c319dc6e2b4ca93f1670ed0502b8607 [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.core.internal.resource.java.binary;
import org.eclipse.jdt.core.IAnnotation;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.core.resource.java.EnumType;
import org.eclipse.jpt.core.resource.java.EnumeratedAnnotation;
import org.eclipse.jpt.core.resource.java.JavaResourceNode;
/**
* javax.persistence.Enumerated
*/
public abstract class BinaryBaseEnumeratedAnnotation
extends BinaryAnnotation
implements EnumeratedAnnotation
{
private EnumType value;
protected BinaryBaseEnumeratedAnnotation(JavaResourceNode parent, IAnnotation jdtAnnotation) {
super(parent, jdtAnnotation);
this.value = this.buildValue();
}
@Override
public void update() {
super.update();
this.setValue_(this.buildValue());
}
// ********** EnumeratedAnnotation implementation **********
// ***** value
public EnumType getValue() {
return this.value;
}
public void setValue(EnumType value) {
throw new UnsupportedOperationException();
}
private void setValue_(EnumType value) {
EnumType old = this.value;
this.value = value;
this.firePropertyChanged(VALUE_PROPERTY, old, value);
}
private EnumType buildValue() {
return EnumType.fromJavaAnnotationValue(this.getJdtMemberValue(this.getValueElementName()));
}
public TextRange getValueTextRange(CompilationUnit astRoot) {
throw new UnsupportedOperationException();
}
protected abstract String getValueElementName();
}