Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/GenericJavaEnumMapping.java')
-rw-r--r--jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/GenericJavaEnumMapping.java309
1 files changed, 0 insertions, 309 deletions
diff --git a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/GenericJavaEnumMapping.java b/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/GenericJavaEnumMapping.java
deleted file mode 100644
index e664e53b6e..0000000000
--- a/jaxb/plugins/org.eclipse.jpt.jaxb.core/src/org/eclipse/jpt/jaxb/core/internal/context/java/GenericJavaEnumMapping.java
+++ /dev/null
@@ -1,309 +0,0 @@
-/*******************************************************************************
- * 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 java.util.List;
-import org.eclipse.jdt.core.dom.CompilationUnit;
-import org.eclipse.jpt.common.core.resource.java.JavaResourceEnum;
-import org.eclipse.jpt.common.core.resource.java.JavaResourceEnumConstant;
-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.CompositeIterable;
-import org.eclipse.jpt.common.utility.internal.iterables.EmptyIterable;
-import org.eclipse.jpt.common.utility.internal.iterables.SingleElementIterable;
-import org.eclipse.jpt.jaxb.core.context.JaxbEnum;
-import org.eclipse.jpt.jaxb.core.context.JaxbEnumConstant;
-import org.eclipse.jpt.jaxb.core.context.JaxbEnumMapping;
-import org.eclipse.jpt.jaxb.core.context.JaxbType;
-import org.eclipse.jpt.jaxb.core.context.JaxbTypeMapping;
-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.XmlEnumAnnotation;
-import org.eclipse.jpt.jaxb.core.resource.java.XmlTypeAnnotation;
-import org.eclipse.jpt.jaxb.core.xsd.XsdSchema;
-import org.eclipse.jpt.jaxb.core.xsd.XsdSimpleTypeDefinition;
-import org.eclipse.jpt.jaxb.core.xsd.XsdTypeDefinition;
-import org.eclipse.jpt.jaxb.core.xsd.XsdUtil;
-import org.eclipse.wst.validation.internal.provisional.core.IMessage;
-import org.eclipse.wst.validation.internal.provisional.core.IReporter;
-
-
-public class GenericJavaEnumMapping
- extends AbstractJavaTypeMapping
- implements JaxbEnumMapping {
-
- protected String specifiedXmlEnumValue;
-
- protected final EnumConstantContainer enumConstantContainer;
-
-
- public GenericJavaEnumMapping(JaxbEnum parent) {
- super(parent);
- this.enumConstantContainer = new EnumConstantContainer();
-
- initXmlEnumValue();
- initEnumConstants();
- }
-
-
- @Override
- public JavaResourceEnum getJavaResourceType() {
- return (JavaResourceEnum) super.getJavaResourceType();
- }
-
-
- // ********** sync/update **********
-
- @Override
- public void synchronizeWithResourceModel() {
- super.synchronizeWithResourceModel();
- syncXmlEnumValue();
- syncEnumConstants();
- }
-
- @Override
- public void update() {
- super.update();
- updateEnumConstants();
- }
-
-
- // ***** XmlEnum.value *****
-
- public String getXmlEnumValue() {
- return (this.specifiedXmlEnumValue != null) ? this.specifiedXmlEnumValue : DEFAULT_XML_ENUM_VALUE;
- }
-
- public String getSpecifiedXmlEnumValue() {
- return this.specifiedXmlEnumValue;
- }
-
- public void setSpecifiedXmlEnumValue(String xmlEnumValue) {
- getXmlEnumAnnotation().setValue(xmlEnumValue);
- setSpecifiedXmlEnumValue_(xmlEnumValue);
- }
-
- protected void setSpecifiedXmlEnumValue_(String xmlEnumValue) {
- String old = this.specifiedXmlEnumValue;
- this.specifiedXmlEnumValue = xmlEnumValue;
- firePropertyChanged(SPECIFIED_XML_ENUM_VALUE_PROPERTY, old, xmlEnumValue);
- }
-
- public String getFullyQualifiedXmlEnumValue() {
- return (this.specifiedXmlEnumValue != null) ?
- getXmlEnumAnnotation().getFullyQualifiedValueClassName()
- : DEFAULT_XML_ENUM_VALUE;
- }
-
- protected XmlEnumAnnotation getXmlEnumAnnotation() {
- return (XmlEnumAnnotation) getJavaResourceType().getNonNullAnnotation(JAXB.XML_ENUM);
- }
-
- protected String getResourceXmlEnumValue() {
- return getXmlEnumAnnotation().getValue();
- }
-
- protected void initXmlEnumValue() {
- this.specifiedXmlEnumValue = getResourceXmlEnumValue();
- }
-
- protected void syncXmlEnumValue() {
- setSpecifiedXmlEnumValue_(getResourceXmlEnumValue());
- }
-
-
- // ***** enum constants *****
-
- public Iterable<JaxbEnumConstant> getEnumConstants() {
- return this.enumConstantContainer.getContextElements();
- }
-
- public int getEnumConstantsSize() {
- return this.enumConstantContainer.getContextElementsSize();
- }
-
- protected void initEnumConstants() {
- this.enumConstantContainer.initialize();
- }
-
- protected void syncEnumConstants() {
- this.enumConstantContainer.synchronizeWithResourceModel();
- }
-
- protected void updateEnumConstants() {
- this.enumConstantContainer.update();
- }
-
- protected Iterable<JavaResourceEnumConstant> getResourceEnumConstants() {
- return getJavaResourceType().getEnumConstants();
- }
-
- private JaxbEnumConstant buildEnumConstant(JavaResourceEnumConstant resourceEnumConstant) {
- return getFactory().buildJavaEnumConstant(this, resourceEnumConstant);
- }
-
-
- // ***** misc *****
-
- @Override
- protected Iterable<String> getNonTransientReferencedXmlTypeNames() {
- if (this.specifiedXmlEnumValue != null) {
- return new CompositeIterable<String>(
- super.getNonTransientReferencedXmlTypeNames(),
- new SingleElementIterable(getFullyQualifiedXmlEnumValue()));
- }
- return super.getNonTransientReferencedXmlTypeNames();
- }
-
- public XsdSimpleTypeDefinition getValueXsdTypeDefinition() {
- XsdTypeDefinition xsdType = getValueXsdTypeDefinition_();
- if (xsdType == null || xsdType.getKind() != XsdTypeDefinition.Kind.SIMPLE) {
- return null;
- }
- return (XsdSimpleTypeDefinition) xsdType;
- }
-
- protected XsdTypeDefinition getValueXsdTypeDefinition_() {
- String fqXmlEnumValue = getFullyQualifiedXmlEnumValue();
-
- JaxbType jaxbType = getContextRoot().getType(fqXmlEnumValue);
- if (jaxbType != null) {
- JaxbTypeMapping typeMapping = jaxbType.getMapping();
- if (typeMapping != null) {
- return typeMapping.getXsdTypeDefinition();
- }
- }
- else {
- String typeMapping = getJaxbProject().getPlatform().getDefinition().getSchemaTypeMapping(fqXmlEnumValue);
- if (typeMapping != null) {
- XsdSchema xsdSchema = XsdUtil.getSchemaForSchema();
- return xsdSchema.getTypeDefinition(typeMapping);
- }
- }
-
- return null;
- }
-
-
- // ***** 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;
- }
-
- for (JaxbEnumConstant constant : getEnumConstants()) {
- result = constant.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);
-
- validateXmlType(messages, reporter, astRoot);
- validateXmlEnum(messages, reporter, astRoot);
-
- for (JaxbEnumConstant constant : getEnumConstants()) {
- constant.validate(messages, reporter, astRoot);
- }
- }
-
- protected void validateXmlType(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
- XmlTypeAnnotation annotation = getXmlTypeAnnotation();
-
- if (annotation.getFactoryClass() != null) {
- messages.add(
- DefaultValidationMessages.buildMessage(
- IMessage.NORMAL_SEVERITY,
- JaxbValidationMessages.XML_TYPE__FACTORY_CLASS_IGNORED_FOR_ENUM,
- this,
- annotation.getFactoryClassTextRange(astRoot)));
- }
-
- if (annotation.getFactoryMethod() != null) {
- messages.add(
- DefaultValidationMessages.buildMessage(
- IMessage.NORMAL_SEVERITY,
- JaxbValidationMessages.XML_TYPE__FACTORY_METHOD_IGNORED_FOR_ENUM,
- this,
- annotation.getFactoryMethodTextRange(astRoot)));
- }
-
- if (! CollectionTools.isEmpty(annotation.getPropOrder())) {
- messages.add(
- DefaultValidationMessages.buildMessage(
- IMessage.NORMAL_SEVERITY,
- JaxbValidationMessages.XML_TYPE__PROP_ORDER_IGNORED_FOR_ENUM,
- this,
- annotation.getPropOrderTextRange(astRoot)));
- }
- }
-
- protected void validateXmlEnum(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
- XsdSchema xsdSchema = getJaxbPackage().getXsdSchema();
- XsdTypeDefinition xsdType = getValueXsdTypeDefinition_();
-
- if ((xsdSchema != null && xsdType == null)
- || (xsdType != null && xsdType.getKind() != XsdTypeDefinition.Kind.SIMPLE)) {
- messages.add(
- DefaultValidationMessages.buildMessage(
- IMessage.HIGH_SEVERITY,
- JaxbValidationMessages.XML_ENUM__NON_SIMPLE_SCHEMA_TYPE,
- new String[] { getFullyQualifiedXmlEnumValue() },
- this,
- getXmlEnumValueTextRange(astRoot)));
- }
- }
-
- protected TextRange getXmlEnumValueTextRange(CompilationUnit astRoot) {
- return getXmlEnumAnnotation().getValueTextRange(astRoot);
- }
-
-
- /**
- * enum constant container adapter
- */
- protected class EnumConstantContainer
- extends ContextCollectionContainer<JaxbEnumConstant, JavaResourceEnumConstant> {
-
- @Override
- protected String getContextElementsPropertyName() {
- return ENUM_CONSTANTS_COLLECTION;
- }
-
- @Override
- protected JaxbEnumConstant buildContextElement(JavaResourceEnumConstant resourceElement) {
- return GenericJavaEnumMapping.this.buildEnumConstant(resourceElement);
- }
-
- @Override
- protected Iterable<JavaResourceEnumConstant> getResourceElements() {
- return GenericJavaEnumMapping.this.getResourceEnumConstants();
- }
-
- @Override
- protected JavaResourceEnumConstant getResourceElement(JaxbEnumConstant contextElement) {
- return contextElement.getResourceEnumConstant();
- }
- }
-}

Back to the top