io.legaldocml.akn.element.Recount 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 recount is a metadata container containing information about an event of a recount happened within a
* debate.
*
*
* <xsd:element name="recount" type="parliamentaryAnalysisType"/>
*
*
* @author Jacques Militello
*/
public final class Recount extends ParliamentaryAnalysisType implements ParliamentaryAnalysisElement {
/**
* XML tag element name.
*/
public static final String ELEMENT = "recount";
/**
* Memory address.
*/
private static final long ADDRESS = Buffers.address(ELEMENT);
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS, 7);
super.write(writer);
writer.writeEnd(ADDRESS, 7);
}
/**
* {@inheritDoc}
*/
@Override
public String name() {
return ELEMENT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy