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

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

package io.legaldocml.akn.element;

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

import java.io.IOException;

/**
 * Element debateReport is used for descriving the structure and content of a report.
 *
 * 
 *   <xsd:element name="debateReport" type="openStructure">
 * 	   <xsd:unique name="eId-debateReport">
 *       <xsd:selector xpath=".//*"/>
 *       <xsd:field xpath="@eId"/>
 *     <xsd:unique>
 *     <xsd:unique name="GUID-debateReport">
 *       <xsd:selector xpath=".//*"/>
 *       <xsd:field xpath="@GUID"/>
 *     <xsd:unique>
 * 	 <xsd:element>
 * 
* * @author Jacques Militello */ public final class DebateReport extends OpenStructure implements DocumentType { /** * XML tag element name. */ public static final String ELEMENT = "debateReport"; /** * Memory address. */ private static final long ADDRESS = Buffers.address(ELEMENT); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS, 12); super.write(writer); writer.writeEnd(ADDRESS, 12); } /** * {@inheritDoc} */ @Override public String name() { return ELEMENT; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy