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

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

package io.legaldocml.akn.element;

import io.legaldocml.akn.DocumentType;
import io.legaldocml.akn.visitor.AknVisitor;
import io.legaldocml.io.XmlWriter;
import io.legaldocml.io.impl.Buffers;

import java.io.IOException;

/**
 * Element doc is used for describing the structure and content of any other document that is not included in the list
 * of document explicitly managed by Akoma Ntoso.
 *
 * 
 *   <xsd:element name="doc" type="openStructure"/>
 *     <xsd:unique name="eId-doc">
 *       <xsd:selector xpath=".//*"/>
 *       <xsd:field xpath="@eId"/>
 *     <xsd:unique>
 *     <xsd:unique name="GUID-doc">
 *       <xsd:selector xpath=".//*"/>
 *       <xsd:field xpath="@GUID"/>
 *     <xsd:unique>
 *   <xsd:element>
 * 
* * @author Jacques Militello */ public final class Doc extends OpenStructure implements DocumentType { /** * XML Tag element name. */ public static final String ELEMENT = "doc"; /** * Memory address. */ private static final long ADDRESS = Buffers.address(ELEMENT); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS, 3); super.write(writer); writer.writeEnd(ADDRESS, 3); } /** * {@inheritDoc} */ @Override public String name() { return ELEMENT; } /** * {@inheritDoc} */ @Override public void accept(AknVisitor visitor) { if (visitor.visitEnter(this)) { super.accept(visitor); visitor.visitLeave(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy