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

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

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

import io.legaldocml.akn.group.ANhier;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlWriter;

import java.io.IOException;

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

/**
 * This element is a hierarchical container called "subpart" either explicitly or due to the local tradition.
 *
 * 
 *   
 * 
* * @author Jacques Militello */ public final class Subpart extends Hierarchy implements ANhier { /** * Memory address. */ private static final long ADDRESS_SUB_PART = Buffers.address(SUB_PART); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS_SUB_PART, 7); super.write(writer); writer.writeEnd(ADDRESS_SUB_PART, 7); } /** * {@inheritDoc} */ @Override public String name() { return SUB_PART; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy