All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.legaldocml.akn.element.AttachmentsV2 Maven / Gradle / Ivy

package io.legaldocml.akn.element;

import com.google.common.collect.ImmutableMap;
import io.legaldocml.akn.util.AknList;
import io.legaldocml.akn.util.XmlReaderHelper;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlReader;
import io.legaldocml.io.XmlWriter;

import java.io.IOException;
import java.util.function.Supplier;

/**
 *
 * 
 *  <xsd:element name="attachments">
 *  	<xsd:complexType>
 *      	<xsd:sequence>
 *          	<xsd:element ref="componentRef" minOccurs="1" maxOccurs="unbounded"/>
 *          <xsd:sequence>
 *      	<xsd:attributeGroup ref="coreopt"/>
 * 		<xsd:complexType>
 * 	<xsd:element>
 * 
* * @author Jacques Militello */ public final class AttachmentsV2 extends CoreOptImpl implements Attachments{ /** * XML tag element name. */ public static final String ELEMENT = "attachments"; /** * Memory address. */ private static final long ADDRESS = Buffers.address(ELEMENT); private static final ImmutableMap> ELEMS; static { ELEMS = ImmutableMap.of(ComponentRef.ELEMENT, ComponentRef::new); } // Mandatory (min 1). private final AknList elements = new AknList(new ComponentRef[4]); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS, 11); this.elements.write(writer); writer.writeEnd(ADDRESS, 11); } /** * {@inheritDoc} */ @Override public void read(XmlReader reader) { super.read(reader); XmlReaderHelper.read(reader, this.elements, ELEMS); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy