io.legaldocml.akn.attribute.PortionAtt Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.ReferenceRef;
/**
* the attribute includedIn specifies the eId of the element of the references section identifying the document that
* this portion is a portion of.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface PortionAtt extends AknObject {
ReferenceRef getIncludedIn();
void setIncludedIn(ReferenceRef referenceRef);
}