blob: d9b4f2389890f933feb3ca8f3da3d2e595ec8c75 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.jaxb.core.internal.resource.java.source;
import org.eclipse.jdt.core.dom.CompilationUnit;
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.SimpleDeclarationAnnotationAdapter;
import org.eclipse.jpt.common.core.utility.TextRange;
import org.eclipse.jpt.common.core.utility.jdt.AbstractType;
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.core.resource.java.JavaResourceAbstractType;
import org.eclipse.jpt.jaxb.core.resource.java.JAXB;
import org.eclipse.jpt.jaxb.core.resource.java.XmlRootElementAnnotation;
/**
* javax.xml.bind.annotation.XmlRootElement
*/
public final class SourceXmlRootElementAnnotation
extends SourceAnnotation<AbstractType>
implements XmlRootElementAnnotation
{
public static final DeclarationAnnotationAdapter DECLARATION_ANNOTATION_ADAPTER = new SimpleDeclarationAnnotationAdapter(ANNOTATION_NAME);
private static final DeclarationAnnotationElementAdapter<String> NAME_ADAPTER = buildNameAdapter();
private final AnnotationElementAdapter<String> nameAdapter;
private String name;
private static final DeclarationAnnotationElementAdapter<String> NAMESPACE_ADAPTER = buildNamespaceAdapter();
private final AnnotationElementAdapter<String> namespaceAdapter;
private String namespace;
public SourceXmlRootElementAnnotation(JavaResourceAbstractType parent, AbstractType type) {
super(parent, type, DECLARATION_ANNOTATION_ADAPTER);
this.nameAdapter = this.buildAnnotationElementAdapter(NAME_ADAPTER);
this.namespaceAdapter = this.buildAnnotationElementAdapter(NAMESPACE_ADAPTER);
}
protected AnnotationElementAdapter<String> buildAnnotationElementAdapter(DeclarationAnnotationElementAdapter<String> daea) {
return new AnnotatedElementAnnotationElementAdapter<String>(this.annotatedElement, daea);
}
public String getAnnotationName() {
return ANNOTATION_NAME;
}
public void initialize(CompilationUnit astRoot) {
this.name = this.buildName(astRoot);
this.namespace = this.buildNamespace(astRoot);
}
public void synchronizeWith(CompilationUnit astRoot) {
this.syncName(this.buildName(astRoot));
this.syncNamespace(this.buildNamespace(astRoot));
}
@Override
public void toString(StringBuilder sb) {
sb.append(this.name);
}
// ********** XmlRootElementAnnotation implementation **********
// ***** name
public String getName() {
return this.name;
}
public void setName(String name) {
if (this.attributeValueHasChanged(this.name, name)) {
this.name = name;
this.nameAdapter.setValue(name);
}
}
private void syncName(String astName) {
String old = this.name;
this.name = astName;
this.firePropertyChanged(NAME_PROPERTY, old, astName);
}
private String buildName(CompilationUnit astRoot) {
return this.nameAdapter.getValue(astRoot);
}
public TextRange getNameTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(NAME_ADAPTER, astRoot);
}
public boolean nameTouches(int pos, CompilationUnit astRoot) {
return elementTouches(NAME_ADAPTER, pos, astRoot);
}
// ***** namespace
public String getNamespace() {
return this.namespace;
}
public void setNamespace(String namespace) {
if (this.attributeValueHasChanged(this.namespace, namespace)) {
this.namespace = namespace;
this.namespaceAdapter.setValue(namespace);
}
}
private void syncNamespace(String astNamespace) {
String old = this.namespace;
this.namespace = astNamespace;
this.firePropertyChanged(NAMESPACE_PROPERTY, old, astNamespace);
}
private String buildNamespace(CompilationUnit astRoot) {
return this.namespaceAdapter.getValue(astRoot);
}
public TextRange getNamespaceTextRange(CompilationUnit astRoot) {
return this.getElementTextRange(NAMESPACE_ADAPTER, astRoot);
}
public boolean namespaceTouches(int pos, CompilationUnit astRoot) {
return elementTouches(NAMESPACE_ADAPTER, pos, astRoot);
}
//*********** static methods ****************
private static DeclarationAnnotationElementAdapter<String> buildNameAdapter() {
return ConversionDeclarationAnnotationElementAdapter.forStrings(DECLARATION_ANNOTATION_ADAPTER, JAXB.XML_ROOT_ELEMENT__NAME);
}
private static DeclarationAnnotationElementAdapter<String> buildNamespaceAdapter() {
return ConversionDeclarationAnnotationElementAdapter.forStrings(DECLARATION_ANNOTATION_ADAPTER, JAXB.XML_ROOT_ELEMENT__NAMESPACE);
}
}