blob: 35f587e39302c892f120960a7d73f033473be489 [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.core.internal.context.java;
import org.eclipse.jpt.jaxb.core.MappingKeys;
import org.eclipse.jpt.jaxb.core.context.JaxbPersistentAttribute;
import org.eclipse.jpt.jaxb.core.context.XmlAttributeMapping;
import org.eclipse.jpt.jaxb.core.resource.java.XmlAttributeAnnotation;
public class GenericJavaXmlAttributeMapping
extends AbstractJavaAttributeMapping<XmlAttributeAnnotation>
implements XmlAttributeMapping
{
protected String specifiedName;
protected Boolean specifiedRequired;
protected String specifiedNamespace;
public GenericJavaXmlAttributeMapping(JaxbPersistentAttribute parent) {
super(parent);
this.specifiedRequired = this.buildSpecifiedRequired();
}
public String getKey() {
return MappingKeys.XML_ATTRIBUTE_ATTRIBUTE_MAPPING_KEY;
}
@Override
protected String getAnnotationName() {
return XmlAttributeAnnotation.ANNOTATION_NAME;
}
@Override
public void synchronizeWithResourceModel() {
super.synchronizeWithResourceModel();
this.setSpecifiedName_(this.buildSpecifiedName());
this.setSpecifiedRequired_(this.buildSpecifiedRequired());
this.setSpecifiedNamespace_(this.buildSpecifiedNamespace());
}
//************ XmlAttribute.name ***************
public String getName() {
return this.getSpecifiedName() == null ? this.getDefaultName() : getSpecifiedName();
}
public String getDefaultName() {
return getJavaResourceAttribute().getName();
}
public String getSpecifiedName() {
return this.specifiedName;
}
public void setSpecifiedName(String name) {
this.getAnnotationForUpdate().setName(name);
this.setSpecifiedName_(name);
}
protected void setSpecifiedName_(String name) {
String old = this.specifiedName;
this.specifiedName = name;
firePropertyChanged(SPECIFIED_NAME_PROPERTY, old, name);
}
protected String buildSpecifiedName() {
return getMappingAnnotation() == null ? null : getMappingAnnotation().getName();
}
//************ required ***************
public boolean isRequired() {
return (this.getSpecifiedRequired() == null) ? this.isDefaultRequired() : this.getSpecifiedRequired().booleanValue();
}
public boolean isDefaultRequired() {
return DEFAULT_REQUIRED;
}
public Boolean getSpecifiedRequired() {
return this.specifiedRequired;
}
public void setSpecifiedRequired(Boolean newSpecifiedRequired) {
this.getAnnotationForUpdate().setRequired(newSpecifiedRequired);
this.setSpecifiedRequired_(newSpecifiedRequired);
}
protected void setSpecifiedRequired_(Boolean newSpecifiedRequired) {
Boolean oldRequired = this.specifiedRequired;
this.specifiedRequired = newSpecifiedRequired;
firePropertyChanged(SPECIFIED_REQUIRED_PROPERTY, oldRequired, newSpecifiedRequired);
}
protected Boolean buildSpecifiedRequired() {
return getMappingAnnotation() == null ? null : getMappingAnnotation().getRequired();
}
//************ XmlAttribute.namespace ***************
public String getNamespace() {
return getSpecifiedNamespace() == null ? getDefaultNamespace() : getSpecifiedNamespace();
}
public String getDefaultNamespace() {
//TODO calculate default namespace
return null;
}
public String getSpecifiedNamespace() {
return this.specifiedNamespace;
}
public void setSpecifiedNamespace(String newSpecifiedNamespace) {
this.getAnnotationForUpdate().setNamespace(newSpecifiedNamespace);
this.setSpecifiedNamespace_(newSpecifiedNamespace);
}
protected void setSpecifiedNamespace_(String newSpecifiedNamespace) {
String oldNamespace = this.specifiedNamespace;
this.specifiedNamespace = newSpecifiedNamespace;
firePropertyChanged(SPECIFIED_NAMESPACE_PROPERTY, oldNamespace, newSpecifiedNamespace);
}
protected String buildSpecifiedNamespace() {
return getMappingAnnotation() == null ? null : getMappingAnnotation().getNamespace();
}
}