📄 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 + -