io.legaldocml.akn.element.Remark Maven / Gradle / Ivy
package io.legaldocml.akn.element;
import com.google.common.collect.ImmutableMap;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.group.ANinline;
import io.legaldocml.akn.type.RemarkType;
import io.legaldocml.io.impl.Buffers;
import io.legaldocml.io.CharArray;
import io.legaldocml.io.XmlWriter;
import io.legaldocml.unsafe.UnsafeString;
import java.io.IOException;
import java.util.function.BiConsumer;
import static io.legaldocml.akn.element.Attributes.biConsumerEnum;
import static io.legaldocml.unsafe.UnsafeHelper.getFieldOffset;
/**
* the element remark is an inline element for the specification of editorial remarks (e.g., applauses, laughters, etc.)
* especially within debate records/
*
*
* <xsd:element name="remark">
* <xsd:complexType mixed="true">
* <xsd:complexContent>
* <xsd:extension base="inline">
* <xsd:attributeGroup ref="remarkType"/>
* <xsd:extension>
* <xsd:complexContent>
* <xsd:complexType>
* <xsd:element>
*
*
* @author Jacques Militello
*/
public final class Remark extends InlineType implements io.legaldocml.akn.attribute.RemarkType, ANinline {
/**
* XML tag element name.
*/
public static final String ELEMENT = "remark";
/**
* Memory address.
*/
private static final long ADDRESS = Buffers.address(ELEMENT);
private static final ImmutableMap> ATTRIBUTES;
static {
ATTRIBUTES = ImmutableMap.>builder()
.putAll(InlineType.ATTRIBUTES)
.put(io.legaldocml.akn.attribute.RemarkType.ATTRIBUTE, biConsumerEnum(getFieldOffset(Remark.class, "type"), RemarkType.class))
.build();
}
private RemarkType type;
/**
* {@inheritDoc}
*/
@Override
public RemarkType getType() {
return this.type;
}
/**
* {@inheritDoc}
*/
@Override
public void setType(RemarkType type) {
this.type = type;
}
/**
* {@inheritDoc}
*/
@Override
public void write(XmlWriter writer) throws IOException {
writer.writeStart(ADDRESS, 6);
if (this.type != null) {
writer.writeAttribute(Attributes.ADDRESS_TYPE, 4, UnsafeString.getChars(this.type.name()));
}
super.write(writer);
writer.writeEnd(ADDRESS, 6);
}
/**
* {@inheritDoc}
*/
@Override
public String name() {
return ELEMENT;
}
/**
* {@inheritDoc}
*/
@Override
public ImmutableMap> attributes() {
return ATTRIBUTES;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy