Package fr.soleil.salsa.client.comete.dao

Examples of fr.soleil.salsa.client.comete.dao.HistoricDAO


    @Override
    public AbstractDAO<StringMatrix> createStringImageDAO(AbstractKey abstractKey) {
        AbstractDAO<StringMatrix> dao = stringImageDAOCache.lookup(abstractKey);
        if (dao == null) {
            if (abstractKey instanceof HistoricKey) {
                dao = new HistoricDAO();
            }
            stringImageDAOCache.register(abstractKey, dao);
        }
        return dao;
    }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.client.comete.dao.HistoricDAO

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.