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

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

The newest version!
package io.legaldocml.akn.element;

import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlWriter;

import java.io.IOException;

import static io.legaldocml.akn.AknElements.COMPONENT;

/**
 * The element component is a container of a subdocument specified in a composite document.
 *
 * 
 *   
 * 
* * @author Jacques Militello */ public final class Component extends DocContainerType { /** * Memory address. */ private static final long ADDRESS_COMPONENT = Buffers.address(COMPONENT); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS_COMPONENT, 9); super.write(writer); writer.writeEnd(ADDRESS_COMPONENT, 9); } /** * {@inheritDoc} */ @Override public String name() { return COMPONENT; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy