blob: 08738313713c575d5e917a7b874356e6108e68e3 [file] [log] [blame]
/*
* Copyright (c) 1997, 2021 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 org.glassfish.jaxb.core.v2.model.core;
import java.util.Map;
import javax.xml.namespace.QName;
/**
* Property that maps to the following schema fragment.
*
* <pre>{@code
* <xs:complexType>
* <xs:sequence>
* <xs:element name="entry" minOccurs="0" maxOccurs="unbounded">
* <xs:complexType>
* <xs:sequence>
* <xs:element name="key" type="XXXX"/>
* <xs:element name="value" type="YYYY"/>
* </xs:sequence>
* </xs:complexType>
* </xs:element>
* </xs:sequence>
* </xs:complexType>
* }</pre>
*
* <p>
* This property is used to represent a default binding of a {@link Map} property.
* ({@link Map} properties with adapters will be represented by {@link ElementPropertyInfo}.)
*
*
* <h2>Design Thinking Led to This</h2>
* <p>
* I didn't like the idea of adding such a special-purpose {@link PropertyInfo} to a model.
* The alternative was to implicitly assume an adapter, and have internal representation of
* the Entry class ready.
* But the fact that the key type and the value type changes with the parameterization makes
* it very difficult to have such a class (especially inside Annotation Processing, where we can't even generate
* classes.)
*
* @author Kohsuke Kawaguchi
*/
public interface MapPropertyInfo<T,C> extends PropertyInfo<T,C> {
/**
* Gets the wrapper element name.
*
* @return
* always non-null.
*/
QName getXmlName();
/**
* Returns true if this property is nillable
* (meaning the absence of the value is treated as nil='true')
*
* <p>
* This method is only used when this property is a collection.
*/
boolean isCollectionNillable();
/**
* Type of the key of the map. K of {@code HashMap<K,V>}
*
* @return never null.
*/
NonElement<T,C> getKeyType();
/**
* Type of the value of the map. V of {@code HashMap<K,V>}
*
* @return never null.
*/
NonElement<T,C> getValueType();
// TODO
// Adapter<T,C> getKeyAdapter();
// Adapter<T,C> getValueAdapter();
}