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

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


                    }
                    logger.debug("library: " + library);

                    // save library
                    if(library != null) {
                        LibraryDao libraryDao = (LibraryDao)ServiceUtils.getService(bundleContext, LibraryDao.class.getName());
                        logger.trace("libraryDao: " + libraryDao);

                        libraryDao.saveLibrary(library);
                    }
                }
                catch(Exception e) {
                    MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), Messages.getString("campaign.error.create_library.title"), Messages.getString("campaign.error.create_library.message") + "\n\n" + e.getLocalizedMessage());
                }
View Full Code Here

TOP

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

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.