📄 propertycallback.java
字号:
package jodd.bean;
/**
* Iterates beans properties. May be use as bean modifier.
*/
public interface PropertyCallback {
/**
* Method that will be called-back for each beans property.
*
* @param o object instance
* @param name property name (without 'get'/'set')
*/
public void onProperty(Object o, String name);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -