blob: f290927ab1d73bb58b844208bd4e89904c4cd49d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jaxb.core.internal.context.java;
import java.util.List;
import org.eclipse.jpt.jaxb.core.MappingKeys;
import org.eclipse.jpt.jaxb.core.context.java.JavaPersistentAttribute;
import org.eclipse.jpt.jaxb.core.context.java.JavaXmlValueMapping;
import org.eclipse.jpt.jaxb.core.resource.java.JAXB;
import org.eclipse.jpt.jaxb.core.resource.java.XmlValueAnnotation;
import org.eclipse.jpt.jaxb.core.validation.JptJaxbCoreValidationMessages;
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;
public class GenericJavaXmlValueMapping
extends AbstractJavaXmlNodeMapping<XmlValueAnnotation>
implements JavaXmlValueMapping {
public GenericJavaXmlValueMapping(JavaPersistentAttribute parent) {
super(parent);
}
public String getKey() {
return MappingKeys.XML_VALUE_ATTRIBUTE_MAPPING_KEY;
}
@Override
protected String getAnnotationName() {
return JAXB.XML_VALUE;
}
// ***** XmlList *****
@Override
protected boolean calculateDefaultXmlList() {
return getPersistentAttribute().isJavaResourceAttributeCollectionType();
}
// ***** validation *****
@Override
public void validate(List<IMessage> messages, IReporter reporter) {
super.validate(messages, reporter);
validateSchemaType(messages, reporter);
}
protected void validateSchemaType(List<IMessage> messages, IReporter reporter) {
XsdTypeDefinition xsdClassType = getClassMapping().getXsdTypeDefinition();
if (xsdClassType == null) {
return;
}
if (! xsdClassType.hasTextContent()) {
messages.add(
this.buildValidationMessage(
getValidationTextRange(),
JptJaxbCoreValidationMessages.XML_VALUE__NO_TEXT_CONTENT
));
return;
}
XsdTypeDefinition xsdType = xsdClassType.getBaseType();
XsdTypeDefinition expectedSchemaType = getDataTypeXsdTypeDefinition();
if (xsdType == null || expectedSchemaType == null) {
return;
}
if (! xsdType.typeIsValid(expectedSchemaType, isXmlList())) {
messages.add(
this.buildValidationMessage(
getValidationTextRange(),
JptJaxbCoreValidationMessages.XML_VALUE__INVALID_SCHEMA_TYPE,
getValueTypeName()));
}
}
}