io.legaldocml.akn.element.WrittenStatements Maven / Gradle / Ivy
package io.legaldocml.akn.element;
import io.legaldocml.akn.group.SpeechSection;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlWriter;
import java.io.IOException;
/**
* This element is a structural container for parts of a debates that contain written statements by participants.
*
*
* <xsd:element name="writtenStatements" type="althierarchy"/>
*
*
* @author Jacques Militello
*/
public final class WrittenStatements extends AltHierarchy implements SpeechSection {
/**
* XML tag element name.
*/
public static final String ELEMENT = "writtenStatements";
/**
* Memory address.
*/
private static final long ADDRESS = Buffers.address(ELEMENT);
/**
* {@inheritDoc}
*/
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS, 17);
super.write(writer);
writer.writeEnd(ADDRESS, 17);
}
/**
* {@inheritDoc}
*/
@Override
public String name() {
return ELEMENT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy