blob: 1a737311ccbbd339f4e789c09809284575f6a4db [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.jpa2.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.jpa2.resource.java.Cacheable2_0Annotation;
import org.eclipse.jpt.core.jpa2.resource.java.JPA2_0;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentType;
import org.eclipse.jpt.core.utility.TextRange;
/**
* javax.persistence.Cacheable
*/
public final class BinaryCacheable2_0Annotation
extends BinaryAnnotation
implements Cacheable2_0Annotation
{
private Boolean value;
public BinaryCacheable2_0Annotation(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());
}
// ********** Cacheable2_0Annotation implementation **********
// ***** value
public Boolean getValue() {
return this.value;
}
public void setValue(Boolean value) {
throw new UnsupportedOperationException();
}
private void setValue_(Boolean value) {
Boolean old = this.value;
this.value = value;
this.firePropertyChanged(VALUE_PROPERTY, old, value);
}
private Boolean buildValue() {
return (Boolean) this.getJdtMemberValue(JPA2_0.CACHEABLE__VALUE);
}
public TextRange getValueTextRange(CompilationUnit astRoot) {
throw new UnsupportedOperationException();
}
}