io.legaldocml.akn.element.Signature Maven / Gradle / Ivy
package io.legaldocml.akn.element;
import io.legaldocml.akn.group.ANheaderInline;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlWriter;
import java.io.IOException;
/**
* The element signature is an inline element within conclusions to identify where the document defines one of the
* signatures.
*
*
* <xsd:element name="signature" type="inline"/>
*
*
* @author Jacques Militello
*/
public final class Signature extends InlineType implements ANheaderInline {
/**
* XML Tag element name.
*/
public static final String ELEMENT = "signature";
/**
* Memory address.
*/
private static final long ADDRESS = Buffers.address(ELEMENT);
/**
* {@inheritDoc}
*/
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS, 9);
super.write(writer);
writer.writeEnd(ADDRESS, 9);
}
/**
* {@inheritDoc}
*/
@Override
public String name() {
return ELEMENT;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy