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

io.legaldocml.akn.element.Extends 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.EXTENDS;

/**
 * The element extends is a metadata element specifying a reference to a source extended by the argument being
 * described.
 *
 * 
 * 	 
 * 
* * @author Jacques Militello */ public final class Extends extends JudicialArgumentType implements JudicialArgumentsElement { /** * Memory address. */ private static final long ADDRESS_EXTENDS = Buffers.address(EXTENDS); /** * {@inheritDoc} */ @Override public void write(XmlWriter writer) throws IOException { writer.writeStart(ADDRESS_EXTENDS, 7); super.write(writer); writer.writeEnd(ADDRESS_EXTENDS, 7); } /** * {@inheritDoc} */ @Override public String name() { return EXTENDS; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy