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

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

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

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

import java.io.IOException;

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

/**
 * The element passiveModifications is a metadata container of the passive modifications affecting the document.
 *
 * 
 * 	 
 * 
* * @author Jacques Militello */ public final class PassiveModifications extends Amendments { /** * Memory address. */ private static final long ADDRESS_PASSIVE_MODIFICATIONS = Buffers.address(PASSIVE_MODIFICATIONS); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS_PASSIVE_MODIFICATIONS, 20); super.write(writer); writer.writeEnd(ADDRESS_PASSIVE_MODIFICATIONS, 20); } /** * {@inheritDoc} */ @Override public String name() { return PASSIVE_MODIFICATIONS; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy