blob: ea7f303f401eff073969f8030ad0d2e3ad1edd9f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 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;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.core.internal.utility.jdt.EnumDeclarationAnnotationElementAdapter;
import org.eclipse.jpt.core.internal.utility.jdt.ShortCircuitAnnotationElementAdapter;
import org.eclipse.jpt.core.internal.utility.jdt.SimpleDeclarationAnnotationAdapter;
import org.eclipse.jpt.core.resource.java.Annotation;
import org.eclipse.jpt.core.resource.java.AnnotationDefinition;
import org.eclipse.jpt.core.resource.java.InheritanceAnnotation;
import org.eclipse.jpt.core.resource.java.InheritanceType;
import org.eclipse.jpt.core.resource.java.JPA;
import org.eclipse.jpt.core.resource.java.JavaResourceNode;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentMember;
import org.eclipse.jpt.core.utility.TextRange;
import org.eclipse.jpt.core.utility.jdt.AnnotationElementAdapter;
import org.eclipse.jpt.core.utility.jdt.DeclarationAnnotationAdapter;
import org.eclipse.jpt.core.utility.jdt.DeclarationAnnotationElementAdapter;
import org.eclipse.jpt.core.utility.jdt.Member;
import org.eclipse.jpt.core.utility.jdt.Type;
public class InheritanceImpl extends AbstractResourceAnnotation<Type> implements InheritanceAnnotation
{
private static final DeclarationAnnotationAdapter DECLARATION_ANNOTATION_ADAPTER = new SimpleDeclarationAnnotationAdapter(ANNOTATION_NAME);
private static final DeclarationAnnotationElementAdapter<String> STRATEGY_ADAPTER = buildStrategyAdapter();
private final AnnotationElementAdapter<String> strategyAdapter;
private InheritanceType strategy;
protected InheritanceImpl(JavaResourceNode parent, Type type) {
super(parent, type, DECLARATION_ANNOTATION_ADAPTER);
this.strategyAdapter = new ShortCircuitAnnotationElementAdapter<String>(type, STRATEGY_ADAPTER);
}
public void initialize(CompilationUnit astRoot) {
this.strategy = this.strategy(astRoot);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
public InheritanceType getStrategy() {
return this.strategy;
}
public void setStrategy(InheritanceType newStrategy) {
if (attributeValueHasNotChanged(this.strategy, newStrategy)) {
return;
}
InheritanceType oldStrategy = this.strategy;
this.strategy = newStrategy;
this.strategyAdapter.setValue(InheritanceType.toJavaAnnotationValue(newStrategy));
firePropertyChanged(STRATEGY_PROPERTY, oldStrategy, newStrategy);
}
public TextRange getStrategyTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(STRATEGY_ADAPTER, astRoot);
}
public void updateFromJava(CompilationUnit astRoot) {
this.setStrategy(this.strategy(astRoot));
}
protected InheritanceType strategy(CompilationUnit astRoot) {
return InheritanceType.fromJavaAnnotationValue(this.strategyAdapter.getValue(astRoot));
}
// ********** static methods **********
private static DeclarationAnnotationElementAdapter<String> buildStrategyAdapter() {
return new EnumDeclarationAnnotationElementAdapter(DECLARATION_ANNOTATION_ADAPTER, JPA.INHERITANCE__STRATEGY);
}
public static class InheritanceAnnotationDefinition implements AnnotationDefinition
{
// singleton
private static final InheritanceAnnotationDefinition INSTANCE = new InheritanceAnnotationDefinition();
/**
* Return the singleton.
*/
public static AnnotationDefinition instance() {
return INSTANCE;
}
/**
* Ensure non-instantiability.
*/
private InheritanceAnnotationDefinition() {
super();
}
public Annotation buildAnnotation(JavaResourcePersistentMember parent, Member member) {
return new InheritanceImpl(parent, (Type) member);
}
public Annotation buildNullAnnotation(JavaResourcePersistentMember parent, Member member) {
return new NullInheritance(parent);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
}
}