仪表盘
版本库
文件存储
活动
搜索
登录
任康
/
dmvisit
分支自
productDev/dmvisit
概况
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
报表数据
rk
2026-03-13
0e997dbbfeacaf72e91380d035265836b8df8a7d
[~renkang/dmvisit.git]
/
keyCabinet-android
/
lib_coremodel
/
src
/
main
/
java
/
com
/
doumee
/
lib_coremodel
/
binding
/
command
/
BindingFunction.java
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();
}