testdata_builder.P.ftl Maven / Gradle / Ivy
package ${variables.rootPackage}.common.builders;
/**
* Helper interface for usage of test data builders.
* @param the parameter
*/
public interface P {
/**
* @param target the target to apply
*/
public void apply(T target);
}