blob: 287574f758d79f889fb09b485743a9852e63ed06 [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.core.resource.java.DiscriminatorValueAnnotation;
import org.eclipse.jpt.core.resource.java.JPA;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentType;
import org.eclipse.jpt.core.utility.TextRange;
/**
* javax.persistence.DiscriminatorValue
*/
public final class BinaryDiscriminatorValueAnnotation
extends BinaryAnnotation
implements DiscriminatorValueAnnotation
{
private String value;
public BinaryDiscriminatorValueAnnotation(JavaResourcePersistentType parent, IAnnotation jdtAnnotation) {
super(parent, jdtAnnotation);
this.value = this.buildValue();
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
@Override
public void update() {
super.update();
this.setValue_(this.buildValue());
}
// ********** DiscriminatorValueAnnotation implementation **********
// ***** value
public String getValue() {
return this.value;
}
public void setValue(String value) {
throw new UnsupportedOperationException();
}
private void setValue_(String value) {
String old = this.value;
this.value = value;
this.firePropertyChanged(VALUE_PROPERTY, old, value);
}
private String buildValue() {
return (String) this.getJdtMemberValue(JPA.DISCRIMINATOR_VALUE__VALUE);
}
public TextRange getValueTextRange(CompilationUnit astRoot) {
throw new UnsupportedOperationException();
}
}