You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.fr.design.i18n; |
|
|
|
/** |
|
* 包装一些动作 |
|
* @author Hades |
|
* @date 2019/6/4 |
|
*/ |
|
public interface Action { |
|
|
|
Action EMPTY_ACTION = new Action() { |
|
@Override |
|
public void todo() { |
|
// do nothing |
|
} |
|
}; |
|
|
|
/** |
|
* 具体动作 |
|
*/ |
|
void todo(); |
|
}
|
|
|