blob: 3cdb791d0258f7d2f9a09d3a73fcf5a9f20ecf7a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.jaxb.eclipselink.core.internal.resource.java.source;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.common.core.internal.resource.java.source.SourceAnnotation;
import org.eclipse.jpt.common.core.internal.utility.jdt.AnnotatedElementAnnotationElementAdapter;
import org.eclipse.jpt.common.core.internal.utility.jdt.ConversionDeclarationAnnotationElementAdapter;
import org.eclipse.jpt.common.core.internal.utility.jdt.ElementAnnotationAdapter;
import org.eclipse.jpt.common.core.internal.utility.jdt.SimpleDeclarationAnnotationAdapter;
import org.eclipse.jpt.common.core.resource.java.JavaResourceAnnotatedElement;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.core.utility.jdt.AnnotatedElement;
import org.eclipse.jpt.common.core.utility.jdt.AnnotationAdapter;
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.jaxb.eclipselink.core.resource.java.ELJaxb;
import org.eclipse.jpt.jaxb.eclipselink.core.resource.java.XmlTransformationAnnotation;
public class SourceXmlTransformationAnnotation
extends SourceAnnotation
implements XmlTransformationAnnotation {
public static final DeclarationAnnotationAdapter DECLARATION_ANNOTATION_ADAPTER = new SimpleDeclarationAnnotationAdapter(ELJaxb.XML_TRANSFORMATION);
private final DeclarationAnnotationElementAdapter<Boolean> optionalDeclarationAdapter;
private final AnnotationElementAdapter<Boolean> optionalAdapter;
private Boolean optional;
public SourceXmlTransformationAnnotation(JavaResourceAnnotatedElement parent, AnnotatedElement element) {
this(parent, element, DECLARATION_ANNOTATION_ADAPTER, new ElementAnnotationAdapter(element, DECLARATION_ANNOTATION_ADAPTER));
}
public SourceXmlTransformationAnnotation(JavaResourceAnnotatedElement parent, AnnotatedElement element, DeclarationAnnotationAdapter daa, AnnotationAdapter annotationAdapter) {
super(parent, element, daa, annotationAdapter);
this.optionalDeclarationAdapter = buildOptionalDeclarationAdapter(daa);
this.optionalAdapter = buildShortCircuitBooleanElementAdapter(this.optionalDeclarationAdapter);
}
private DeclarationAnnotationElementAdapter<Boolean> buildOptionalDeclarationAdapter(DeclarationAnnotationAdapter daa) {
return ConversionDeclarationAnnotationElementAdapter.forBooleans(daa, ELJaxb.XML_TRANSFORMATION__OPTIONAL);
}
private AnnotationElementAdapter<Boolean> buildShortCircuitBooleanElementAdapter(DeclarationAnnotationElementAdapter<Boolean> daea) {
return new AnnotatedElementAnnotationElementAdapter<Boolean>(this.annotatedElement, daea);
}
public String getAnnotationName() {
return ELJaxb.XML_TRANSFORMATION;
}
public void initialize(CompilationUnit astRoot) {
this.optional = buildOptional(astRoot);
}
public void synchronizeWith(CompilationUnit astRoot) {
this.syncOptional(buildOptional(astRoot));
}
@Override
public void toString(StringBuilder sb) {
sb.append(this.optional);
}
// ********** optional
public Boolean getOptional() {
return this.optional;
}
public void setOptional(Boolean optional) {
if (attributeValueHasChanged(this.optional, optional)) {
this.optional = optional;
this.optionalAdapter.setValue(optional);
}
}
private void syncOptional(Boolean astOptional) {
Boolean old = this.optional;
this.optional = astOptional;
this.firePropertyChanged(OPTIONAL_PROPERTY, old, this.optional);
}
private Boolean buildOptional(CompilationUnit astRoot) {
return this.optionalAdapter.getValue(astRoot);
}
public TextRange getOptionalTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(this.optionalDeclarationAdapter, astRoot);
}
}