blob: 0401a234ad9d05e96b2fee227cb303d2a00bfed1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2010 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.jpa.core.internal.resource.java.source;
import java.util.Map;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.core.utility.jdt.AnnotationElementAdapter;
import org.eclipse.jpt.common.core.utility.jdt.DeclarationAnnotationAdapter;
import org.eclipse.jpt.common.core.utility.jdt.DeclarationAnnotationElementAdapter;
import org.eclipse.jpt.common.core.utility.jdt.Member;
import org.eclipse.jpt.jpa.core.resource.java.CompleteColumnAnnotation;
import org.eclipse.jpt.jpa.core.resource.java.JavaResourceNode;
/**
* <ul>
* <li><code>javax.persistence.Column</code>
* <li><code>javax.persistence.MapKeyColumn</code>
* </ul>
*/
public abstract class SourceCompleteColumnAnnotation
extends SourceBaseColumnAnnotation
implements CompleteColumnAnnotation
{
protected DeclarationAnnotationElementAdapter<Integer> lengthDeclarationAdapter;
protected AnnotationElementAdapter<Integer> lengthAdapter;
protected Integer length;
protected DeclarationAnnotationElementAdapter<Integer> precisionDeclarationAdapter;
protected AnnotationElementAdapter<Integer> precisionAdapter;
protected Integer precision;
protected DeclarationAnnotationElementAdapter<Integer> scaleDeclarationAdapter;
protected AnnotationElementAdapter<Integer> scaleAdapter;
protected Integer scale;
protected SourceCompleteColumnAnnotation(JavaResourceNode parent, Member member, DeclarationAnnotationAdapter daa) {
super(parent, member, daa);
this.lengthDeclarationAdapter = this.buildLengthDeclarationAdapter();
this.lengthAdapter = this.buildLengthAdapter();
this.precisionDeclarationAdapter = this.buildPrecisionDeclarationAdapter();
this.precisionAdapter = this.buildPrecisionAdapter();
this.scaleDeclarationAdapter = this.buildScaleDeclarationAdapter();
this.scaleAdapter = this.buildScaleAdapter();
}
@Override
public void initialize(CompilationUnit astRoot) {
super.initialize(astRoot);
this.length = this.buildLength(astRoot);
this.precision = this.buildPrecision(astRoot);
this.scale = this.buildScale(astRoot);
}
@Override
public void synchronizeWith(CompilationUnit astRoot) {
super.synchronizeWith(astRoot);
this.syncLength(this.buildLength(astRoot));
this.syncPrecision(this.buildPrecision(astRoot));
this.syncScale(this.buildScale(astRoot));
}
// ********** ColumnAnnotation implementation **********
// ***** length
public Integer getLength() {
return this.length;
}
public void setLength(Integer length) {
if (this.attributeValueHasChanged(this.length, length)) {
this.length = length;
this.lengthAdapter.setValue(length);
}
}
private void syncLength(Integer astLength) {
Integer old = this.length;
this.length = astLength;
this.firePropertyChanged(LENGTH_PROPERTY, old, astLength);
}
private Integer buildLength(CompilationUnit astRoot) {
return this.lengthAdapter.getValue(astRoot);
}
public TextRange getLengthTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(this.lengthDeclarationAdapter, astRoot);
}
protected DeclarationAnnotationElementAdapter<Integer> buildLengthDeclarationAdapter() {
return this.buildIntegerElementAdapter(this.getLengthElementName());
}
protected AnnotationElementAdapter<Integer> buildLengthAdapter() {
return this.buildIntegerElementAdapter(this.lengthDeclarationAdapter);
}
protected abstract String getLengthElementName();
// ***** precision
public Integer getPrecision() {
return this.precision;
}
public void setPrecision(Integer precision) {
if (this.attributeValueHasChanged(this.precision, precision)) {
this.precision = precision;
this.precisionAdapter.setValue(precision);
}
}
private void syncPrecision(Integer astPrecision) {
Integer old = this.precision;
this.precision = astPrecision;
this.firePropertyChanged(PRECISION_PROPERTY, old, astPrecision);
}
private Integer buildPrecision(CompilationUnit astRoot) {
return this.precisionAdapter.getValue(astRoot);
}
public TextRange getPrecisionTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(this.precisionDeclarationAdapter, astRoot);
}
protected DeclarationAnnotationElementAdapter<Integer> buildPrecisionDeclarationAdapter() {
return this.buildIntegerElementAdapter(this.getPrecisionElementName());
}
protected AnnotationElementAdapter<Integer> buildPrecisionAdapter() {
return this.buildIntegerElementAdapter(this.precisionDeclarationAdapter);
}
protected abstract String getPrecisionElementName();
// ***** scale
public Integer getScale() {
return this.scale;
}
public void setScale(Integer scale) {
if (this.attributeValueHasChanged(this.scale, scale)) {
this.scale = scale;
this.scaleAdapter.setValue(scale);
}
}
private void syncScale(Integer astScale) {
Integer old = this.scale;
this.scale = astScale;
this.firePropertyChanged(SCALE_PROPERTY, old, astScale);
}
private Integer buildScale(CompilationUnit astRoot) {
return this.scaleAdapter.getValue(astRoot);
}
public TextRange getScaleTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(this.scaleDeclarationAdapter, astRoot);
}
protected DeclarationAnnotationElementAdapter<Integer> buildScaleDeclarationAdapter() {
return this.buildIntegerElementAdapter(this.getScaleElementName());
}
protected AnnotationElementAdapter<Integer> buildScaleAdapter() {
return this.buildIntegerElementAdapter(this.scaleDeclarationAdapter);
}
protected abstract String getScaleElementName();
// ********** misc **********
@Override
public boolean isUnset() {
return super.isUnset() &&
(this.length == null) &&
(this.precision == null) &&
(this.scale == null);
}
@Override
protected void rebuildAdapters() {
super.rebuildAdapters();
this.lengthDeclarationAdapter = this.buildLengthDeclarationAdapter();
this.lengthAdapter = this.buildLengthAdapter();
this.precisionDeclarationAdapter = this.buildPrecisionDeclarationAdapter();
this.precisionAdapter = this.buildPrecisionAdapter();
this.scaleDeclarationAdapter = this.buildScaleDeclarationAdapter();
this.scaleAdapter = this.buildScaleAdapter();
}
@Override
public void storeOn(Map<String, Object> map) {
super.storeOn(map);
map.put(LENGTH_PROPERTY, this.length);
this.length = null;
map.put(PRECISION_PROPERTY, this.precision);
this.precision = null;
map.put(SCALE_PROPERTY, this.scale);
this.scale = null;
}
@Override
public void restoreFrom(Map<String, Object> map) {
super.restoreFrom(map);
this.setLength((Integer) map.get(LENGTH_PROPERTY));
this.setPrecision((Integer) map.get(PRECISION_PROPERTY));
this.setScale((Integer) map.get(SCALE_PROPERTY));
}
}