io.legaldocml.akn.element.QuotedStructure Maven / Gradle / Ivy
The newest version!
package io.legaldocml.akn.element;
import static io.legaldocml.akn.AknElements.QUOTED_STRUCTURE;
/**
* The element quotedStructure is a popup element containing a full structure proposed as an insertion or a replacement.
* Use attribute for when quotedStructure is used in a mmod or rmod to point to the id of the corresponding refelement.
*
*
*
*
*
*
*
*
*
*
*
*
*
* @author Jacques Militello
*/
public interface QuotedStructure extends ModTypeItem {
/**
* {@inheritDoc}
*/
@Override
default String name() {
return QUOTED_STRUCTURE;
}
}