cdc.applic.dictionaries.edit.EnDescriptionBuilding 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.Locale;
public interface EnDescriptionBuilding {
public B description(Locale locale,
String content);
public default B description(String locale,
String content) {
return description(locale == null ? null : Locale.forLanguageTag(locale),
content);
}
public default B description(String content) {
return description((Locale) null,
content);
}
}