📄 classforpointinfo.java
字号:
package test.pointcut;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
*
* @author worldheart
*
*/
@ForYou
public class ClassForPointInfo {
protected static final Log log = LogFactory.getLog(ClassForPointInfo.class);
public String getInfo1(){
return "getInfo1()";
}
public String getInfo1(String str){
return "getInfo1(String str)";
}
public String getInfo1(String str, int i) throws RuntimeException{
return "getInfo1(String str, int i) throws RuntimeException";
}
public void setInfo2(AnnotationParam ap){
log.info(ap);
}
@ForYou
public void setInfo3(){
;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -