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

org.solovyev.common.BuilderWithData Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.solovyev.common;

import org.jetbrains.annotations.NotNull;

/**
 * User: serso
 * Date: 4/28/12
 * Time: 1:42 AM
 */
/**
* Builder with data - creates object of specified type T with some data needed on the time of creation
* NOTE: if no data is needed use {@link org.solovyev.common.Builder}
 * @see org.solovyev.common.Builder
* */
public interface BuilderWithData {

    @NotNull
    T build(D data);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy