io.legaldocml.akn.attribute.Language Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
/**
* This attribute specifies the human language in which the document the element refers to is expressed. Values are
* taken from the RFC 4646.
*
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Language extends AknObject {
String getLanguage();
void setLanguage(String language);
}