io.legaldocml.akn.element.Part Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.element;
import io.legaldocml.akn.group.ANhier;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlWriter;
import java.io.IOException;
import static io.legaldocml.akn.AknElements.PART;
/**
* This element is a hierarchical container called "part" either explicitly or due to the local tradition.
*
*
*
*
*
* @author Jacques Militello
*/
public final class Part extends Hierarchy implements ANhier {
/**
* Memory address.
*/
private static final long ADDRESS_PART = Buffers.address(PART);
/**
* {@inheritDoc}
*/
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS_PART, 4);
super.write(writer);
writer.writeEnd(ADDRESS_PART, 4);
}
/**
* {@inheritDoc}
*/
@Override
public String name() {
return PART;
}
}