Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/AbstractJavaXmlNodeMapping.java')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/AbstractJavaXmlNodeMapping.java265
1 files changed, 0 insertions, 265 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/AbstractJavaXmlNodeMapping.java b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/AbstractJavaXmlNodeMapping.java
deleted file mode 100644
index 997d45adf5..0000000000
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/AbstractJavaXmlNodeMapping.java
+++ /dev/null
@@ -1,265 +0,0 @@
-package org.eclipse.jpt.jaxb.core.internal.context.java;
-
-import java.util.List;
-import org.eclipse.jdt.core.dom.CompilationUnit;
-import org.eclipse.jpt.common.core.resource.java.Annotation;
-import org.eclipse.jpt.common.core.utility.TextRange;
-import org.eclipse.jpt.common.utility.Filter;
-import org.eclipse.jpt.common.utility.internal.CollectionTools;
-import org.eclipse.jpt.common.utility.internal.iterables.EmptyIterable;
-import org.eclipse.jpt.jaxb.core.context.JaxbPersistentAttribute;
-import org.eclipse.jpt.jaxb.core.context.XmlNodeMapping;
-import org.eclipse.jpt.jaxb.core.context.XmlSchemaType;
-import org.eclipse.jpt.jaxb.core.internal.validation.DefaultValidationMessages;
-import org.eclipse.jpt.jaxb.core.internal.validation.JaxbValidationMessages;
-import org.eclipse.jpt.jaxb.core.resource.java.JAXB;
-import org.eclipse.jpt.jaxb.core.resource.java.XmlListAnnotation;
-import org.eclipse.jpt.jaxb.core.resource.java.XmlSchemaTypeAnnotation;
-import org.eclipse.jpt.jaxb.core.xsd.XsdSimpleTypeDefinition;
-import org.eclipse.jpt.jaxb.core.xsd.XsdTypeDefinition;
-import org.eclipse.wst.validation.internal.provisional.core.IMessage;
-import org.eclipse.wst.validation.internal.provisional.core.IReporter;
-import org.eclipse.xsd.XSDVariety;
-
-
-public abstract class AbstractJavaXmlNodeMapping<A extends Annotation>
- extends AbstractJavaAdaptableAttributeMapping<A>
- implements XmlNodeMapping {
-
- protected XmlSchemaType xmlSchemaType;
-
- protected boolean specifiedXmlList;
-
- protected boolean defaultXmlList;
-
-
- public AbstractJavaXmlNodeMapping(JaxbPersistentAttribute parent) {
- super(parent);
- initializeXmlSchemaType();
- initializeXmlList();
- }
-
-
- // ***** sync/update *****
-
- @Override
- public void synchronizeWithResourceModel() {
- super.synchronizeWithResourceModel();
- syncXmlSchemaType();
- syncXmlList();
- }
-
- @Override
- public void update() {
- super.update();
- updateXmlSchemaType();
- }
-
-
- // ***** XmlSchemaType *****
-
- public XmlSchemaType getXmlSchemaType() {
- return this.xmlSchemaType;
- }
-
- protected void setXmlSchemaType_(XmlSchemaType xmlSchemaType) {
- XmlSchemaType oldXmlSchemaType = this.xmlSchemaType;
- this.xmlSchemaType = xmlSchemaType;
- this.firePropertyChanged(XML_SCHEMA_TYPE_PROPERTY, oldXmlSchemaType, xmlSchemaType);
- }
-
- public boolean hasXmlSchemaType() {
- return this.xmlSchemaType != null;
- }
-
- public XmlSchemaType addXmlSchemaType() {
- if (this.xmlSchemaType != null) {
- throw new IllegalStateException();
- }
- XmlSchemaTypeAnnotation annotation = (XmlSchemaTypeAnnotation) this.getJavaResourceAttribute().addAnnotation(0, JAXB.XML_SCHEMA_TYPE);
-
- XmlSchemaType xmlJavaTypeAdapter = this.buildXmlSchemaType(annotation);
- this.setXmlSchemaType_(xmlJavaTypeAdapter);
- return xmlJavaTypeAdapter;
- }
-
- public void removeXmlSchemaType() {
- if (this.xmlSchemaType == null) {
- throw new IllegalStateException();
- }
- this.getJavaResourceAttribute().removeAnnotation(JAXB.XML_SCHEMA_TYPE);
- this.setXmlSchemaType_(null);
- }
-
- protected XmlSchemaType buildXmlSchemaType(XmlSchemaTypeAnnotation annotation) {
- return new GenericJavaAttributeMappingXmlSchemaType(this, annotation);
- }
-
- protected XmlSchemaTypeAnnotation getXmlSchemaTypeAnnotation() {
- return (XmlSchemaTypeAnnotation) this.getJavaResourceAttribute().getAnnotation(0, JAXB.XML_SCHEMA_TYPE);
- }
-
- protected void initializeXmlSchemaType() {
- XmlSchemaTypeAnnotation annotation = this.getXmlSchemaTypeAnnotation();
- if (annotation != null) {
- this.xmlSchemaType = this.buildXmlSchemaType(annotation);
- }
- }
-
- protected void updateXmlSchemaType() {
- if (this.xmlSchemaType != null) {
- this.xmlSchemaType.update();
- }
- }
-
- protected void syncXmlSchemaType() {
- XmlSchemaTypeAnnotation annotation = this.getXmlSchemaTypeAnnotation();
- if (annotation != null) {
- if (this.getXmlSchemaType() != null) {
- this.getXmlSchemaType().synchronizeWithResourceModel();
- }
- else {
- this.setXmlSchemaType_(this.buildXmlSchemaType(annotation));
- }
- }
- else {
- this.setXmlSchemaType_(null);
- }
- }
-
-
- // ***** XmlList *****
-
- public boolean isXmlList() {
- return isSpecifiedXmlList() || isDefaultXmlList();
- }
-
- public boolean isSpecifiedXmlList() {
- return this.specifiedXmlList;
- }
-
- public void setSpecifiedXmlList(boolean newValue) {
- if (this.specifiedXmlList == newValue) {
- throw new IllegalStateException();
- }
-
- if (newValue) {
- getJavaResourceAttribute().addAnnotation(JAXB.XML_LIST);
- }
- else {
- getJavaResourceAttribute().removeAnnotation(JAXB.XML_LIST);
- }
-
- setSpecifiedXmlList_(newValue);
- }
-
- protected void setSpecifiedXmlList_(boolean newValue) {
- boolean oldValue = this.specifiedXmlList;
- this.specifiedXmlList = newValue;
- firePropertyChanged(SPECIFIED_XML_LIST_PROPERTY, oldValue, newValue);
- }
-
- public boolean isDefaultXmlList() {
- return this.defaultXmlList;
- }
-
- protected void setDefaultXmlList_(boolean newValue) {
- boolean oldValue = this.defaultXmlList;
- this.defaultXmlList = newValue;
- firePropertyChanged(DEFAULT_XML_LIST_PROPERTY, oldValue, newValue);
- }
-
- protected void initializeXmlList() {
- this.specifiedXmlList = getXmlListAnnotation() != null;
- this.defaultXmlList = calculateDefaultXmlList();
- }
-
- protected void syncXmlList() {
- setSpecifiedXmlList_(getXmlListAnnotation() != null);
- setDefaultXmlList_(calculateDefaultXmlList());
- }
-
- protected XmlListAnnotation getXmlListAnnotation() {
- return (XmlListAnnotation) getJavaResourceAttribute().getAnnotation(JAXB.XML_LIST);
- }
-
- protected abstract boolean calculateDefaultXmlList();
-
-
- // ***** misc *****
-
- @Override
- public XsdTypeDefinition getDataTypeXsdTypeDefinition() {
- if (this.xmlSchemaType != null) {
- return this.xmlSchemaType.getXsdTypeDefinition();
- }
- return super.getDataTypeXsdTypeDefinition();
- }
-
-
- // ***** content assist *****
-
- @Override
- public Iterable<String> getJavaCompletionProposals(int pos, Filter<String> filter, CompilationUnit astRoot) {
- Iterable<String> result = super.getJavaCompletionProposals(pos, filter, astRoot);
- if (! CollectionTools.isEmpty(result)) {
- return result;
- }
-
- if (this.xmlSchemaType != null) {
- result = this.xmlSchemaType.getJavaCompletionProposals(pos, filter, astRoot);
- if (! CollectionTools.isEmpty(result)) {
- return result;
- }
- }
-
- return EmptyIterable.instance();
- }
-
-
- // ***** validation *****
-
- @Override
- public void validate(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
- super.validate(messages, reporter, astRoot);
-
- if (this.xmlSchemaType != null) {
- this.xmlSchemaType.validate(messages, reporter, astRoot);
- }
-
- if (isXmlList()) {
- validateXmlList(messages, reporter, astRoot);
- }
- }
-
- protected void validateXmlList(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
- if (! getPersistentAttribute().isJavaResourceAttributeCollectionType()) {
- messages.add(
- DefaultValidationMessages.buildMessage(
- IMessage.HIGH_SEVERITY,
- JaxbValidationMessages.XML_LIST__ATTRIBUTE_NOT_COLLECTION_TYPE,
- this,
- getXmlListValidationTextRange(astRoot)));
- }
- else {
- XsdTypeDefinition xsdType = getDataTypeXsdTypeDefinition();
- if (xsdType != null
- && (xsdType.getKind() != XsdTypeDefinition.Kind.SIMPLE
- || ((XsdSimpleTypeDefinition) xsdType).getXSDComponent().getVariety() == XSDVariety.LIST_LITERAL)) {
-
- messages.add(
- DefaultValidationMessages.buildMessage(
- IMessage.HIGH_SEVERITY,
- JaxbValidationMessages.XML_LIST__ITEM_TYPE_NOT_MAPPED_TO_VALID_SCHEMA_TYPE,
- new String[] { getValueTypeName() },
- this,
- getValidationTextRange(astRoot)));
- }
- }
- }
-
- protected TextRange getXmlListValidationTextRange(CompilationUnit astRoot) {
- XmlListAnnotation annotation = getXmlListAnnotation();
- return (annotation == null) ? getValidationTextRange(astRoot) : annotation.getTextRange(astRoot);
- }
-}

Back to the top