io.legaldocml.akn.attribute.Dictionary Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.attribute;
import io.legaldocml.akn.AknObject;
import io.legaldocml.akn.type.ReferenceRef;
/**
* This attribute specifies the eId of the element in the references section detailing the dictionary used for the
* keyword.
*
* ```xml
*
*
*
* ```
*
* @author Jacques Militello
*/
public interface Dictionary extends AknObject {
ReferenceRef getDictionary();
void setDictionary(ReferenceRef dictionary);
}