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

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

The newest version!
package io.legaldocml.akn.element;

import io.legaldocml.akn.DocumentType;
import io.legaldocml.io.XmlWriter;
import io.legaldocml.io.impl.Buffers;

import java.io.IOException;

import static io.legaldocml.akn.AknElements.ACT;

/**
 * Element act is used for describing the structure and content of an act.
 *
 * 
 *   
 *     
 *       
 *       
 *     
 *     
 *       
 *       
 *     
 *   
 * 
* * @author Jacques Militello */ public final class Act extends HierarchicalStructure implements DocumentType { /** * Memory address. */ private static final long ADDRESS_ACT = Buffers.address(ACT); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS_ACT, 3); super.write(writer); writer.writeEnd(ADDRESS_ACT, 3); } /** * {@inheritDoc} */ @Override public String name() { return ACT; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy