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

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

package io.legaldocml.akn.element;

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

import java.io.IOException;

/**
 * The element quorum is a metadata container containing the value of a quorum in a vote or a quorum verification.
 *
 * 
 *   <xsd:element name="quorum" type="countType"/>
 * 
* * @author Jacques Militello */ public final class Quorum extends CountType implements ParliamentaryAnalysisTypeElement { /** * XML Tag element name. */ public static final String ELEMENT = "quorum"; /** * Memory address. */ private static final long ADDRESS = Buffers.address(ELEMENT); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS, 6); super.write(writer); writer.writeEnd(ADDRESS, 6); } /** * {@inheritDoc} */ @Override public String name() { return ELEMENT; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy