Package com.activequant.domainmodel

Examples of com.activequant.domainmodel.SecurityChainByDate


        appContext = new ClassPathXmlApplicationContext("fwspring.xml");
        IDaoFactory idf = (IDaoFactory) appContext.getBean("ibatisDao");
        SecurityChain sc = idf.securityChainDao().load(chainName);
        if(sc instanceof SecurityChainByDate)
        {
            SecurityChainByDate scbd = (SecurityChainByDate)sc;
            for(int i=0;i<scbd.getRollDates().length;i++)
            {
                System.out.println(scbd.getRollDates()[i]+"\t\t"+scbd.getValidInstrumentIDs()[i]);
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.activequant.domainmodel.SecurityChainByDate

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.