summaryrefslogtreecommitdiff
path: root/src/main/java/org/mockito/internal/util/Supplier.java
blob: 1b62bbc762c94daa85b95d04cbe0d73aceaf1b71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2017 Mockito contributors
 * This program is made available under the terms of the MIT License.
 */
package org.mockito.internal.util;

/**
 * Abstract provider that can supply (provide/create) objects of given type.
 *
 * Delete when we move to Java 8 and use built-in type.
 *
 * @param <T> type of object to provide/create.
 */
public interface Supplier<T> {

    /**
     * Provides an instance.
     */
    T get();
}