Command to call CreateIdeHandler
Closed this issue · 0 comments
chqu1012 commented
public class CreateIdeHandler extends AbstractHandler{
@Override
public Object execute(ExecutionEvent event) throws ExecutionException {
CreateIdeFileDialog dialog = new CreateIdeFileDialog(new Shell());
dialog.open();
return null;
}
}