public void createMotionsBtn_clicked() {
try {
MotionCreatorType creatorType = (MotionCreatorType) createMotionsCmb.getSelectedItem();
if (creatorType != null) {
MotionCreator creator = creatorType.getMotionCreatorClass().newInstance();
creator.createMotions(project);
refreshMotionTable();
}
}
catch (Throwable ex) {
errorHandler.handleError(ex);