com.sun.xml.bind.v2.model.impl.ERPropertyInfoImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webservices-rt Show documentation
Show all versions of webservices-rt Show documentation
This module contains the Metro runtime code.
/*
* Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.bind.v2.model.impl;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.namespace.QName;
import com.sun.xml.bind.v2.runtime.IllegalAnnotationException;
/**
* Common part of {@link ElementPropertyInfoImpl} and {@link ReferencePropertyInfoImpl}.
*
* @author Kohsuke Kawaguchi
*/
abstract class ERPropertyInfoImpl
extends PropertyInfoImpl {
public ERPropertyInfoImpl(ClassInfoImpl classInfo, PropertySeed propertySeed) {
super(classInfo, propertySeed);
XmlElementWrapper e = seed.readAnnotation(XmlElementWrapper.class);
boolean nil = false;
boolean required = false;
if(!isCollection()) {
xmlName = null;
if(e!=null)
classInfo.builder.reportError(new IllegalAnnotationException(
Messages.XML_ELEMENT_WRAPPER_ON_NON_COLLECTION.format(
nav().getClassName(parent.getClazz())+'.'+seed.getName()),
e
));
} else {
if(e!=null) {
xmlName = calcXmlName(e);
nil = e.nillable();
required = e.required();
} else
xmlName = null;
}
wrapperNillable = nil;
wrapperRequired = required;
}
private final QName xmlName;
/**
* True if the wrapper tag name is nillable.
*/
private final boolean wrapperNillable;
/**
* True if the wrapper tag is required.
*/
private final boolean wrapperRequired;
/**
* Gets the wrapper element name.
*/
public final QName getXmlName() {
return xmlName;
}
public final boolean isCollectionNillable() {
return wrapperNillable;
}
public final boolean isCollectionRequired() {
return wrapperRequired;
}
}