All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.legaldocml.akn.attribute.BooleanValue Maven / Gradle / Ivy

package io.legaldocml.akn.attribute;

import io.legaldocml.akn.AknObject;

/**
 * The attribute value is used here to specify a boolean value for metadata elements. In elements using this attribute
 * definition the value attribute is required.
 *
 * 
 * 	<xsd:attributeGroup name="booleanvalue">
 * 		<xsd:attribute name="value" type="xsd:boolean" use="required"/>
 * 	<xsd:attributeGroup>
 * 
* * @author Jacques Militello */ public interface BooleanValue extends AknObject { /** * Attribute name. */ String ATTRIBUTE = Value.ATTRIBUTE; Boolean getValue(); void setValue(Boolean value); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy