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

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


            if(oc != null) {
                logger.debug("adding section to campaign");
                campaign.addSection(oc);

                BasicObjectDao dao = (BasicObjectDao)ServiceUtils.getService(bundleContext, BasicObjectDao.class.getName());
                logger.trace("dao: " + dao);
                dao.saveObjectCategory(oc);
            }
        }
        catch(Exception e) {
            MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), Messages.getString("campaign.error.create_object_category.title"), Messages.getString("campaign.error.create_object_category.message") + "\n\n" + e.getLocalizedMessage());
        }
View Full Code Here

TOP

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

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.