weimingfei
6 天以前 a3644d716dedc5a6d164d5eeef4ffcf6f988e509
1
2
3
4
5
6
7
8
9
10
package com.doumee.lib_coremodel.binding.command;
 
/**
 * Represents a function with zero arguments.
 *
 * @param <T> the result type
 */
public interface BindingFunction<T> {
    T call();
}