io.legaldocml.akn.attribute.Notes Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.EidRef;
import io.legaldocml.akn.type.PlacementType;
/**
* These attributes are used by notes, both authorial and editorial. The marker is the string to be used as a marker of
* the note, the placement is the position where the note should be placed, and placementBase is the eId of the element
* respect to which the note should be placed near.
*
* ```xml
*
*
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Notes extends AknObject {
String getMarker();
void setMarker(String marker);
PlacementType getPlacement();
void setPlacement(PlacementType placement);
EidRef getPlacementBase();
void setPlacementBase(EidRef placementBase);
}