io.legaldocml.akn.attribute.Modifiers Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
/**
* These attributes are used in the analysis to allow manifestation editors to specify whether the analysis is complete
* and/or ignored in the text.
*
* ```xml
*
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Modifiers extends AknObject {
Boolean getExclusion();
void setExclusion(Boolean exclusion);
Boolean getIncomplete();
void setIncomplete(Boolean incomplete);
}