Package org.criticalfailure.torchlight.core.model.dao

Examples of org.criticalfailure.torchlight.core.model.dao.ParticipantDao


                    }
                    logger.debug("version: " + participant);

                    // save participant
                    if(participant != null) {
                        ParticipantDao participantDao = (ParticipantDao)ServiceUtils.getService(bundleContext, ParticipantDao.class.getName());
                        logger.trace("versionDao: " + participantDao);

                        participantDao.saveParticipant(participant);
                    }
                }
                catch(Exception e) {
                    MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), Messages.getString("campaign.error.create_participant.title"), Messages.getString("campaign.error.create_participant.message") + "\n\n" + e.getLocalizedMessage());
                }
View Full Code Here

TOP

Related Classes of org.criticalfailure.torchlight.core.model.dao.ParticipantDao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.