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

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

package io.legaldocml.akn.element;

import io.legaldocml.akn.group.SpeechSection;
import io.legaldocml.akn.visitor.AknVisitor;
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 the administration of an oath.
 *
 * 
 * 	 <xsd:element name="administrationOfOath" type="althierarchy"/>
 * 
* * @author Jacques Militello */ public final class AdministrationOfOath extends AltHierarchy implements SpeechSection { /** * XML tag element name. */ public static final String ELEMENT = "administrationOfOath"; /** * Memory address. */ private static final long ADDRESS = Buffers.address(ELEMENT); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS, 20); super.write(writer); writer.writeEnd(ADDRESS, 20); } /** * {@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