cdc.applic.dictionaries.edit.EnRegistryOwner 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;
public interface EnRegistryOwner extends EnDictionaryOwner {
public default List getRegistries() {
return getChildren(EnRegistry.class);
}
public EnRegistry.Builder registry();
}