io.legaldocml.akn.attribute.Duration Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.XmlDuration;
/**
* The duration attribute is used to specify a duration when either the start or the end event of a time interval is not
* known.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Duration extends AknObject {
XmlDuration getDuration();
void setDuration(XmlDuration duration);
}