blob: be352f4c52cd9860875c087b8190fb0ac386d611 [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 java.util.List;
import org.eclipse.jdt.core.dom.CompilationUnit;
import org.eclipse.jpt.jaxb.core.MappingKeys;
import org.eclipse.jpt.jaxb.core.context.JaxbPersistentAttribute;
import org.eclipse.jpt.jaxb.core.context.XmlValueMapping;
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.XmlValueAnnotation;
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 XmlValueMapping {
public GenericJavaXmlValueMapping(JaxbPersistentAttribute 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, CompilationUnit astRoot) {
super.validate(messages, reporter, astRoot);
validateSchemaType(messages, reporter, astRoot);
}
protected void validateSchemaType(List<IMessage> messages, IReporter reporter, CompilationUnit astRoot) {
XsdTypeDefinition xsdClassType = getClassMapping().getXsdTypeDefinition();
if (xsdClassType == null) {
return;
}
if (! xsdClassType.hasTextContent()) {
messages.add(
DefaultValidationMessages.buildMessage(
IMessage.HIGH_SEVERITY,
JaxbValidationMessages.XML_VALUE__NO_TEXT_CONTENT,
this,
getValidationTextRange(astRoot)));
return;
}
XsdTypeDefinition xsdType = xsdClassType.getBaseType();
XsdTypeDefinition expectedSchemaType = getDataTypeXsdTypeDefinition();
if (xsdType == null || expectedSchemaType == null) {
return;
}
if (! xsdType.typeIsValid(expectedSchemaType, isXmlList())) {
messages.add(
DefaultValidationMessages.buildMessage(
IMessage.HIGH_SEVERITY,
JaxbValidationMessages.XML_VALUE__INVALID_SCHEMA_TYPE,
new String[] { getValueTypeName() },
this,
getValidationTextRange(astRoot)));
}
}
}