return true;
}
public Command createCloneCommand(BasicElement child, MusicContainerForm parent) {
CompoundCommand compoundCmd = new CompoundCommand(ACTION_ID);
CreateCommand createCmd = new CreateCommand();
createCmd.setParent(parent);
try {
createCmd.setChild(child.getClass().newInstance());
createCmd.setMeiNode((MeiNode) child.getMeiNode().clone());
} catch (InstantiationException e) {
LogService.error(e.getMessage(), e);
} catch (IllegalAccessException e) {
LogService.error(e.getMessage(), e);
}