cdc.applic.dictionaries.edit.EnNameBuilding 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;
/**
* Interface implemented by builders of items that have a name.
*
* @param The builder type.
*/
public interface EnNameBuilding {
/**
* Sets the name (possibly {@code null}).
*
* @param name The name.
* @return The builder.
*/
public B name(String name);
}