?? helloworld.java
字號:
/*
* Created on 2004-10-16
*
* http://www.open-v.com 提供代碼的維護工作
*/
package com.openv.spring;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* IHelloWorld接口實現
*
* @author luoshifei
*/
public class HelloWorld implements IHelloWorld {
protected static final Log log = LogFactory.getLog(HelloWorld.class);
public String getContent(String helloworld) {
log.info(helloworld);
return helloworld;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -