Package nz.co.abrahams.asithappens.uiutil

Examples of nz.co.abrahams.asithappens.uiutil.SetDisplayDAO.create()


            logger.debug("Adding new graph options with ID " + graphOptionsID);
           
            displayDAO = DAOFactory.getSetDisplayDAO();
            for ( int set = 0 ; set < options.getSetDisplays().size() ; set++ ) {
                //setDisplayID = options.getSetDisplay(set).store();
                setDisplayID = displayDAO.create(options.getSetDisplay(set));
                statement = connection.prepareStatement(CREATE_OPTIONS_SETDISPLAYS);
                statement.setInt(1, graphOptionsID);
                statement.setInt(2, set);
                statement.setInt(3, setDisplayID);
                statement.executeUpdate();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.