Package fr.soleil.salsa.client.comete.key

Examples of fr.soleil.salsa.client.comete.key.ScanResult2DKey


        String factoryClassName = SalsaDAOFactory.class.getName();
        AbstractDAOFactory factory = DAOFactoryManager.registerFactory(factoryClassName);
        SalsaDAOFactory salsaDAOFactory = (SalsaDAOFactory) factory;

        AbstractKey scanResult2DKey = new ScanResult2DKey(factoryClassName);
        AbstractDAO<NumberMatrix> numberMatrix = salsaDAOFactory
        .createNumberImageDAO(scanResult2DKey);
        ScanResult2DDAO scanResult2DDAO = (ScanResult2DDAO) numberMatrix;

        scanResult2DDAO.setXAxisComponent(xAxisComponent);
View Full Code Here


     */
    public void refresh() {
        String factoryClassName = SalsaDAOFactory.class.getName();
        AbstractKey scanResult1DKey = new ScanResult1DKey(factoryClassName);
        view.setScanResult1DKey(scanResult1DKey);
        AbstractKey scanResult2DKey = new ScanResult2DKey(factoryClassName);
        view.setScanResult2DKey(scanResult2DKey);
        view.switchDAOFactory(factoryClassName);
    }
View Full Code Here

            String zAxisComponent, List<Axis> axisList) {
        String factoryClassName = SalsaDAOFactory.class.getName();
        AbstractDAOFactory factory = DAOFactoryManager.registerFactory(factoryClassName);
        SalsaDAOFactory salsaDAOFactory = (SalsaDAOFactory) factory;

        AbstractKey scanResult2DKey = new ScanResult2DKey(factoryClassName);
        AbstractDAO<NumberMatrix> numberMatrix = salsaDAOFactory
                .createNumberImageDAO(scanResult2DKey);
        ScanResult2DDAO scanResult2DDAO = (ScanResult2DDAO) numberMatrix;

        scanResult2DDAO.setXAxisComponent(xAxisComponent);
View Full Code Here

     */
    public void refresh() {
        String factoryClassName = SalsaDAOFactory.class.getName();
        AbstractKey scanResult1DKey = new ScanResult1DKey(factoryClassName);
        view.setScanResult1DKey(scanResult1DKey);
        AbstractKey scanResult2DKey = new ScanResult2DKey(factoryClassName);
        view.setScanResult2DKey(scanResult2DKey);
        view.switchDAOFactory(factoryClassName);
    }
View Full Code Here

            String zAxisComponent, List<Axis> axisList) {
        String factoryClassName = SalsaDAOFactory.class.getName();
        AbstractDAOFactory factory = DAOFactoryManager.registerFactory(factoryClassName);
        SalsaDAOFactory salsaDAOFactory = (SalsaDAOFactory) factory;

        AbstractKey scanResult2DKey = new ScanResult2DKey(factoryClassName);
        AbstractDAO<NumberMatrix> numberMatrix = salsaDAOFactory
                .createNumberImageDAO(scanResult2DKey);
        ScanResult2DDAO scanResult2DDAO = (ScanResult2DDAO) numberMatrix;

        scanResult2DDAO.setXAxisComponent(xAxisComponent);
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.client.comete.key.ScanResult2DKey

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.