io.legaldocml.akn.attribute.Alt Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.EidRef;
/**
* The attribute alternativeTo is used to specify, when the element contains an alternative version of some content, the
* eId of the main element which this element is an alternative copy of.
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Alt extends AknObject {
EidRef getAlternativeTo();
void setAlternativeTo(EidRef alternativeTo);
}