All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.applic.dictionaries.edit.EnNameBuilding Maven / Gradle / Ivy

There is a newer version: 0.13.3
Show newest version
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);
}