io.legaldocml.akn.element.Body Maven / Gradle / Ivy
package io.legaldocml.akn.element;
import io.legaldocml.akn.visitor.AknVisitor;
import io.legaldocml.io.XmlWriter;
import io.legaldocml.io.impl.Buffers;
import java.io.IOException;
/**
* The element body is the container of the main hierarchy of a hierarchical document (e.g, an act or a bill).
*
*
* <xsd:element name="body" type="bodyType"/>
*
*
* @author Jacques Militello
*/
public final class Body extends BodyType {
/**
* XML tag element name.
*/
public static final String ELEMENT = "body";
/**
* Memory address.
*/
private static final long ADDRESS = Buffers.address(ELEMENT);
/**
* {@inheritDoc}
*/
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS, 4);
super.write(writer);
writer.writeEnd(ADDRESS, 4);
}
/**
* {@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