cdc.applic.dictionaries.impl.NameSetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-dictionaries-impl Show documentation
Show all versions of cdc-applic-dictionaries-impl Show documentation
Applicabilities Dictionaries Implementation.
The newest version!
package cdc.applic.dictionaries.impl;
import cdc.applic.expressions.literals.SName;
/**
* Interface used to set Name.
*
* @author Damien Carbonne
*
* @param The reflexive type.
*/
public interface NameSetter> {
/**
* Sets the name.
*
* @param name The name.
* @return This object.
*/
public R name(SName name);
/**
* Sets the name.
*
* @param name The name.
* @return This object.
*/
public default R name(String name) {
return name(SName.of(name));
}
}