io.legaldocml.akn.attribute.Modifiers Maven / Gradle / Ivy
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.
*
*
* <xsd:attributeGroup name="modifiers">
* <xsd:attribute name="exclusion" type="xsd:boolean" />
* <xsd:attribute name="incomplete" type="xsd:boolean" />
* <xsd:attributeGroup>
*
*
* @author Jacques Militello
*/
public interface Modifiers extends AknObject {
String ATTRIBUTE_EXCLUSION = "exclusion";
String ATTRIBUTE_INCOMPLETE = "incomplete";
Boolean getExclusion();
void setExclusion(Boolean exclusion);
Boolean getIncomplete();
void setIncomplete(Boolean incomplete);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy