Package nz.co.abrahams.asithappens.oid

Examples of nz.co.abrahams.asithappens.oid.CustomOIDCollector


            results.close();
            statement.close();
           
            // Nasty - fix it up please
            if ( collector.getDataType() == DataType.OID ) {
                CustomOIDCollector oidCollector;
                oidCollector = (CustomOIDCollector)collector;
                for (int i = 0; i < oidCollector.getOIDs().size() ; i++) {
                    data.addSet(oidCollector.getOIDs().elementAt(i).label);
                }
                data.setValueUnits(oidCollector.getValueUnits());   
            }
           
            return data;
        } catch (SQLException e) {
            logger.error("Problem loading session template with ID: " + sessionID);
View Full Code Here

TOP

Related Classes of nz.co.abrahams.asithappens.oid.CustomOIDCollector

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.