io.legaldocml.akn.element.Eol Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.element;
import io.legaldocml.akn.group.ANmarker;
import io.legaldocml.akn.visitor.AknVisitor;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.XmlWriter;
import java.io.IOException;
import static io.legaldocml.akn.AknElements.EOL;
/**
* The element eol (end of line) is a marker for where in the original text the line breaks. If the line breaks within a
* word, place the element BEFORE the word and place the number of characters before the break in the attribute breakAt.
* One can also specify, if relevant, the hyphen or other character used to signal the break of a word at the end of the
* line with the attribute breakWith.
*
*
*
*
*
* @author Jacques Militello
*/
public final class Eol extends EolType implements ANmarker {
/**
* Memory address.
*/
private static final long ADDRESS_EOL = Buffers.address(EOL);
/**
* {@inheritDoc}
*/
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS_EOL, 3);
super.write(writer);
writer.writeEnd(ADDRESS_EOL, 3);
}
/**
* {@inheritDoc}
*/
@Override
public String name() {
return EOL;
}
/**
* {@inheritDoc}
*/
@Override
public void accept(AknVisitor visitor) {
if (visitor.visitEnter(this)) {
super.accept(visitor);
visitor.visitLeave(this);
}
}
}