?? bakehandler.java
字號:
package org.xicabin.radcake.core.handlers;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.xicabin.radcake.core.bake.Baker;
/**
* Open the next matches curren file order by M -> C -> V, an IHandler base class.
*
* @author Darcy Young
* @see org.eclipse.core.commands.IHandler
* @see org.eclipse.core.commands.AbstractHandler
*/
public class BakeHandler extends AbstractHandler {
/**
* The constructor.
*/
public BakeHandler() {
}
/**
* the command has been executed, so extract extract the needed information
* from the application context.
*/
public Object execute(ExecutionEvent event) throws ExecutionException {
Baker baker = new Baker();
baker.run();
return null;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -