io.legaldocml.akn.element.DebateBody Maven / Gradle / Ivy
package io.legaldocml.akn.element;
import io.legaldocml.akn.visitor.AknVisitor;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlWriter;
import java.io.IOException;
/**
* The type debateBodyType specifies a content model of the main hierarchy of a debate.
*
*
* <xsd:element name="debateBody" type="debateBodyType"/>
*
*
* @author Jacques Militello
*/
public final class DebateBody extends DebateBodyType {
/**
* XML Tag element name.
*/
public static final String ELEMENT = "debateBody";
/**
* Memory address.
*/
private static final long ADDRESS = Buffers.address(ELEMENT);
/**
* {@inheritDoc}
*/
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS, 10);
super.write(writer);
writer.writeEnd(ADDRESS, 10);
}
/**
* {@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