io.legaldocml.akn.attribute.Pos Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.PosType;
/**
* The attribute pos is used to identify the specific position of the reference (e.g., in source or destination)
* with respect to the element being identified with the relative eId.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Pos extends AknObject {
PosType getPos();
void setPos(PosType posType);
}