io.legaldocml.akn.attribute.Contains Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.VersionType;
/**
* The attribute contains is used in the root of document types to indicate whether the document is original or modified
* wrt the orignal version.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Contains extends AknObject {
VersionType getContains();
void setContains(VersionType versionType);
}