io.legaldocml.akn.attribute.For Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.EidRef;
/**
* The attribute for is used in modification elements to specify the element this is a modification of.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface For extends AknObject {
EidRef getFor();
void setFor(EidRef for_);
}