io.legaldocml.akn.attribute.NormalizedAtt Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
/**
* The attribute normalized is used in the inline element quantity to provide a normalized value of the number, if
* appropriate.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface NormalizedAtt extends AknObject {
String getNormalized();
void setNormalized(String normalized);
}