cdc.applic.dictionaries.edit.EnDictionaryOwner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-dictionaries-edit Show documentation
Show all versions of cdc-applic-dictionaries-edit Show documentation
Applicabilities Dictionaries Edition.
package cdc.applic.dictionaries.edit;
import java.util.List;
import cdc.util.lang.Introspection;
public interface EnDictionaryOwner extends EnElement {
public default List> getDictionaries() {
return getChildren(Introspection.uncheckedCast(EnDictionary.class));
}
}