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

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

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;


/**
 * This element is a hierarchical container called "title" either explicitly or due to the local tradition.
 *
 * 
 *   <xsd:element name="title" type="hierarchy"/>
 * 
* * @author Jacques Militello */ public final class Title extends Hierarchy implements ANhier { /** * XML tag element name. */ public static final String ELEMENT = "title"; /** * Memory address. */ private static final long ADDRESS = Buffers.address(ELEMENT); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS, 5); super.write(writer); writer.writeEnd(ADDRESS, 5); } /** * {@inheritDoc} */ @Override public String name() { return ELEMENT; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy